/* ============================================================================
   THE PRICE IS WRONG
   A phosphor trading terminal crossed with financial-newspaper typography:
   high-contrast editorial serif for names, IBM Plex Mono for anything numeric,
   on an ink-green ground with scanlines and grain.

   Palette is deliberately lopsided — the ground is 90% near-black, and colour
   is spent only on signal: phosphor green for money, amber for the score,
   alarm red for a wrong call.
   ========================================================================= */

:root {
  --bg: #06090a;
  --bg-2: #0a100e;
  --panel: #0d1412;
  --panel-2: #111a17;

  --phos: #35f0a0; /* live price / correct */
  --phos-dim: #1c8f60;
  --amber: #ffb627; /* score / attention */
  --alarm: #ff4e4e; /* wrong call */
  --cream: #ece7d9; /* paper tape */
  --dim: #6f827b;
  --dimmer: #46544f;

  --line: rgba(120, 255, 205, 0.14);
  --line-soft: rgba(120, 255, 205, 0.07);

  /* IBM Plex Mono for data (IBM's terminal lineage — the reference for this
     whole design); Bodoni Moda for identity (the didone of financial-press
     mastheads). */
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --serif: 'Bodoni Moda', 'Times New Roman', Georgia, serif;

  /* Cards shrink with the viewport so both stay visible on short screens. */
  --card-h: clamp(134px, 22vh, 176px);
  --gap: clamp(24px, 3.4vh, 30px);
  --radius: 3px;

  --ease: cubic-bezier(0.65, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Any element given `display` beats the UA's [hidden] rule, so state it once
   here rather than remembering it per component. */
[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: clamp(14px, 2.2vh, 26px);
  padding: clamp(16px, 2.6vw, 34px);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(53, 240, 160, 0.09), transparent 60%),
    radial-gradient(90% 60% at 50% 110%, rgba(255, 182, 39, 0.05), transparent 62%),
    var(--bg);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── CRT furniture ───────────────────────────────────────────────────────── */

.crt {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}

.crt__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.24) 0 1px,
    transparent 1px 3px
  );
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.crt__grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: drift 7s steps(6) infinite;
}

.crt__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(115% 90% at 50% 45%, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -1%); }
  75% { transform: translate(-1%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ── Masthead ────────────────────────────────────────────────────────────── */

.masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  animation: rise 700ms var(--ease) both;
}

.wordmark {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 66px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow: 0 0 26px rgba(53, 240, 160, 0.28);
}

.tagline {
  margin: 9px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--phos);
}

.tagline__slash {
  color: var(--dimmer);
}

.tagline__rule {
  width: clamp(20px, 6vw, 58px);
  height: 1px;
  background: linear-gradient(90deg, var(--phos-dim), transparent);
}

.tagline__sub {
  color: var(--dim);
  letter-spacing: 0.2em;
}

.readouts {
  display: flex;
  gap: 10px;
}

.readout {
  min-width: 104px;
  padding: 9px 16px 11px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.readout__label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
}

.readout__value {
  display: block;
  margin-top: 2px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--phos);
  text-shadow: 0 0 20px rgba(53, 240, 160, 0.45);
}

.readout--best .readout__value {
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255, 182, 39, 0.4);
}

.readout__value.is-bumped {
  animation: bump 420ms var(--ease);
}

@keyframes bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.28); filter: brightness(1.5); }
  100% { transform: scale(1); }
}

/* ── Ticker tape ─────────────────────────────────────────────────────────── */

.tape {
  position: relative;
  overflow: hidden;
  padding: 7px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(53, 240, 160, 0.045), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  animation: rise 700ms 60ms var(--ease) both;
}

.tape__track {
  display: flex;
  width: max-content;
  gap: 30px;
  white-space: nowrap;
  /* Duration is set from JS in proportion to the pool size, so the tape scrolls
     at a constant speed however many tickers are in play. */
  animation: roll var(--tape-duration, 68s) linear infinite;
}

.tape:hover .tape__track {
  animation-play-state: paused;
}

.tape__item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.tape__sym {
  color: var(--cream);
  font-weight: 500;
}

.tape__px {
  color: var(--phos-dim);
  font-variant-numeric: tabular-nums;
}

.tape__item--live .tape__px {
  color: var(--phos);
}

@keyframes roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Arena ───────────────────────────────────────────────────────────────── */

.arena {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 0;
}

/* ── The stated question ─────────────────────────────────────────────────── */

.prompt {
  margin: 0;
  min-height: 26px;
  font-family: var(--serif);
  font-size: clamp(17px, 2.4vw, 23px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-align: center;
  text-wrap: balance;
}

.prompt b {
  font-weight: 400;
  font-style: italic;
  color: var(--phos);
}

.rules {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dimmer);
  text-align: center;
}

.rules b {
  color: var(--dim);
  font-weight: 400;
}

