/* ═══════════════════════════════════════════════════════════════
   PLAYER 1001 — styles (MrBeast theme)
   Bright beast-blue stage · white sticker cards with thick ink
   outlines and hard shadows · thumbnail-outlined display type ·
   gold means money, red means live. Zero webfonts.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blue: #00A2FF;        /* the beast blue */
  --blue-deep: #0069E8;
  --ink: #0A2757;         /* navy outlines + text on white */
  --ink-soft: #3D5583;
  --navy: #071B3D;        /* broadcast panels */
  --navy-2: #0B2450;
  --white: #FFFFFF;
  --paper: #F4F9FF;
  --gold: #FFC61A;
  --gold-deep: #E8A400;
  --red: #FF3D33;
  --red-deep: #D21F16;
  --green: #22C55E;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 7px 0 rgba(7, 27, 61, .85);
  --shadow-sm: 0 4px 0 rgba(7, 27, 61, .85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* explicit display values must never beat the hidden attribute */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--blue);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* sunny glow up top, deeper blue at the bottom of the tent */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(255,255,255,.28), transparent 60%),
    radial-gradient(1300px 700px at 50% 115%, rgba(4,20,54,.55), transparent 62%);
}

::selection { background: var(--gold); color: var(--ink); }

a { color: var(--white); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* visually hidden, still read by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

kbd {
  font-family: var(--mono);
  font-size: .82em;
  border: 2px solid var(--ink);
  border-bottom-width: 4px;
  border-radius: 6px;
  padding: 1px 7px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

/* ─────────────────── thumbnail type + sticker atoms ─────────────────── */

/* MrBeast-thumbnail text: white glyphs, thick ink stroke, hard drop */
.thumb {
  color: var(--white);
  text-shadow:
    -3px -3px 0 var(--ink), 3px -3px 0 var(--ink),
    -3px 3px 0 var(--ink), 3px 3px 0 var(--ink),
    -4px 0 0 var(--ink), 4px 0 0 var(--ink),
    0 -4px 0 var(--ink), 0 4px 0 var(--ink),
    0 9px 0 var(--ink),
    0 14px 24px rgba(7, 27, 61, .45);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transform: rotate(-1deg);
}

.chip-live { background: var(--red); color: var(--white); border-color: var(--ink); transform: rotate(1deg); }

.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--white);
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  50% { box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}

.kicker {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.headline {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.02;
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}

.section-sub {
  max-width: 640px;
  margin: 16px auto 0;
  color: #EAF5FF;
  font-size: 17px;
  font-weight: 500;
}

.section-sub em { color: var(--gold); font-style: normal; font-weight: 800; }

/* chunky game-show buttons */
.btn-primary,
.btn-ghost {
  display: inline-block;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 13px 24px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: var(--shadow);
}

.btn-primary { color: var(--ink); background: var(--gold); }
.btn-ghost { color: var(--ink); background: var(--white); }

.btn-primary:hover, .btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 9px 0 rgba(7,27,61,.85); }
.btn-primary:active, .btn-ghost:active { transform: translateY(5px); box-shadow: 0 2px 0 rgba(7,27,61,.85); }

.btn-ghost[aria-pressed="true"] { background: var(--ink); color: var(--gold); }

.btn-primary:disabled, .btn-ghost:disabled { opacity: .6; cursor: default; }

/* white sticker card */
.card {
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* odometer (per-digit vertical roll) */
.odometer { display: inline-flex; font-family: var(--mono); font-variant-numeric: tabular-nums; line-height: 1; }
.odo-cell { display: inline-block; height: 1em; overflow: hidden; }
.odo-strip { display: flex; flex-direction: column; transition: transform .12s linear; will-change: transform; }
.odo-strip span { height: 1em; line-height: 1; }
.odo-sep { opacity: .75; }

/* ───────────────────────── hero ───────────────────────── */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh; /* iOS toolbars would swallow the scroll cue under plain 100vh */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 24px 118px;
}

.hero-top {
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wordmark {
  margin-top: clamp(22px, 5vh, 54px);
  font-size: clamp(3rem, 10vw, 6.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .95;
  transform: rotate(-2deg);
  text-align: center;
}

.wordmark-num {
  color: var(--gold);
  text-shadow:
    -3px -3px 0 var(--ink), 3px -3px 0 var(--ink),
    -3px 3px 0 var(--ink), 3px 3px 0 var(--ink),
    -4px 0 0 var(--ink), 4px 0 0 var(--ink),
    0 -4px 0 var(--ink), 0 4px 0 var(--ink),
    0 9px 0 var(--ink),
    0 14px 24px rgba(7, 27, 61, .45);
}

.tagline {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 0 rgba(7,27,61,.5);
}

.tagline strong { color: var(--gold); text-shadow: 0 2px 0 rgba(7,27,61,.6); }

.welcome-back {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  background: var(--ink);
  color: var(--gold);
  border-radius: 999px;
  padding: 6px 16px;
}

/* hold demo — the big white game card */
.hold-demo {
  position: relative;
  margin-top: clamp(24px, 4.5vh, 44px);
  width: 100%;
  max-width: 880px;
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 20px;
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 26px;
  box-shadow: 0 10px 0 rgba(7,27,61,.85);
  padding: 28px;
}

.hold-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hold-stats {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.stat { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.stat:first-child { flex: 1; }

.stat-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--ink-soft);
}

.stat-num { font-size: 26px; font-weight: 800; color: var(--ink); }
.big-odo { font-size: 30px; font-weight: 800; color: var(--ink); }
.grit { color: var(--red); }

.hold-btn {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 5px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  background: radial-gradient(circle at 32% 26%, #FF8A80, var(--red) 52%, var(--red-deep));
  box-shadow: 0 9px 0 var(--ink), 0 0 0 0 rgba(255,61,51,.45);
  animation: holdPulse 1.3s ease-in-out infinite;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  transition: transform .1s ease, box-shadow .1s ease;
  text-shadow: 0 2px 0 rgba(7,27,61,.5);
}

/* glossy game-show shine */
.hold-btn::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 34px;
  width: 68px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: rotate(-24deg);
}

.hold-btn:active, .hold-btn.holding {
  transform: translateY(7px) scale(.98);
  animation: none;
  box-shadow: 0 2px 0 var(--ink), 0 0 46px rgba(255,61,51,.55);
}

@keyframes holdPulse {
  0%, 100% { box-shadow: 0 9px 0 var(--ink), 0 0 0 0 rgba(255,61,51,.45); }
  50% { box-shadow: 0 9px 0 var(--ink), 0 0 0 24px rgba(255,61,51,0); }
}

.hold-btn-top { font-size: 42px; font-weight: 900; letter-spacing: .02em; line-height: 1; }
.hold-btn-sub { font-size: 11px; font-weight: 800; letter-spacing: .13em; opacity: .95; }

.hold-hint { font-size: 14px; font-weight: 600; color: var(--ink-soft); text-align: center; }

/* webcam wall */
.cam-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  align-content: start;
}

.cam-tile {
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  transition: filter .4s ease, opacity .4s ease;
}

.cam-tile.out { filter: grayscale(1) brightness(.55); opacity: .45; }

/* temptation overlay — the gold devil card */
.temptation {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  border-radius: 22px;
  background: rgba(7, 27, 61, .88);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  pointer-events: none; /* releasing IS the accept — no buttons to steal the pointer */
}

.tempt-kicker {
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--white);
  border-radius: 8px;
  transform: rotate(-2deg);
  padding: 3px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
}

.tempt-amount {
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 0 5px 0 rgba(0,0,0,.45);
}

.tempt-copy { color: var(--white); font-size: 16px; font-weight: 600; }
.tempt-copy em { color: var(--gold); font-style: normal; font-weight: 900; }
.tempt-count { font-size: 38px; font-weight: 900; color: var(--red); text-shadow: 0 3px 0 rgba(0,0,0,.4); }

/* result card */
.result-card {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-radius: 22px;
  padding: 24px;
  background: var(--white);
  border: 4px solid var(--red);
  color: var(--ink);
}

.result-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--red);
  transform: rotate(-2deg);
  text-shadow: 0 4px 0 rgba(7,27,61,.2);
}

