:root {
  color-scheme: dark;
  --bg: #0f0d14;
  --panel: #17131f;
  --panel-2: #211b2c;
  --ink: #fff8ee;
  --muted: #c8bccc;
  --soft: #8f8296;
  --line: rgba(255,255,255,.12);
  --red: #ef2b45;
  --red-2: #ff5f6f;
  --gold: #ffbd59;
  --mint: #40e7b7;
  --blue: #7db8ff;
  --accent: #ef2b45;
  --glow: rgba(239,43,69,.22);
  --shadow: 0 22px 80px rgba(0,0,0,.42);
  --radius: 20px;
  --season-fx: none;
}

/* ─── Season CSS tokens (site-wide aesthetic) ─── */
body.season-nye {
  --bg: #08080c; --red: #ffd700; --red-2: #fff4b0; --gold: #f5e6a3; --accent: #c9a227;
  --glow: rgba(255,215,0,.28); --mint: #7dfff0;
}
body.season-valentine {
  --bg: #140810; --red: #ff2d6a; --red-2: #ff6b9d; --gold: #ffb3d9; --accent: #e8004d;
  --glow: rgba(255,45,106,.32); --mint: #ff9ec8;
}
body.season-stpatricks {
  --bg: #061208; --red: #22c55e; --red-2: #4ade80; --gold: #a3e635; --accent: #16a34a;
  --glow: rgba(34,197,94,.3); --mint: #86efac;
}
body.season-biggame {
  --bg: #06120d; --red: #2dd4bf; --red-2: #5eead4; --gold: #facc15; --accent: #16a34a;
  --glow: rgba(22,163,74,.28); --mint: #bbf7d0;
}
body.season-mardi {
  --bg: #100516; --red: #a855f7; --red-2: #d8b4fe; --gold: #facc15; --accent: #22c55e;
  --glow: rgba(168,85,247,.32); --mint: #86efac;
}
body.season-cinco {
  --bg: #120806; --red: #ef4444; --red-2: #fb923c; --gold: #facc15; --accent: #22c55e;
  --glow: rgba(251,146,60,.28); --mint: #86efac;
}
body.season-july4 {
  --bg: #050816; --red: #ef4444; --red-2: #f8fafc; --gold: #60a5fa; --accent: #2563eb;
  --glow: rgba(37,99,235,.34); --mint: #bfdbfe;
  --season-fx: fireworks;
}
body.season-halloween {
  --bg: #0c0810; --red: #f97316; --red-2: #fb923c; --gold: #a855f7; --accent: #7c3aed;
  --glow: rgba(249,115,22,.28); --season-fx: fog;
}
body.season-winter {
  --bg: #0a1220; --red: #60a5fa; --red-2: #93c5fd; --gold: #e0f2fe; --accent: #dc2626;
  --glow: rgba(96,165,250,.25); --season-fx: snow;
}
body.season-spring {
  --bg: #0e1018; --red: #c084fc; --red-2: #e9d5ff; --gold: #86efac; --accent: #a78bfa;
  --glow: rgba(192,132,252,.25);
}
body.season-summer {
  --bg: #100c10; --red: #fb7185; --red-2: #fda4af; --gold: #fde047; --accent: #22d3ee;
  --glow: rgba(34,211,238,.28);
}
body.season-fall {
  --bg: #120c08; --red: #ea580c; --red-2: #f97316; --gold: #d97706; --accent: #7f1d1d;
  --glow: rgba(234,88,12,.28);
}

/* Audit fix: reduced motion support + basic room list polish */
@media (prefers-reduced-motion: reduce) {
  body[class*="season-"]::before,
  body[class*="season-"] {
    animation: none !important;
    transition: none !important;
  }
  .primary-btn, .ghost-btn, .text-btn {
    transition: none !important;
  }
}

/* Reuse for room list items when not using full deck-card */
.room-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  margin-bottom: 6px;
}

body[class*="season-"] {
  background:
    radial-gradient(circle at 12% 0%, var(--glow), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.06), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #0c0b10 100%);
}