.banner {
  width: min(880px, 100%);
  padding: 9px 14px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(255, 182, 39, 0.08);
  border: 1px solid rgba(255, 182, 39, 0.28);
  border-radius: var(--radius);
}

.deck-window {
  position: relative;
  width: min(880px, 100%);
  height: calc(var(--card-h) * 2 + var(--gap));
  overflow: hidden;
  animation: rise 750ms 120ms var(--ease) both;
}

/* The slide is driven from JS via the Web Animations API — see advance(). */
.deck {
  display: grid;
  grid-auto-rows: var(--card-h);
  gap: var(--gap);
  will-change: transform;
}

/* ── Cards ───────────────────────────────────────────────────────────────── */

.card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(18px, 3vw, 30px);
  background:
    linear-gradient(180deg, var(--panel-2), var(--panel)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 22px 44px -30px rgba(0, 0, 0, 0.95);
}

/* left edge status rule */
.card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--phos-dim);
  opacity: 0.7;
  transition: background 300ms, box-shadow 300ms;
}

.card--hidden::after {
  background: var(--dimmer);
}

.card--correct::after {
  background: var(--phos);
  box-shadow: 0 0 22px var(--phos);
}

.card--wrong::after {
  background: var(--alarm);
  box-shadow: 0 0 22px var(--alarm);
}

.card--correct {
  border-color: rgba(53, 240, 160, 0.45);
  animation: flash-good 700ms var(--ease);
}

.card--wrong {
  border-color: rgba(255, 78, 78, 0.5);
  animation: flash-bad 700ms var(--ease);
}

@keyframes flash-good {
  0% { background-color: rgba(53, 240, 160, 0.2); }
  100% { background-color: transparent; }
}

@keyframes flash-bad {
  0% { background-color: rgba(255, 78, 78, 0.22); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-3px); }
  60% { transform: translateX(2px); }
  100% { background-color: transparent; transform: translateX(0); }
}

.card__id {
  position: relative;
  min-width: 0;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.card__sector {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
}

.card__flag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--dimmer);
}

.card__flag--live {
  color: var(--phos);
  border-color: rgba(53, 240, 160, 0.4);
}

.card__symbol {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5.4vw, 52px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--cream);
  white-space: nowrap;
}

.card__name {
  margin: 5px 0 0;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__px {
  position: relative;
  text-align: right;
  min-width: 0;
}

/* Sentence case, to match the "One share costs … than X" ask on the hidden
   card. The two labels sit directly above one another and read as a pair. */
.card__px-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--dim);
  margin-bottom: 3px;
}

.card__price {
  display: block;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--phos);
  text-shadow: 0 0 26px rgba(53, 240, 160, 0.35);
  white-space: nowrap;
}

.card__price--wrong {
  color: var(--alarm);
  text-shadow: 0 0 26px rgba(255, 78, 78, 0.4);
}

.card__delta {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 14px;
  color: var(--dim);
}

.card__delta--up { color: var(--phos); }
.card__delta--down { color: var(--alarm); }
.card__delta--flat { color: var(--amber); }

/* ── The ask: buttons live inside the hidden card, in the slot the price
      will land in, wrapped in a sentence that names the opponent. ────────── */

.card__ask {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--dim);
}

.ask__lede,
.ask__trail {
  white-space: nowrap;
}

.ask__trail b {
  color: var(--cream);
  font-weight: 500;
}

.choices {
  display: flex;
  gap: 8px;
}

.choice {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px clamp(14px, 2.2vw, 22px);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms var(--ease), filter 160ms, box-shadow 200ms;
}

.choice--up {
  background: rgba(53, 240, 160, 0.15);
  border: 1px solid var(--phos);
  color: var(--phos);
}

.choice--down {
  background: rgba(255, 78, 78, 0.15);
  border: 1px solid var(--alarm);
  color: var(--alarm);
}

.choice:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.14);
}

.choice--up:hover:not(:disabled) {
  box-shadow: 0 8px 24px -12px var(--phos);
}

.choice--down:hover:not(:disabled) {
  box-shadow: 0 8px 24px -12px var(--alarm);
}

.choice:active:not(:disabled) {
  transform: translateY(0) scale(0.97);
}

.choice:disabled {
  opacity: 0.4;
  cursor: default;
}

.choice:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.choice__key {
  font-size: 10px;
  line-height: 1;
  padding: 2px 5px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.6;
}

/* ── "vs" chip straddling the gap between the two cards ──────────────────── */

.seam {
  position: absolute;
  top: var(--card-h);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.seam__chip {
  display: grid;
  place-items: center;
  min-width: 34px;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--dim);
  box-shadow: 0 0 0 5px var(--bg);
}

/* ── Verdict line ────────────────────────────────────────────────────────── */

.verdict {
  margin: 0;
  min-height: 17px;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
}