.result-card.glitching .result-title { animation: glitch .38s steps(2) 3; }

@keyframes glitch {
  0% { text-shadow: 3px 0 var(--blue), -3px 0 var(--red); transform: rotate(-2deg) skewX(0); }
  25% { text-shadow: -4px 0 var(--blue), 4px 0 var(--red); transform: rotate(-2deg) skewX(3deg) translateX(-3px); }
  50% { text-shadow: 3px 2px var(--blue), -3px -2px var(--red); transform: rotate(-2deg) skewX(-2deg); }
  100% { text-shadow: 0 4px 0 rgba(7,27,61,.2); transform: rotate(-2deg); }
}

.result-body { max-width: 440px; font-size: 16px; font-weight: 600; color: var(--ink-soft); }
.result-body strong { color: var(--ink); }
.result-note { display: block; margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }

.result-grit { font-size: 13px; font-weight: 800; color: var(--red); }

.result-card.golden {
  border-color: var(--ink);
  background: linear-gradient(160deg, #FFD84D, var(--gold) 55%, #F5B800);
}

.result-card.golden .result-title { color: var(--ink); text-shadow: 0 4px 0 rgba(255,255,255,.4); }
.result-card.golden .result-body { color: #4A3A00; }
.result-card.golden .result-body strong { color: var(--ink); }
.result-card.golden .result-grit { color: #7A2E00; }

/* ticker */
.ticker {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--navy);
  padding: 9px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  color: #9FC1EF;
  animation: tickerScroll 42s linear infinite;
}

.ticker-track b { color: var(--white); font-weight: 700; }
.ticker-track .t-money { color: var(--gold); font-weight: 700; }
.ticker-track .t-out { color: #FF7B73; font-weight: 700; }

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

.scroll-cue {
  position: absolute;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
}

.scroll-cue:hover { color: var(--ink); transform: translateY(-2px); }
.cue-arrow { display: inline-block; animation: cueBob 1.5s ease-in-out infinite; }

@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ───────────────────────── bolt divider ───────────────────────── */

.bolt-divider { display: flex; justify-content: center; padding: 6px 0; position: relative; z-index: 1; }
.bolt-divider svg {
  width: 34px;
  height: 51px;
  fill: var(--gold);
  stroke: var(--ink);
  stroke-width: 3;
  filter: drop-shadow(0 4px 0 rgba(7,27,61,.6));
}
.bolt-divider.in svg { animation: boltFlick .5s steps(2) 1; }

@keyframes boltFlick {
  0% { fill: var(--white); } 30% { fill: var(--gold); }
  50% { fill: var(--white); } 100% { fill: var(--gold); }
}

/* ───────────────────────── ladder ───────────────────────── */

.ladder {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 44px;
  text-align: left;
}

.ladder-step {
  flex: 1;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .15s ease;
}

.ladder-step:hover { transform: translateY(-4px) rotate(-.5deg); }

.ladder-step h3 { font-size: 20px; font-weight: 900; letter-spacing: .01em; }
.ladder-step p { font-size: 14px; font-weight: 500; color: var(--ink-soft); }

.step-num {
  display: inline-block;
  align-self: flex-start;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 1px 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.step-stat {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  border-top: 2px dashed rgba(10,39,87,.25);
  padding-top: 10px;
}

.ladder-arrow {
  align-self: center;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  flex: 0 0 auto;
  list-style: none;
  text-shadow: 0 3px 0 rgba(7,27,61,.5);
}

.ladder-golden {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFD84D, var(--gold) 60%, #F5B800);
}

.ladder-golden h3 { color: var(--ink); }
.ladder-golden p { color: #5A4400; }
.ladder-golden .step-num { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.ladder-golden .step-stat { color: var(--ink); border-top-color: rgba(10,39,87,.3); }

/* foil shimmer */
.ladder-golden::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  width: 52px;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shimmer 3.2s ease-in-out infinite;
}

@keyframes shimmer { 0% { left: -30%; } 60%, 100% { left: 120%; } }

.ladder-footline {
  display: inline-block;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 800;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 20px;
}

/* ───────────────────────── sync play ───────────────────────── */

.sync-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;
  margin-top: 44px;
  align-items: start;
  text-align: left;
}

.premiere-timeline {
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.tl-head { font-size: 12px; font-weight: 900; letter-spacing: .16em; color: var(--ink-soft); margin-bottom: 18px; }

.premiere-timeline ul { list-style: none; position: relative; }

.premiere-timeline ul::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 2px;
  background: rgba(10,39,87,.18);
}

.premiere-timeline li {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 10px 0;
}

.premiere-timeline li::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 17px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
}

.premiere-timeline li.tl-hot::before { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 4px rgba(255,61,51,.25); }

.tl-time { width: 40px; flex: 0 0 auto; font-size: 12px; font-weight: 700; color: var(--ink-soft); padding-top: 4px; }
.premiere-timeline li div { padding-left: 14px; }
.premiere-timeline strong { display: block; font-size: 14px; font-weight: 900; letter-spacing: .02em; }
.premiere-timeline li.tl-hot strong { color: var(--red); }
.premiere-timeline span:not(.tl-time) { font-size: 13px; font-weight: 500; color: var(--ink-soft); }

/* vote panel — dark broadcast feed inside the bright page */
.vote-panel {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 4px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
}

/* broadcast scanlines */
.vote-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(transparent 0 2px, rgba(0,0,0,.16) 2px 3px);
  border-radius: 16px;
}

.vote-head { display: flex; justify-content: space-between; align-items: center; }
.vote-head .chip { transform: none; box-shadow: none; border-width: 2px; }
.vote-votes { font-size: 13px; font-weight: 700; color: #9FC1EF; display: inline-flex; gap: 6px; align-items: baseline; }
.vote-votes .odometer { color: var(--white); font-size: 16px; }

.vote-title { font-size: clamp(1.2rem, 2.6vw, 1.65rem); font-weight: 900; letter-spacing: -.01em; line-height: 1.15; }
.vote-sub { font-size: 14px; font-weight: 500; color: #9FC1EF; margin-top: -8px; }

.vote-ring-wrap { display: flex; justify-content: center; }

.vote-ring {
  --t: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--t) * 360deg), rgba(255,255,255,.14) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vote-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--navy);
}

.vote-ring span { position: relative; font-size: 28px; font-weight: 800; }
.vote-ring.urgent { background: conic-gradient(var(--red) calc(var(--t) * 360deg), rgba(255,255,255,.14) 0); }
.vote-ring.urgent span { color: var(--red); }

.vote-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.vote-btn {
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 20px 10px;
  box-shadow: 0 6px 0 rgba(0,0,0,.5);
  transition: transform .1s ease, box-shadow .1s ease;
}

.vote-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,.5); }
.vote-btn:active:not(:disabled) { transform: translateY(4px); box-shadow: 0 2px 0 rgba(0,0,0,.5); }
.vote-btn:disabled { cursor: default; opacity: .55; }