body.season-winter::before,
body.season-halloween::before,
body.season-july4::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}
body.season-winter::before {
  background-image: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent);
  background-size: 200px 200px;
  animation: snowfall 18s linear infinite;
}
body.season-halloween::before {
  background: radial-gradient(ellipse at 50% 100%, rgba(124,58,237,.15), transparent 70%);
  animation: fogdrift 12s ease-in-out infinite alternate;
}
body.season-july4::before {
  opacity: .42;
  background:
    radial-gradient(circle at 18% 18%, rgba(248,250,252,.95) 0 2px, transparent 3px),
    radial-gradient(circle at 21% 22%, rgba(239,68,68,.8) 0 2px, transparent 4px),
    radial-gradient(circle at 78% 13%, rgba(96,165,250,.9) 0 2px, transparent 4px),
    radial-gradient(circle at 82% 18%, rgba(248,250,252,.7) 0 1px, transparent 3px),
    radial-gradient(circle at 50% 4%, rgba(239,68,68,.65), transparent 9rem);
  background-size: 280px 220px, 280px 220px, 340px 260px, 340px 260px, 100% 100%;
  animation: fireworksPulse 2.8s ease-in-out infinite alternate;
}
@keyframes snowfall { to { background-position: 0 200px, 0 400px, 0 300px; } }
@keyframes fogdrift { from { opacity: .2; } to { opacity: .45; } }
@keyframes fireworksPulse { from { opacity: .22; transform: scale(1); } to { opacity: .5; transform: scale(1.015); } }

.season-banner {
  margin: 0 clamp(18px, 5vw, 64px);
  margin-top: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.season-banner-inner { padding: 28px 32px; }
.season-banner h2 { margin: 8px 0; font-size: clamp(28px, 4vw, 42px); }
.season-setup-banner {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  background: rgba(255,255,255,.06);
}
.choice-live, .deck-live { box-shadow: 0 0 0 2px var(--accent), inset 0 0 20px var(--glow); }
.holiday-deck.deck-live span { background: var(--accent); color: #000; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(239,43,69,.22), transparent 30rem),
    radial-gradient(circle at 95% 12%, rgba(255,189,89,.12), transparent 34rem),
    linear-gradient(180deg, #0f0d14 0%, #120f19 44%, #0c0b10 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(15,13,20,.88);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(239,43,69,.32);
}
.brand strong { display: block; letter-spacing: -.02em; }
.brand small { display: block; color: var(--soft); font-size: 12px; margin-top: 2px; }

.site-nav { display: flex; justify-content: center; gap: 22px; color: var(--muted); font-weight: 750; font-size: 14px; }
.site-nav a { padding: 9px 0; }
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.primary, .ghost, .outline, .danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.primary {
  background: linear-gradient(135deg, var(--red), #ff7a3d);
  color: white;
  box-shadow: 0 18px 45px rgba(239,43,69,.26);
}
.primary:hover, .ghost:hover, .outline:hover { transform: translateY(-1px); }
.primary.small { min-height: 42px; padding-inline: 18px; }
.primary.full { width: 100%; }
.ghost { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--line); }
.outline { background: transparent; color: var(--ink); border-color: rgba(255,255,255,.22); }
.danger { background: rgba(239,43,69,.12); color: #ff99a5; border-color: rgba(239,43,69,.32); }

.app-shell { min-height: 72vh; }
.section { padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 76px); }
.section.tight { padding-top: 42px; padding-bottom: 42px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: 680px;
  padding: clamp(48px, 8vw, 106px) clamp(20px, 5vw, 76px);
}

.eyebrow {
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 14px;
}

h1, h2, h3 { margin: 0; letter-spacing: -.045em; line-height: .94; }
h1 { font-size: clamp(48px, 8vw, 96px); max-width: 11ch; }
h2 { font-size: clamp(34px, 5.2vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.04; }
p { color: var(--muted); line-height: 1.7; }
.lead { font-size: clamp(18px, 2vw, 23px); max-width: 710px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.game-preview, .hero-visual {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at 20% 10%, rgba(239,43,69,.3), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.04);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,20,.12), rgba(15,13,20,.02) 46%, rgba(15,13,20,.24)),
    linear-gradient(0deg, rgba(15,13,20,.74), transparent 50%);
  pointer-events: none;
}
.floating-game-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 22px;
  background: rgba(18,13,22,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}
.floating-game-card h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.02;
  margin-top: 12px;
}
.mini-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.mini-actions span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--ink);
  font-weight: 900;
}
.preview-top { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--line); }
.live-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); font-weight: 900; font-size: 13px; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.challenge-card {
  margin: 22px;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(160deg, #28172a, #15111d 62%, #22101a);
  border: 1px solid rgba(255,255,255,.14);
}
.challenge-card strong { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
.challenge-card p { color: var(--ink); font-size: clamp(26px, 3.6vw, 48px); line-height: 1.08; font-weight: 950; letter-spacing: -.05em; }
.preview-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 22px 22px; }
.preview-card h2 {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.preview-controls button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.075);
  color: var(--ink);
  font-weight: 900;
}

