:root {
  --bg-top: #09182f;
  --bg-bottom: #f4d6a7;
  --panel: rgba(255, 248, 232, 0.78);
  --panel-strong: rgba(255, 251, 239, 0.94);
  --panel-deep: rgba(9, 24, 47, 0.92);
  --ink: #241f2f;
  --muted: #6f647a;
  --accent: #f05d6a;
  --accent-deep: #c43948;
  --gold: #ffd166;
  --mint: #79e2c8;
  --sky: #7cb7ff;
  --shadow: 0 22px 56px rgba(12, 28, 56, 0.2);
  --border: rgba(36, 31, 47, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  background:
    linear-gradient(180deg, rgba(9, 24, 47, 0.82) 0, rgba(9, 24, 47, 0.18) 34%, transparent 54%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 280px;
  height: 280px;
  border-radius: 0;
  filter: none;
  opacity: 0.28;
  pointer-events: none;
}

body::before {
  top: 60px;
  right: -60px;
  background: repeating-linear-gradient(45deg, rgba(124, 183, 255, 0.32) 0 8px, transparent 8px 16px);
}

body::after {
  left: -50px;
  bottom: 120px;
  background: repeating-linear-gradient(135deg, rgba(121, 226, 200, 0.22) 0 8px, transparent 8px 16px);
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.82), transparent 24%),
    linear-gradient(180deg, rgba(248, 239, 230, 0.96), rgba(232, 212, 192, 0.98));
}

.entry-gate.hidden {
  display: none;
}

.entry-gate-panel {
  width: min(100%, 560px);
  padding: 40px 32px;
  text-align: center;
  border-radius: 32px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(96, 61, 43, 0.1);
  box-shadow: 0 24px 60px rgba(88, 47, 31, 0.16);
}

.entry-copy {
  margin: 18px 0 28px;
  color: var(--muted);
  line-height: 1.9;
}

.global-music-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(14px);
  background: rgba(9, 24, 47, 0.72);
  border-bottom: 1px solid rgba(255, 209, 102, 0.18);
}

.global-music-label {
  color: rgba(255, 248, 232, 0.76);
  font-size: 13px;
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px 40px;
}

body.is-playing .page-shell {
  padding-top: 24px;
}

.hero {
  margin-bottom: 18px;
}

body.is-playing .hero {
  display: none;
}

.eyebrow,
.panel-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "STKaiti", "Kaiti SC", "Songti SC", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 248, 232, 0.84);
}

.hero-scene {
  position: relative;
  min-height: min(680px, calc(100vh - 118px));
  overflow: hidden;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 8px;
  background: #09182f;
  box-shadow: 0 26px 70px rgba(3, 10, 24, 0.28);
}

.hero-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 24, 47, 0.82) 0, rgba(9, 24, 47, 0.56) 38%, rgba(9, 24, 47, 0.1) 72%),
    linear-gradient(180deg, rgba(9, 24, 47, 0.08), rgba(9, 24, 47, 0.36));
}

.hero-content {
  position: relative;
  display: grid;
  align-content: end;
  max-width: 660px;
  min-height: min(680px, calc(100vh - 118px));
  padding: clamp(24px, 5vw, 56px);
  color: #fff8e8;
}

.hero-content .eyebrow {
  color: var(--mint);
}

.hero-content h1 {
  text-shadow: 4px 4px 0 rgba(9, 24, 47, 0.5);
}

.hero-actions,
.ending-actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ending-actions {
  justify-content: center;
}

button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

button:hover {
  transform: translateY(-2px);
}

.primary-button,
.draw-button,
.choice-button {
  color: #fff8e8;
  background: linear-gradient(135deg, #ff6f7e, #c43948);
  box-shadow: 0 16px 30px rgba(196, 57, 72, 0.26);
}

.primary-button,
.ghost-button,
.draw-button {
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.ghost-button {
  color: var(--ink);
  background: rgba(255, 248, 232, 0.84);
  border: 1px solid rgba(36, 31, 47, 0.14);
}

.global-music-bar .ghost-button,
.hero-content .ghost-button {
  color: #fff8e8;
  background: rgba(255, 248, 232, 0.12);
  border-color: rgba(255, 248, 232, 0.24);
}

.daily-console {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 26px;
}

body.is-playing .daily-console {
  display: none;
}

.daily-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(233, 245, 255, 0.88)),
    #fff8e8;
  box-shadow: var(--shadow);
}

.daily-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(36, 31, 47, 0.12);
  pointer-events: none;
}

.daily-card h2 {
  font-size: 30px;
}

.daily-result {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
}