.vote-btn.picked {
  opacity: 1;
  background: var(--gold);
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0,0,0,.5);
}

.vote-btn.picked::after {
  content: "LOCKED ✓";
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--ink);
  margin-top: 4px;
}

.tally {
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.25);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.tally-a {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  border-radius: 999px 0 0 999px;
  transition: width .3s ease;
}

.tally-labels { display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; }
.tally-labels span:first-child { color: #6FC4FF; }
.tally-labels span:last-child { color: var(--gold); }

.vote-toast { font-size: 12px; font-weight: 700; color: var(--gold); }
.vote-streak { font-size: 12px; font-weight: 800; color: #6FC4FF; letter-spacing: .08em; }

/* vote reveal overlay */
.vote-reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(4, 15, 36, .96);
  border-radius: 16px;
  text-align: center;
  padding: 20px;
}

.reveal-outcome { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; letter-spacing: -.01em; }
.reveal-outcome .money { color: var(--gold); }

.reveal-stamp {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .26em;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 10px;
  padding: 7px 18px;
  transform: rotate(-4deg);
  box-shadow: 0 5px 0 rgba(0,0,0,.4);
  animation: stampIn .3s cubic-bezier(.2, 2.2, .4, 1) 1;
}

@keyframes stampIn { from { transform: rotate(-4deg) scale(2.4); opacity: 0; } to { transform: rotate(-4deg) scale(1); opacity: 1; } }

/* vault doors */
.vault-doors {
  position: relative;
  width: min(280px, 80%);
  aspect-ratio: 16 / 9;
  perspective: 700px;
  margin-bottom: 8px;
}

.vault-interior {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background:
    repeating-linear-gradient(0deg, rgba(255,198,26,.35) 0 10px, rgba(255,198,26,.12) 10px 20px),
    #2A2000;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-interior .mono { font-size: 30px; font-weight: 900; color: var(--gold); }

.vault-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(120deg, #8B99B5, #5D6B8A 60%);
  border: 3px solid var(--ink);
  transition: transform .9s cubic-bezier(.6, 0, .3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-door span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 5px solid #3D4A66;
}

.door-l { left: 0; border-radius: 12px 0 0 12px; transform-origin: left center; }
.door-r { right: 0; border-radius: 0 12px 12px 0; transform-origin: right center; }

.vault-doors.open .door-l { transform: rotateY(-108deg); }
.vault-doors.open .door-r { transform: rotateY(108deg); }

/* mode cards */
.mode-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; text-align: left; }

.mode-card {
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform .15s ease;
}

.mode-card:hover { transform: translateY(-4px) rotate(.5deg); }

.mode-glyph {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 12px;
  background: var(--blue);
  border: 2px solid var(--ink);
  fill: var(--white);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.mode-card h3 { font-size: 17px; font-weight: 900; letter-spacing: .01em; margin-bottom: 6px; }
.mode-card p { font-size: 14px; font-weight: 500; color: var(--ink-soft); }

/* ───────────────────────── beast vision ───────────────────────── */

.pano-wrap {
  position: relative;
  margin-top: 40px;
  display: flex;
  gap: 4px;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  background: #05050c;
  height: clamp(320px, 52vh, 520px);
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none; /* fast drags must not select the jumbotron SVG text */
}

.pano-wrap.dragging { cursor: grabbing; }

.pano-cell { position: relative; flex: 1; overflow: hidden; }

.pano-stage { position: absolute; inset: 0; }

.pano-layer {
  position: absolute;
  top: 0;
  height: 100%;
  width: 200%;
  left: -50%;
  transform: translateX(calc((var(--pan, 0) + var(--pan-offset, 0)) * var(--rate, 0) * 1%));
  will-change: transform;
}

/* scanlines over the feed */
.pano-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(transparent 0 3px, rgba(0,0,0,.12) 3px 4px);
}

.bleachers { position: absolute; left: 0; right: 0; bottom: 0; height: 34%; pointer-events: none; }

.cheer {
  position: absolute;
  bottom: 10%;
  font-size: 19px;
  animation: cheerUp 1.1s ease-out forwards;
  pointer-events: none;
}

@keyframes cheerUp {
  from { transform: translateY(0) scale(.7); opacity: 0; }
  25% { opacity: 1; }
  to { transform: translateY(-70px) scale(1.15); opacity: 0; }
}

.pano-ui { position: absolute; inset: 0; pointer-events: none; }

/* a headset view has no room for flat-screen chrome */
.pano-wrap.stereo .pano-chip,
.pano-wrap.stereo .pano-chip-live,
.pano-wrap.stereo .pano-hint { display: none; }

.pano-chip { position: absolute; top: 14px; left: 14px; font-size: 11px; }
.pano-chip-live { position: absolute; top: 14px; right: 14px; font-size: 11px; }

.pano-hint {
  position: absolute;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
  transition: opacity .5s ease;
}

.pano-hint.hide { opacity: 0; }

.jumbo-sting {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%) rotate(-2deg);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 12px;
  padding: 8px 20px;
  box-shadow: 0 6px 0 rgba(0,0,0,.4);
  animation: stingFlicker 2.4s steps(3) 1;
  white-space: nowrap;
}

@keyframes stingFlicker { 0%, 20% { opacity: 0; } 25%, 45% { opacity: 1; } 50% { opacity: .3; } 55%, 100% { opacity: 1; } }

.pano-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-top: 22px;
  flex-wrap: wrap;
  text-align: left;
}