.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.card.highlight { border-color: rgba(239,43,69,.45); background: linear-gradient(150deg, rgba(239,43,69,.14), rgba(255,255,255,.04)); }
.card .kicker { color: var(--gold); font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.card ul, .content-page ul { color: var(--muted); line-height: 1.9; padding-left: 20px; }

.setup-grid { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); gap: 28px; align-items: start; }
.panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 24px;
  padding: 24px;
}
.mode-grid, .pack-grid { display: grid; gap: 12px; }
.select-card {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  color: var(--ink);
  padding: 16px;
}
.select-card.active { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.select-card small { display: block; color: var(--soft); margin-top: 5px; }
.select-card[disabled] { opacity: .55; cursor: not-allowed; }

.player-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; min-height: 42px; }
.player-chip { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; background: rgba(64,231,183,.12); border: 1px solid rgba(64,231,183,.28); color: var(--ink); padding: 8px 12px; font-weight: 800; }
.player-chip button { background: none; border: 0; color: var(--muted); }

.stacked-form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 850; font-size: 13px; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--red-2); box-shadow: 0 0 0 4px rgba(239,43,69,.12); }
.form-note { margin: 0; min-height: 24px; color: var(--gold); }

.play-screen {
  min-height: calc(100vh - 81px);
  display: grid;
  align-items: center;
  padding: 32px clamp(18px, 5vw, 64px);
}
.play-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 56px);
  text-align: center;
}
.play-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.challenge-type { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 950; }
.challenge-text { color: var(--ink); font-size: clamp(34px, 6.4vw, 78px); line-height: 1.02; font-weight: 950; letter-spacing: -.055em; margin: 22px 0; }
.turn-name { color: var(--mint); font-weight: 950; }
.play-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.route-hero { max-width: 980px; }
.content-page { max-width: 940px; margin: 0 auto; }
.content-page h1 { max-width: 12ch; font-size: clamp(44px, 7vw, 86px); }
.content-page h2 { margin-top: 42px; font-size: clamp(28px, 3.6vw, 46px); }
.question-list { display: grid; gap: 12px; margin-top: 22px; }
.question-row { padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.05); color: var(--muted); }