.daily-result.is-drawing,
.quote-result.is-drawing,
.tarot-reading span.is-drawing {
  animation: result-pop 520ms cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes result-pop {
  0% {
    transform: translateY(8px);
    opacity: 0.28;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.daily-button {
  position: relative;
  justify-self: start;
}

.fortune-radar {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.fortune-radar svg {
  width: min(100%, 220px);
  color: var(--accent);
  overflow: visible;
}

.fortune-radar circle {
  fill: var(--gold);
}

.radar-grid {
  fill: rgba(255, 248, 232, 0.44);
  stroke: rgba(36, 31, 47, 0.18);
  stroke-width: 1;
}

.radar-grid-mid {
  fill: rgba(121, 226, 200, 0.1);
}

.radar-shape {
  fill: rgba(240, 93, 106, 0.42);
  stroke: var(--accent-deep);
  stroke-width: 3;
  transition: points 760ms cubic-bezier(0.2, 1, 0.3, 1);
}

.fortune-axis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.fortune-bars {
  display: grid;
  gap: 8px;
}

.fortune-bar {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.fortune-bar-track {
  height: 8px;
  overflow: hidden;
  background: rgba(36, 31, 47, 0.12);
  border-radius: 999px;
}

.fortune-bar-fill {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--accent));
  transform-origin: left;
  animation: bar-grow 720ms cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes bar-grow {
  from {
    transform: scaleX(0);
  }
}

.mini-tarot {
  position: relative;
  display: grid;
  place-items: center;
  gap: 4px;
  width: 150px;
  aspect-ratio: 5 / 7;
  margin: 0 auto;
  padding: 16px 12px;
  color: #fff8e8;
  background:
    linear-gradient(180deg, rgba(255, 111, 126, 0.9), rgba(9, 24, 47, 0.94)),
    #09182f;
  border: 3px solid #ffd166;
  box-shadow: inset 0 0 0 2px rgba(9, 24, 47, 0.8), 8px 8px 0 rgba(9, 24, 47, 0.16);
}

.mini-tarot span {
  font-size: 42px;
  line-height: 1;
}

.mini-tarot strong {
  font-size: 22px;
}

.mini-tarot small {
  color: rgba(255, 248, 232, 0.72);
}

.tarot-reading {
  position: relative;
  display: grid;
  gap: 10px;
}

.tarot-reading p,
.quote-result p {
  margin: 0;
}

.tarot-reading p {
  display: grid;
  gap: 4px;
  line-height: 1.7;
}

.tarot-reading strong {
  color: var(--accent-deep);
  font-size: 13px;
}

.tarot-reading span {
  color: var(--ink);
  font-size: 14px;
}

.quote-result {
  position: relative;
  display: grid;
  gap: 10px;
}

.quote-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
}

.quote-translation {
  color: var(--muted);
  line-height: 1.7;
}

.quote-source {
  color: var(--accent-deep);
  font-size: 13px;
}

.memory-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.experience-shell {
  position: relative;
}

.main-panel {
  max-width: 920px;
  margin: 0 auto;
}

.panel-frame {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(213, 168, 94, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.floating-actions {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.panel-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.panel-topbar.centered {
  justify-content: center;
  text-align: center;
}

.progress-copy,
.ending-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
}

.status-pill {
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  font-size: 14px;
}

.card-stage {
  display: grid;
  justify-items: center;
  gap: 20px;
  margin-top: 12px;
  width: 100%;
}

.question-stage {
  display: grid;
  gap: 22px;
  justify-items: center;
  width: 100%;
}

.draw-button {
  min-width: 180px;
}

.fate-card {
  width: min(100%, 760px);
}

.fate-card-inner {
  width: 100%;
}

.fate-card-face {
  position: relative;
  padding: 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.fate-card-back {
  display: none;
}

.tarot-ornament {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(213, 168, 94, 0.38);
  border-radius: 4px;
}

.tarot-ornament::before,
.tarot-ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translateX(-50%);
  border: 1px solid rgba(213, 168, 94, 0.26);
  border-radius: 4px;
}

.tarot-ornament::before {
  top: 18px;
}

.tarot-ornament::after {
  bottom: 18px;
}

.fate-card-back span {
  font-family: "STKaiti", "Kaiti SC", "Songti SC", serif;
  letter-spacing: 0.22em;
  font-size: 22px;
  position: relative;
}

.fate-card-back small {
  position: relative;
  margin-top: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.fate-card-front {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(234, 246, 255, 0.92));
  border: 1px solid rgba(96, 61, 43, 0.12);
  min-height: 340px;
  align-items: center;
}

.fate-card-front h3 {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  word-break: keep-all;
}

.card-emblem {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 6px auto 2px;
  border-radius: 8px;
  border: 1px solid rgba(213, 168, 94, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.95), rgba(233, 245, 255, 0.88));
  color: var(--accent-deep);
  font-size: 34px;
  line-height: 1;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.34);
}

.tarot-emblem {
  width: 96px;
  height: 96px;
  margin-bottom: 10px;
  font-size: 40px;
}

.fate-card-front p:last-child {
  margin: 16px 0 0;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  white-space: normal;
  word-break: break-word;
}

.choices {
  display: grid;
  gap: 12px;
  margin-top: 0;
  width: min(100%, 760px);
}

.choice-button {
  width: 100%;
  padding: 18px 20px;
  border-radius: 8px;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.memory-fragment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(100%, 760px);
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(96, 61, 43, 0.08);
}

.memory-visual {
  position: relative;
  min-height: 280px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 230, 220, 0.88), rgba(229, 196, 173, 0.82));
}

.memory-placeholder,
.memory-visual img {
  width: 100%;
  height: 100%;
}

.memory-placeholder {
  display: grid;
  place-items: center;
  color: rgba(64, 38, 28, 0.55);
  font-family: "STKaiti", "Kaiti SC", "Songti SC", serif;
  letter-spacing: 0.2em;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 242, 0.2), rgba(130, 88, 68, 0.16));
}