.verdict--good { color: var(--phos); }
.verdict--bad { color: var(--alarm); }
.verdict--tie { color: var(--amber); }

/* ── Ledger (footer) ─────────────────────────────────────────────────────── */

.ledger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(18px, 4vw, 44px);
  padding-top: 13px;
  border-top: 1px solid var(--line);
  animation: rise 700ms 200ms var(--ease) both;
}

.ledger__cell {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ledger__cell--actions {
  margin-left: auto;
  align-items: center;
  gap: 14px;
}

.ledger__label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dimmer);
}

.ledger__value {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.ledger__note {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
}

.ghost-btn {
  appearance: none;
  padding: 7px 15px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms, border-color 180ms, background 180ms;
}

.ghost-btn:hover:not(:disabled) {
  color: var(--phos);
  border-color: rgba(53, 240, 160, 0.4);
  background: rgba(53, 240, 160, 0.06);
}

.ghost-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.ghost-btn.is-busy::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 900ms steps(2) infinite;
  vertical-align: middle;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.15; }
  100% { opacity: 1; }
}

/* ── Game over curtain ───────────────────────────────────────────────────── */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 7, 7, 0.86);
  backdrop-filter: blur(7px);
  animation: fade 320ms var(--ease) both;
}

.curtain--intro .curtain__panel {
  border-top-color: var(--phos);
  text-align: left;
}

.curtain--intro .curtain__kicker {
  color: var(--phos);
}

.curtain--intro .curtain__title {
  text-align: left;
}

.intro__steps {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--dim);
}

.intro__steps li::marker {
  color: var(--phos-dim);
  font-weight: 600;
}

.intro__steps b {
  color: var(--cream);
  font-weight: 500;
}

.intro__note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--dimmer);
}

.curtain__panel {
  width: min(430px, 100%);
  padding: 34px clamp(24px, 5vw, 40px) 28px;
  text-align: center;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-top: 2px solid var(--alarm);
  border-radius: var(--radius);
  box-shadow: 0 50px 90px -40px #000;
  animation: rise 460ms var(--ease) both;
}

.curtain__kicker {
  margin: 0;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--alarm);
}

.curtain__title {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--cream);
}

.curtain__line {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--dim);
}

.curtain__line b {
  color: var(--cream);
  font-weight: 500;
}

.curtain__scores {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 0;
}

.curtain__score {
  flex: 1;
  padding: 13px 8px 15px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.curtain__score-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.curtain__score-value {
  display: block;
  margin-top: 4px;
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--phos);
}

.curtain__score:last-child .curtain__score-value {
  color: var(--amber);
}

.curtain__record {
  margin: 15px 0 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  animation: blink 1.4s steps(2) infinite;
}

.play-again {
  appearance: none;
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  background: var(--phos);
  border: 0;
  border-radius: var(--radius);
  color: #04150d;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 200ms, filter 200ms;
}

.play-again:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 34px -6px var(--phos);
}

.play-again:active {
  transform: scale(0.985);
}

.curtain__hint {
  margin: 11px 0 0;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dimmer);
}

/* ── Entrances ───────────────────────────────────────────────────────────── */

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

/* On a phone the whole round — both cards and the buttons — has to fit above
   the fold. Nothing here is decorative trimming; it is all budget for that. */
@media (max-width: 720px) {
  :root {
    --card-h: clamp(148px, 21vh, 182px);
    --gap: 30px;
  }

  .wordmark {
    font-size: clamp(27px, 8.4vw, 40px);
  }

  .tagline {
    margin-top: 6px;
    font-size: 9.5px;
    letter-spacing: 0.2em;
  }

  /* These wrapped into a third line and collided with the sub-label. */
  .tagline__rule,
  .tagline__sub {
    display: none;
  }

  .masthead {
    padding-bottom: 10px;
  }

  .readouts {
    gap: 8px;
  }

  .readout {
    min-width: 74px;
    padding: 6px 12px 8px;
  }

  .readout__value {
    font-size: 26px;
  }

  .card {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    text-align: left;
  }

  .card__px,
  .card__ask {
    text-align: left;
    justify-content: flex-start;
  }

  .card__name {
    max-width: 100%;
  }

  .prompt {
    font-size: 16px;
  }

  .choice {
    flex: 1;
    justify-content: center;
    padding: 13px 12px;
    font-size: 12.5px;
  }

  .choices {
    flex: 1;
    min-width: 200px;
  }

  .ledger__cell--actions {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }

  /* 29px is not a thumb target; 44px is the accepted minimum. */
  .ghost-btn {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
  }
}

@media (max-width: 380px) {
  .choice__key {
    display: none; /* no hardware keyboard to hint at */
  }
}

@media (max-width: 420px) {
  .card__symbol {
    font-size: 30px;
  }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .tape__track {
    animation: none;
  }
}