.leader-row, .post-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.rank { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,189,89,.15); color: var(--gold); font-weight: 950; }
.score { color: var(--mint); font-weight: 950; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.72);
}
.modal-card { width: min(520px, 100%); border: 1px solid var(--line); border-radius: 26px; background: #15111d; padding: 28px; position: relative; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--ink); }
.tabs { display: grid; grid-template-columns: 1fr 1fr; background: rgba(255,255,255,.06); border-radius: 14px; padding: 5px; margin: 18px 0; }
.tab { border: 0; border-radius: 11px; padding: 11px; background: transparent; color: var(--muted); font-weight: 900; }
.tab.active { background: var(--red); color: white; }
.toast { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(120px); opacity: 0; z-index: 90; border-radius: 999px; background: #101015; color: var(--ink); border: 1px solid var(--line); padding: 13px 18px; box-shadow: var(--shadow); transition: .25s ease; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.site-footer p { margin: 6px 0 0; max-width: 560px; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-weight: 800; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-flex; justify-self: end; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--ink); border-radius: 999px; padding: 10px 14px; font-weight: 900; }
  .site-nav, .header-actions { grid-column: 1 / -1; display: none; }
  .site-nav.open, .header-actions.open { display: flex; justify-content: flex-start; flex-wrap: wrap; }
  .hero, .setup-grid, .grid.two, .grid.three { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  h1 { max-width: 11ch; }
}

@media (max-width: 640px) {
  .section { padding-inline: 16px; }
  .hero-actions, .play-actions, .preview-controls { display: grid; grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .challenge-card { margin: 14px; padding: 22px; min-height: 280px; }
  .leader-row, .post-row { grid-template-columns: auto 1fr; }
  .score { grid-column: 2; }
}

.primary-btn, .ghost-btn, .text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.primary-btn {
  background: linear-gradient(135deg, var(--red), #ff7a3d);
  color: white;
  box-shadow: 0 18px 45px rgba(239,43,69,.26);
}
.primary-btn:hover, .ghost-btn:hover, .text-btn:hover { transform: translateY(-1px); }
.primary-btn.small { min-height: 42px; padding-inline: 18px; }
.primary-btn.wide, .ghost-btn.wide { width: 100%; }
.ghost-btn { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--line); }
.text-btn { background: transparent; color: var(--gold); padding-inline: 0; min-height: 36px; }
.premium-chip {
  border: 1px solid rgba(255,189,89,.36);
  background: rgba(255,189,89,.12);
  color: var(--gold);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 900;
}
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.deck-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-card, .price-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.deck-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.03)),
    radial-gradient(circle at 20% 15%, rgba(239,43,69,.18), transparent 15rem);
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
}
.deck-card:nth-child(2) { background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.03)), radial-gradient(circle at 20% 15%, rgba(64,231,183,.16), transparent 15rem); }
.deck-card:nth-child(3) { background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.03)), radial-gradient(circle at 20% 15%, rgba(255,189,89,.18), transparent 15rem); }
.deck-card span {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  color: var(--mint);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.deck-card h3 { margin-top: 20px; }
.deck-card p { flex: 1; }
.premium-deck { border-color: rgba(255,189,89,.3); }
.premium-deck span { color: var(--gold); background: rgba(255,189,89,.12); }

/* Distinctive themed key-art per holiday deck card (Pollinations-generated, one-time) */
.holiday-deck {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.holiday-deck::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(175deg, rgba(6,6,10,.18) 0%, rgba(6,6,10,.5) 55%, rgba(6,6,10,.94) 100%);
}
.holiday-deck > * { position: relative; z-index: 1; }
.holiday-deck span { backdrop-filter: blur(6px); background: rgba(0,0,0,.4); }
.holiday-deck h3, .holiday-deck p { text-shadow: 0 2px 14px rgba(0,0,0,.7); }
.holiday-deck:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.feature-card p, .price-card p { margin-bottom: 0; }
.icon-badge, .avatar {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(64,231,183,.12);
  color: var(--mint);
  font-weight: 950;
}
.split-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.party-pulse {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(239,43,69,.18), transparent 24rem),
    radial-gradient(circle at 90% 30%, rgba(64,231,183,.08), transparent 22rem),
    rgba(255,255,255,.025);
}
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pulse-grid article, .benefit-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.055);
}
.pulse-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
  letter-spacing: -.06em;
}
.pulse-grid span, .benefit-grid span { color: var(--muted); line-height: 1.55; }
.link-list { display: grid; gap: 12px; }
.link-list a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 16px;
  padding: 16px;
  color: var(--ink);
  font-weight: 900;
}
.section-head { max-width: 930px; margin-bottom: 28px; }
.section-head.narrow { max-width: 760px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 14px 0 26px; }
.choice {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  color: var(--ink);
  padding: 16px;
}
.choice.selected { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.choice span { display: block; color: var(--soft); margin-top: 5px; font-size: 13px; }
.inline-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.player-row, .leader-row, .post-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.player-row button {
  border: 1px solid rgba(239,43,69,.32);
  background: rgba(239,43,69,.12);
  color: #ff99a5;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}
.muted { color: var(--muted); }
.muted.small { font-size: 0.85rem; margin-top: 0.5rem; }
.challenge-text {
  color: var(--ink);
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.05em;
}
.play-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.price-card.featured { border-color: rgba(255,189,89,.44); background: linear-gradient(150deg, rgba(255,189,89,.14), rgba(255,255,255,.04)); }
.price { color: var(--ink); font-size: clamp(46px, 7vw, 82px); font-weight: 950; letter-spacing: -.05em; margin: 16px 0; }
.price span { color: var(--muted); font-size: 18px; }
.price-card li { color: var(--muted); margin: 10px 0; }
.article { max-width: 1040px; margin: 0 auto; }
.article h1 { max-width: 14ch; }
.article p { font-size: 18px; max-width: 840px; }
.article-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.prose { max-width: 850px; margin: 0 auto; }
.modal-backdrop.open { display: grid; }
.modal-card form { display: grid; gap: 12px; }
.form-error { color: #ff9ca8; min-height: 22px; margin: 0; }
.gold { color: var(--gold); }
.round-meter {
  margin: 12px auto 0;
  color: var(--gold);
  font-weight: 900;
}

.community-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}
.community-rail { position: sticky; top: 104px; display: grid; gap: 18px; }
.profile-card, .composer-card, .side-card, .social-post {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 14px 48px rgba(0,0,0,.18);
}
.profile-card, .composer-card, .side-card { padding: 22px; }
.avatar.big { width: 64px; height: 64px; border-radius: 20px; font-size: 28px; }
.stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}
.stat-strip span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  color: var(--muted);
}
.stat-strip b { display: block; color: var(--ink); font-size: 22px; }
.feed-column { display: grid; gap: 16px; }
.composer-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 10px 0; }
.feed-stack { display: grid; gap: 16px; }
.social-post {
  padding: 18px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.065), rgba(255,255,255,.035)),
    radial-gradient(circle at 92% 10%, rgba(255,189,89,.10), transparent 12rem);
}
.post-head { display: flex; gap: 12px; align-items: center; }
.post-head small { display: block; color: var(--soft); margin-top: 3px; }
.post-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  margin-top: 12px;
}
.live-link {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(64,231,183,.25);
  color: var(--mint);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
}
.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
}
.post-actions button {
  border: 0;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}