.handle-claim label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--white);
  text-shadow: 0 2px 0 rgba(7,27,61,.5);
  margin-bottom: 8px;
}

.handle-row { display: flex; gap: 10px; }

.handle-row input {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 14px;
  width: 210px;
  min-width: 0; /* let flex shrink it below its ~20ch default on small screens */
  box-shadow: var(--shadow-sm);
}

.handle-row input:focus { outline: none; border-color: var(--gold); }
.handle-row input::placeholder { color: #8AA0C8; }

.stereo-box { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.stereo-box .btn-ghost { align-self: stretch; }
.stereo-note { font-size: 11px; font-weight: 700; color: #EAF5FF; text-shadow: 0 1px 0 rgba(7,27,61,.4); }

.builder-note {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px 30px;
  text-align: left;
}

.headset-art { width: 150px; flex: 0 0 auto; }
.builder-note p { font-size: 15px; font-weight: 500; color: var(--ink-soft); max-width: 640px; }
.builder-note .kicker { margin-bottom: 10px; transform: rotate(-1deg); }
.builder-note .sig { color: var(--ink); margin-top: 8px; font-size: 13px; font-weight: 800; }

/* ───────────────────────── producer math ───────────────────────── */

.math-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; text-align: left; }

.math-card {
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform .15s ease;
}

.math-card:hover { transform: translateY(-4px); }

.math-num {
  display: block;
  font-size: 46px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.math-card p { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.math-card strong { color: var(--ink); }

/* ───────────────────────── footer ───────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-top: 4px solid var(--ink);
  margin-top: 40px;
  padding: 90px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.footer > * { max-width: 760px; }

.footer-golden {
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 12px;
  transform: rotate(-1deg);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 800;
}

.footer-pitch { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; line-height: 1.4; color: var(--white); }
.footer-pitch strong { color: var(--gold); }

.footer-sig { color: #9FC1EF; font-size: 14px; font-weight: 600; }

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #3D5583;
  flex-wrap: wrap;
  justify-content: center;
}

.disclaimer {
  margin-top: 26px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #7E9CCB;
  border-top: 2px solid rgba(159,193,239,.2);
  padding-top: 22px;
}

/* ───────────────────────── overlays ───────────────────────── */

#confettiCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 50;
}

.flash {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
}

.flash.on { opacity: .85; }
.flash.fading { opacity: 0; transition: opacity .15s ease-out; }

.shake { animation: shakeIt .3s linear 1; }

@keyframes shakeIt {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-7px, 4px); }
  40% { transform: translate(6px, -5px); }
  60% { transform: translate(-5px, -3px); }
  80% { transform: translate(4px, 5px); }
  100% { transform: translate(0, 0); }
}

/* ───────────────────────── responsive ───────────────────────── */

@media (max-width: 980px) {
  .ladder { flex-direction: column; }
  .ladder-arrow { transform: rotate(90deg); padding: 2px 0; }
  .sync-grid { grid-template-columns: 1fr; }
  .mode-cards { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr; }
  .builder-note { flex-direction: column; text-align: center; }
}

@media (max-width: 760px) {
  .hold-demo { grid-template-columns: 1fr; }
  .cam-wall { grid-template-columns: repeat(10, 1fr); }
  .cam-tile:nth-child(n+41) { display: none; }
  .hero { padding-bottom: 128px; }
  .ticker { bottom: 62px; }
  .pano-controls { flex-direction: column; align-items: stretch; }
  .stereo-box { align-items: stretch; }
  .handle-row input { flex: 1; width: auto; }
}

@media (max-width: 480px) {
  .chip { white-space: normal; text-align: center; line-height: 1.5; }
  .hold-stats { flex-wrap: wrap; row-gap: 10px; }
  .big-odo { font-size: clamp(20px, 6.5vw, 30px); }
  .stat-num { font-size: 22px; }
}

/* ───────────────────────── reduced motion ───────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hold-btn, .live-dot, .cue-arrow, .ladder-golden::after { animation: none; }
  .ticker-track { animation: none; }
  .odo-strip { transition: none; }
  .vote-btn, .btn-primary, .btn-ghost, .ladder-step, .mode-card, .math-card { transition: none; }
  .vault-door { transition-duration: .01s; }
  .shake { animation: none; }
  .result-card.glitching .result-title { animation: none; }
  .jumbo-sting { animation: none; }
  .reveal-stamp { animation: none; }
  .bolt-divider.in svg { animation: none; fill: var(--gold); }
}

/* ───────────────────────── print ───────────────────────── */

@media print {
  body { background: #fff; color: #111; }
  body::before, .ticker, #confettiCanvas, .flash { display: none; }
  .thumb, .wordmark-num, .tagline, .headline { color: #111; text-shadow: none; }
  .footer { background: #fff; color: #111; }
  .footer-pitch, .footer-pitch strong { color: #111; }
}