.memory-visual img {
  object-fit: cover;
}

.memory-copy-block {
  align-self: center;
  min-width: 0;
  width: 100%;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.memory-copy-block h3 {
  font-size: 30px;
  line-height: 1.2;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

.memory-copy-block p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.9;
  word-break: break-word;
  writing-mode: horizontal-tb;
  white-space: normal;
}

.tarot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  max-height: 68vh;
  overflow: auto;
  padding-right: 4px;
}

.tarot-card {
  position: relative;
  min-height: 280px;
  padding: 18px 14px;
  border-radius: 8px;
  color: #fff8e8;
  background:
    linear-gradient(180deg, rgba(9, 24, 47, 0.88), rgba(36, 31, 47, 0.94)),
    #09182f;
  border: 3px solid rgba(255, 209, 102, 0.86);
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.tarot-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 248, 232, 0.24);
  border-radius: 4px;
}

.tarot-card.locked {
  display: none;
}

.tarot-card h3 {
  position: relative;
  font-size: 22px;
}

.tarot-card h3::before {
  content: "✦";
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 209, 102, 0.72);
  color: var(--gold);
  font-size: 26px;
  background: rgba(255, 248, 232, 0.1);
}

.tarot-card p {
  position: relative;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.tarot-card .panel-label {
  position: relative;
  margin-bottom: 6px;
  font-size: 10px;
}

.tarot-reveal {
  width: min(100%, 760px);
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 252, 248, 0.86);
  border: 1px solid rgba(96, 61, 43, 0.1);
  box-shadow: 0 22px 44px rgba(88, 47, 31, 0.12);
}

.reveal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.reveal-card {
  perspective: 1200px;
  width: 220px;
  aspect-ratio: 5 / 7;
  margin: 0 auto;
}

.revealed-tarot-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-card.is-flipped .revealed-tarot-inner {
  transform: rotateY(180deg);
}

.revealed-tarot-face {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  backface-visibility: hidden;
  padding: 22px;
}

.revealed-tarot-back {
  background:
    linear-gradient(160deg, #ff6f7e 0, #09182f 68%),
    #09182f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 240, 226, 0.84);
}

.revealed-tarot-back span {
  position: relative;
  font-family: "STKaiti", "Kaiti SC", "Songti SC", serif;
  letter-spacing: 0.18em;
  font-size: 20px;
}

.revealed-tarot-front {
  transform: rotateY(180deg);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(233, 245, 255, 0.92));
  border: 1px solid rgba(96, 61, 43, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.revealed-tarot-front h3 {
  font-size: 30px;
  line-height: 1.15;
}

.tarot-card-en,
.tarot-draw-description {
  color: var(--muted);
  line-height: 1.85;
}

.tarot-card-en {
  margin-top: 8px;
}

.tarot-draw-description {
  margin: 0 0 24px;
}

.reveal-copy {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.reveal-copy .primary-button {
  min-width: 200px;
}

.ending-quote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid rgba(191, 109, 82, 0.42);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 8px;
}

.ending-quote p {
  margin: 0;
  line-height: 1.8;
  color: var(--ink);
}

.ending-quote footer {
  margin-top: 10px;
  color: var(--muted);
}

.ending-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.ending-stat {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(96, 61, 43, 0.08);
}

.ending-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.ending-stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.memory-panel {
  margin-top: 24px;
  background: var(--panel-strong);
}

.memory-copy {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 21, 18, 0.46);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px));
  margin: 36px auto;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.94);
  border: 1px solid rgba(96, 61, 43, 0.12);
  box-shadow: 0 24px 60px rgba(42, 24, 19, 0.28);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .hero-scene,
  .hero-content {
    min-height: 620px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 24, 47, 0.18) 0, rgba(9, 24, 47, 0.56) 44%, rgba(9, 24, 47, 0.86) 100%);
  }

  .hero-content {
    align-content: end;
  }

  .daily-console {
    grid-template-columns: 1fr;
  }

  .memory-visual {
    min-height: 240px;
  }

  .memory-copy-block h3 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 28px 16px 24px;
  }

  .panel-frame {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-scene,
  .hero-content {
    min-height: 560px;
  }

  .hero-scene img {
    object-position: 58% center;
  }

  .hero-content {
    padding: 22px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .daily-card {
    min-height: 220px;
    padding: 18px;
  }

  .daily-card h2 {
    font-size: 26px;
  }

  .panel-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .memory-visual {
    min-height: 210px;
  }

  .reveal-card {
    width: 190px;
  }

  .fate-card-front {
    min-height: 300px;
    padding: 22px 18px;
  }

  .fate-card-front h3 {
    font-size: 34px;
  }

  .tarot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ending-stats {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    flex-direction: column;
    align-items: center;
  }

  .modal-panel {
    margin: 16px auto;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }
}