.side-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.side-card li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,.16);
}
.side-card li span { display: block; color: var(--soft); font-size: 13px; margin-top: 3px; }
.hot-card { background: linear-gradient(150deg, rgba(239,43,69,.14), rgba(255,255,255,.045)); }

.premium-hero { padding-top: clamp(92px, 10vw, 142px); }
.season-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 10% 10%, var(--glow), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.season-promo strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.season-promo span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}
.season-promo b {
  flex: 0 0 auto;
  min-width: 132px;
  text-align: center;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, var(--red), var(--accent));
  color: white;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1;
  box-shadow: 0 20px 55px var(--glow);
}

@media (max-width: 700px) {
  .season-promo {
    display: grid;
    padding: 18px;
    border-radius: 20px;
  }
  .season-promo b {
    width: 100%;
    min-width: 0;
  }
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}
.benefit-grid strong { display: block; color: var(--ink); font-size: 20px; margin-bottom: 8px; }
.premium-deck-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.premium-deck-showcase span {
  border: 1px solid rgba(255,189,89,.24);
  border-radius: 999px;
  background: rgba(255,189,89,.10);
  color: var(--gold);
  padding: 11px 14px;
  font-weight: 950;
}

.game-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.game-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.game-card:hover .game-card-bg { transform: scale(1.06); }
.game-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 42%, rgba(255,255,255,.04) 100%);
  pointer-events: none;
}
.game-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 5vw, 40px);
  text-align: center;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  min-height: 420px;
  align-content: center;
}
.game-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.reshuffle-btn {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(8px);
}
.reshuffle-btn:hover { border-color: var(--gold); color: var(--gold); }
.deck-meter {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
.card-pill {
  display: inline-block;
  margin: 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.theme-party .game-card-bg { background: linear-gradient(145deg, #4a1028 0%, #1a0f24 40%, #2d1840 100%), radial-gradient(circle at 80% 20%, rgba(239,43,69,.45), transparent 50%); }
.theme-couples .game-card-bg { background: linear-gradient(145deg, #3b1848 0%, #1a1020 50%, #4a2040 100%), radial-gradient(circle at 20% 80%, rgba(255,105,180,.35), transparent 45%); }
.theme-ice .game-card-bg { background: linear-gradient(145deg, #12304a 0%, #0f1520 50%, #1a3555 100%), radial-gradient(circle at 70% 30%, rgba(125,184,255,.4), transparent 50%); }
.theme-long .game-card-bg { background: linear-gradient(145deg, #1f2a18 0%, #121018 50%, #2a3020 100%), radial-gradient(circle at 50% 50%, rgba(64,231,183,.25), transparent 55%); }
.theme-never .game-card-bg { background: linear-gradient(145deg, #3a1020 0%, #150c14 50%, #4a1830 100%), radial-gradient(circle at 30% 70%, rgba(255,95,111,.4), transparent 50%); }
.theme-rather .game-card-bg { background: linear-gradient(145deg, #2a2848 0%, #12101c 50%, #383070 100%), radial-gradient(circle at 60% 40%, rgba(120,24,255,.35), transparent 50%); }
.theme-likely .game-card-bg { background: linear-gradient(145deg, #3a3010 0%, #18140c 50%, #4a4018 100%), radial-gradient(circle at 80% 60%, rgba(255,189,89,.45), transparent 50%); }
.theme-hotseat .game-card-bg { background: linear-gradient(145deg, #4a1808 0%, #180c08 50%, #602010 100%), radial-gradient(circle at 40% 30%, rgba(255,120,40,.5), transparent 50%); }
.theme-office .game-card-bg { background: linear-gradient(145deg, #1a2840 0%, #0e1218 50%, #243850 100%), radial-gradient(circle at 70% 70%, rgba(125,184,255,.3), transparent 50%); }
.theme-teachers .game-card-bg { background: linear-gradient(145deg, #2a3818 0%, #101408 50%, #3a4828 100%), radial-gradient(circle at 25% 75%, rgba(180,220,100,.3), transparent 50%); }
.theme-service .game-card-bg { background: linear-gradient(145deg, #402018 0%, #140c08 50%, #503028 100%), radial-gradient(circle at 75% 25%, rgba(255,160,80,.35), transparent 50%); }
.season-nye .game-card-bg, .theme-party.season-nye .game-card-bg { background: linear-gradient(145deg, #1a1408 0%, #08080c 50%, #2a2010 100%), radial-gradient(circle at 70% 20%, rgba(255,215,0,.4), transparent 50%); }
.season-biggame .game-card-bg { background: linear-gradient(145deg, #092015 0%, #06120d 50%, #123a24 100%), radial-gradient(circle at 55% 30%, rgba(250,204,21,.36), transparent 50%); }
.season-mardi .game-card-bg { background: linear-gradient(145deg, #2a1038 0%, #100516 50%, #183820 100%), radial-gradient(circle at 60% 35%, rgba(250,204,21,.35), transparent 50%); }
.season-valentine .game-card-bg { background: linear-gradient(145deg, #3a0820 0%, #140810 50%, #4a1030 100%), radial-gradient(circle at 30% 70%, rgba(255,45,106,.4), transparent 50%); }
.season-stpatricks .game-card-bg { background: linear-gradient(145deg, #0a2818 0%, #061208 50%, #143820 100%), radial-gradient(circle at 60% 40%, rgba(34,197,94,.4), transparent 50%); }
.season-cinco .game-card-bg { background: linear-gradient(145deg, #42110d 0%, #120806 50%, #18452a 100%), radial-gradient(circle at 72% 20%, rgba(250,204,21,.35), transparent 50%); }
.season-july4 .game-card-bg { background: linear-gradient(145deg, #071533 0%, #050816 48%, #431018 100%), radial-gradient(circle at 25% 22%, rgba(248,250,252,.42), transparent 35%), radial-gradient(circle at 80% 20%, rgba(239,68,68,.4), transparent 45%), radial-gradient(circle at 60% 74%, rgba(37,99,235,.45), transparent 50%); }
.season-halloween .game-card-bg { background: linear-gradient(145deg, #2a1038 0%, #0c0810 50%, #3a1808 100%), radial-gradient(circle at 50% 30%, rgba(249,115,22,.45), transparent 50%); border: 2px solid rgba(168,85,247,.35); }
.season-winter .game-card-bg { background: linear-gradient(145deg, #1a2848 0%, #0a1220 50%, #2a3858 100%), radial-gradient(circle at 40% 60%, rgba(96,165,250,.35), transparent 50%); }
.season-spring .game-card-bg { background: linear-gradient(145deg, #2a2840 0%, #101418 50%, #3a4860 100%), radial-gradient(circle at 70% 30%, rgba(192,132,252,.3), transparent 50%); }
.season-summer .game-card-bg { background: linear-gradient(145deg, #4a2018 0%, #100c10 50%, #184858 100%), radial-gradient(circle at 80% 20%, rgba(34,211,238,.4), transparent 50%); }
.season-fall .game-card-bg { background: linear-gradient(145deg, #3a2010 0%, #120c08 50%, #4a3018 100%), radial-gradient(circle at 25% 75%, rgba(234,88,12,.4), transparent 50%); }
.game-card.season-halloween { box-shadow: 0 0 40px rgba(124,58,237,.25), var(--shadow); }
.card-truth .card-pill { background: rgba(125,184,255,.22); border: 1px solid rgba(125,184,255,.45); color: #cfe4ff; }
.card-dare .card-pill { background: rgba(239,43,69,.22); border: 1px solid rgba(239,43,69,.45); color: #ffc4cc; }
.card-wild .card-pill { background: rgba(255,189,89,.22); border: 1px solid rgba(255,189,89,.45); color: #ffe4b8; }
.card-prompt .card-pill { background: rgba(64,231,183,.18); border: 1px solid rgba(64,231,183,.4); color: #c8fff0; }
.game-card .challenge-text {
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.04em;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  margin: 8px 0 4px;
}
.game-card .turn-name { color: var(--mint); font-weight: 950; font-size: 18px; margin: 0; }

@media (max-width: 980px) {
  .grid.four, .grid.three, .choice-grid, .play-actions, .split-band, .deck-grid, .pulse-grid, .community-layout, .benefit-grid, .composer-fields { grid-template-columns: 1fr; }
  .inline-form { grid-template-columns: 1fr; }
  .hero-visual, .hero-visual img { min-height: 390px; }
  .floating-game-card { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
  .mini-actions { grid-template-columns: 1fr; }
  .community-rail { position: static; }
}

/* ════════════════ PARTY-ENERGY UPGRADE (audit P0/P1) ════════════════ */
/* Ambient, alive play screen instead of a flat void */
.play-screen { position: relative; gap: 18px; justify-items: center; align-content: center; overflow: hidden; }
.play-screen::before {
  content: ""; position: fixed; inset: -20% -10% auto -10%; height: 80vh; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40vw 40vw at 20% 10%, rgba(239,43,69,.16), transparent 60%),
    radial-gradient(40vw 40vw at 85% 25%, rgba(124,58,237,.16), transparent 60%),
    radial-gradient(46vw 40vw at 55% 90%, rgba(125,184,255,.12), transparent 60%);
  animation: pulseGlow 9s ease-in-out infinite alternate;
}
@keyframes pulseGlow { from { opacity:.6; transform: translateY(0) scale(1); } to { opacity:1; transform: translateY(-12px) scale(1.05); } }
.play-screen > * { position: relative; z-index: 1; }

/* Live scoreboard / turn rail */
.score-rail { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 720px; margin: 0 auto; }
.score-chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--soft);
  font-weight: 800; font-size: 13px; transition: transform .2s, border-color .2s, background .2s;
}
.score-chip .sc-pts { background: rgba(255,255,255,.1); border-radius: 999px; padding: 1px 9px; font-size: 12px; color: var(--ink); }
.score-chip.current {
  color: #fff; border-color: rgba(250,204,21,.6); background: linear-gradient(120deg, rgba(250,204,21,.18), rgba(239,43,69,.14));
  box-shadow: 0 0 22px rgba(250,204,21,.25); transform: translateY(-2px) scale(1.04);
}
.score-chip.current .sc-pts { background: rgba(250,204,21,.3); color: #fff; }

/* Card reveal + pick entrance animation */
.card-reveal, .card-pick { animation: cardIn .42s cubic-bezier(.2,.9,.25,1.2) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px) scale(.94) rotate(-1.2deg); } to { opacity: 1; transform: none; } }

/* TYPE makes the whole card glow, not just the pill */
.game-card.card-truth { border-color: rgba(125,184,255,.6); box-shadow: 0 0 0 1px rgba(125,184,255,.3), 0 24px 70px rgba(125,184,255,.22), var(--shadow); }
.game-card.card-dare  { border-color: rgba(239,43,69,.65);  box-shadow: 0 0 0 1px rgba(239,43,69,.32), 0 24px 70px rgba(239,43,69,.26), var(--shadow); }
.game-card.card-wild  { border-color: rgba(168,85,247,.65); box-shadow: 0 0 0 1px rgba(168,85,247,.32), 0 24px 70px rgba(168,85,247,.28), var(--shadow); }
.game-card.card-truth .card-pill { background: rgba(125,184,255,.3); border-color: rgba(125,184,255,.7); color:#eaf3ff; }
.game-card.card-dare  .card-pill { background: rgba(239,43,69,.32); border-color: rgba(239,43,69,.7); color:#ffe0e4; }
.game-card.card-wild  .card-pill { background: rgba(168,85,247,.34); border-color: rgba(168,85,247,.7); color:#f3e8ff; }

/* PICK PHASE — three big, color-coded choices */
.turn-name.big { font-size: clamp(22px, 4.6vw, 34px); }
.pick-prompt { color: var(--soft); font-weight: 800; letter-spacing:.02em; margin: 2px 0 6px; text-transform: uppercase; font-size: 13px; }
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 6px 0 10px; }
.pick-btn {
  display: grid; gap: 4px; justify-items: center; padding: 22px 12px; border-radius: 20px; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: var(--ink);
  font-family: inherit; transition: transform .15s, box-shadow .2s, border-color .2s, background .2s;
}
.pick-btn strong { font-size: 20px; font-weight: 950; letter-spacing: -.02em; }
.pick-btn .pick-emoji { font-size: 30px; line-height: 1; }
.pick-btn .pick-sub { font-size: 12px; color: var(--soft); font-weight: 700; }
.pick-truth { border-color: rgba(125,184,255,.38); background: rgba(125,184,255,.08); }
.pick-dare  { border-color: rgba(239,43,69,.4);   background: rgba(239,43,69,.08); }
.pick-wild  { border-color: rgba(168,85,247,.4);  background: rgba(168,85,247,.09); }
.pick-truth strong { color: #cfe4ff; } .pick-dare strong { color: #ffd0d6; } .pick-wild strong { color: #eedcff; }
.pick-btn:hover, .pick-btn:focus-visible { transform: translateY(-4px) scale(1.03); outline: none; }
.pick-truth:hover { border-color:#7db8ff; background: rgba(125,184,255,.16); box-shadow: 0 16px 40px rgba(125,184,255,.3); }
.pick-dare:hover  { border-color:#ef2b45; background: rgba(239,43,69,.16);  box-shadow: 0 16px 40px rgba(239,43,69,.32); }
.pick-wild:hover  { border-color:#a855f7; background: rgba(168,85,247,.16); box-shadow: 0 16px 40px rgba(168,85,247,.34); }
@media (max-width: 560px) { .pick-grid { grid-template-columns: 1fr; } .pick-btn { flex-direction: row; grid-template-columns: auto 1fr; grid-auto-flow: column; padding: 16px; justify-items: start; text-align: left; } .pick-btn .pick-emoji { font-size: 24px; } }

/* Reveal action row — Done is the hero, Re-roll + Pass are secondary */
.reveal-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.reveal-actions .primary-btn.glow { box-shadow: 0 0 0 0 rgba(239,43,69,.5); animation: doneGlow 2.2s ease-in-out infinite; padding-inline: 26px; }
.reveal-actions .primary-btn.glow b { font-weight: 950; opacity: .9; margin-left: 4px; }
@keyframes doneGlow { 0%,100% { box-shadow: 0 10px 30px rgba(239,43,69,.35); } 50% { box-shadow: 0 14px 44px rgba(239,43,69,.55); } }
.reroll-btn, .skip-btn { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); color: var(--soft); border-radius: 999px; padding: 11px 18px; font-weight: 800; font-size: 14px; cursor: pointer; font-family: inherit; }
.reroll-btn:hover, .skip-btn:hover { color: var(--ink); border-color: rgba(255,255,255,.35); }

/* Celebration: confetti + points pop + haptic */
.fx-layer { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }
.confetti-piece { position: absolute; top: -16px; width: 10px; height: 14px; border-radius: 2px; opacity: .95; animation: confFall 1.25s cubic-bezier(.3,.6,.4,1) forwards; }
@keyframes confFall { 0% { transform: translateY(-10vh) translateX(0) rotate(0); opacity: 1; } 100% { transform: translateY(108vh) translateX(var(--drift,0)) rotate(var(--rot,360deg)); opacity: .9; } }
.points-pop { position: fixed; left: 50%; top: 38%; transform: translate(-50%,-50%); font-weight: 950; font-size: clamp(54px, 12vw, 120px); color: #facc15; text-shadow: 0 6px 30px rgba(250,204,21,.6); animation: pointPop 1.2s ease-out forwards; }
@keyframes pointPop { 0% { opacity: 0; transform: translate(-50%,-30%) scale(.5); } 25% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); } 100% { opacity: 0; transform: translate(-50%,-130%) scale(1); } }
@media (prefers-reduced-motion: reduce) { .confetti-piece, .points-pop, .card-reveal, .card-pick, .play-screen::before, .reveal-actions .primary-btn.glow { animation: none !important; } }

/* Hero + setup friction reducers */
.hero-subnote { color: var(--soft); font-size: 14px; margin-top: 12px; font-weight: 700; }
.quick-play-banner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 1080px; margin: 0 auto 8px; padding: 16px 20px; border-radius: 18px; border: 1px solid rgba(250,204,21,.3); background: linear-gradient(120deg, rgba(250,204,21,.12), rgba(239,43,69,.1)); }
.quick-play-banner strong { display:block; font-size: 17px; }
.quick-play-banner span { color: var(--soft); font-size: 14px; }
.holiday-collapse { margin: 4px 0 8px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.03); overflow: hidden; }
.holiday-collapse summary { cursor: pointer; padding: 14px 16px; font-weight: 850; color: var(--ink); list-style: none; }
.holiday-collapse summary::-webkit-details-marker { display: none; }
.holiday-collapse[open] summary { border-bottom: 1px solid var(--line); }
.holiday-collapse .choice-grid { padding: 14px; }

/* Desktop: compose rail + card so it never reads as an empty void */
@media (min-width: 981px) {
  .play-screen { padding-block: 40px; }
  .score-rail { margin-bottom: 6px; }
  .game-card { min-height: 460px; }
}
