/* ============================================================================
   SPIN RUSH CLUB — "Daybreak Voltage" LIGHT theme
   Bright off-white surfaces · saturated molten accents (magenta → flame → gold)
   · electric violet · meteor-streaked dark hero banner (vanilla port of the
   Aceternity/21st "Meteors" effect — no React).
   Display: Oxanium · UI: Manrope · Mono: JetBrains Mono.
============================================================================ */

:root {
  /* light surfaces */
  --bg:    #f5f3fb;
  --bg-2:  #ffffff;
  --panel: #ffffff;

  /* ink (dark on light) */
  --ink:    #190b2b;
  --ink-72: rgba(25, 11, 43, 0.72);
  --ink-50: rgba(25, 11, 43, 0.52);
  --ink-32: rgba(25, 11, 43, 0.32);
  --ink-16: rgba(25, 11, 43, 0.14);
  --ink-08: rgba(25, 11, 43, 0.08);

  /* high-voltage accents */
  --magenta: #ff1f6b;
  --flame:   #ff5a1f;
  --gold:    #ffb300;
  --volt:    #8b3dff;
  --cyan:    #00b8d4;
  --accent:  var(--flame);

  --grad-rush: linear-gradient(100deg, #ff1f6b 0%, #ff5a1f 52%, #ffb300 100%);
  --grad-volt: linear-gradient(125deg, #8b3dff 0%, #ff1f6b 100%);
  --edge-grad: linear-gradient(140deg, rgba(255,90,31,0.6), rgba(139,61,255,0.4) 48%, rgba(255,179,0,0.55));

  --card-shadow: 0 14px 36px rgba(25, 11, 43, 0.08), 0 2px 8px rgba(25, 11, 43, 0.05);

  /* type */
  --display: "Oxanium", "Bricolage Grotesque", system-ui, sans-serif;
  --ui:      "Manrope", ui-sans-serif, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* back-compat aliases (legal pages + JS inline styles) */
  --text:       var(--ink);
  --text-muted: var(--ink-72);
  --text-dim:   var(--ink-50);
  --lime:       var(--flame);

  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.club-page { background: #fff; }
.club-page main { background: var(--bg); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
img { max-width: 100%; display: block; }
a { color: var(--flame); text-decoration: none; transition: color .15s; }
a:hover { color: var(--magenta); }
::selection { background: var(--magenta); color: #fff; }

.skip-link {
  position: absolute; top: -100px; left: 8px; padding: 9px 14px;
  background: var(--flame); color: #fff; border-radius: 8px;
  font-family: var(--display); font-weight: 800; font-size: 13px; z-index: 1000;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.skip-link:focus { top: 8px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px); }

/* subtle global grain */
.texture-overlay {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.05  0 0 0 0 0.16  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
  opacity: 0.04;
}

/* gradient hairline edge utility */
.edge { position: relative; }
.edge::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1.4px; background: var(--edge-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

/* ============================================================================
   METEORS — vanilla port of the "Meteors" component (spans injected by JS)
============================================================================ */
.meteors { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.meteor {
  position: absolute; top: 0; left: 50%;
  width: 2px; height: 2px; border-radius: 9999px;
  background: #e8edff; transform: rotate(215deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 8px 1px rgba(232, 237, 255, 0.6);
  animation: meteor linear infinite;
}
.meteor::before {
  content: ""; position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  width: 64px; height: 1px;
  background: linear-gradient(90deg, #e8edff, transparent);
}
@keyframes meteor {
  0%   { transform: rotate(215deg) translateX(0);      opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: rotate(215deg) translateX(-560px); opacity: 0; }
}
/* dark meteors for the light hero banner */
.hero .meteor { background: #3a2456; box-shadow: 0 0 0 1px rgba(25, 11, 43, 0.05), 0 0 6px 0 rgba(58, 36, 86, 0.35); }
.hero .meteor::before { background: linear-gradient(90deg, rgba(58, 36, 86, 0.55), transparent); }

/* ============================================================================
   BUTTONS
============================================================================ */
.enter-cta, .btn-pop, .btn-pop-block, .btn-pop-lg, .btn-pop-sm {
  --b-glow: rgba(255, 90, 31, 0.4);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; min-height: 50px;
  font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff;
  background: var(--grad-rush); background-size: 160% 160%;
  border: none; border-radius: 14px; cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
  box-shadow: 0 8px 22px var(--b-glow), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .16s ease, box-shadow .22s ease, background-position .5s ease;
}
.enter-cta::after, .btn-pop::after, .btn-pop-block::after, .btn-pop-lg::after, .btn-pop-sm::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform .6s ease;
}
.enter-cta:hover, .btn-pop:hover, .btn-pop-block:hover, .btn-pop-lg:hover, .btn-pop-sm:hover {
  transform: translateY(-2px); background-position: 100% 0;
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.5), inset 0 1px 0 rgba(255,255,255,0.45);
}
.enter-cta:hover::after, .btn-pop:hover::after, .btn-pop-block:hover::after, .btn-pop-lg:hover::after, .btn-pop-sm:hover::after { transform: translateX(130%); }
.enter-cta:focus-visible, .btn-pop:focus-visible, .btn-ghost:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; }
.enter-cta:disabled, .btn-pop:disabled, .btn-pop-block:disabled, .btn-pop-lg:disabled { opacity: 0.6; cursor: wait; transform: none; }
.btn-pop-block, .enter-cta-block { width: 100%; }
.btn-pop-lg { padding: 17px 30px; min-height: 58px; font-size: 15px; }
.btn-pop-sm, .enter-cta-sm { padding: 11px 18px; min-height: 44px; font-size: 12px; border-radius: 11px; }
.enter-cta-hero { padding: 18px 34px; min-height: 60px; font-size: 16px; border-radius: 16px; }

.btn-ghost, .ghost-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; min-height: 50px;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border-radius: 14px; cursor: pointer; position: relative;
  transition: color .2s, background .2s, transform .16s;
}
.btn-ghost::before, .ghost-cta::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(140deg, rgba(25,11,43,0.22), rgba(139,61,255,0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
  transition: background .2s;
}
.ghost-cta { min-height: 60px; padding: 18px 30px; }
.btn-ghost:hover, .ghost-cta:hover { color: var(--volt); background: rgba(139, 61, 255, 0.06); transform: translateY(-2px); }
.btn-ghost:hover::before, .ghost-cta:hover::before { background: var(--grad-rush); }

/* ============================================================================
   TOP BAR + NAV  (sits over the dark hero banner)
============================================================================ */
.topbar {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 18px;
  padding: 20px 0 8px; position: relative; z-index: 20;
}
.topbar-logo, .topbar-brand { display: inline-flex; align-items: center; }
.topbar-logo img, .topbar-brand img { height: 40px; width: auto; }
.topbar-logo:hover { opacity: 0.86; }

.navglass {
  justify-self: center; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px; border-radius: 16px;
  background: rgba(25, 11, 43, 0.04);
  border: 1px solid var(--ink-08);
}
.navglass a {
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-72); padding: 9px 15px; border-radius: 10px;
  transition: color .15s, background .15s;
}
.navglass a:hover { color: var(--ink); background: rgba(25, 11, 43, 0.05); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 13px; justify-self: end;
  background: rgba(25, 11, 43, 0.04); border: 1px solid var(--ink-08);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================================================================
   HERO — dark "voltage" banner island with meteors
============================================================================ */
.hero {
  position: relative; overflow: hidden;
  padding-bottom: clamp(40px, 6vw, 84px);
  color: var(--ink);
  background: #fbfaff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg .blob { display: none; }
.hero > .wrap { position: relative; z-index: 5; }

.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr); gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0 clamp(26px, 4vw, 48px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--flame);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 90, 31, 0.08); border: 1px solid rgba(255, 90, 31, 0.28);
  margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); box-shadow: 0 0 10px rgba(255,90,31,0.5); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.7)} }

.hero-h {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 7.2vw, 96px); line-height: 0.96;
  letter-spacing: 0; text-transform: uppercase; margin: 0;
  color: var(--ink);
}
.hero-h .grad {
  background: var(--grad-rush);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-h .skew { display: inline-block; transform: skewX(-9deg); }
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; color: var(--ink-72);
  max-width: 460px; margin: 22px 0 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.hero-trust span {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-50); display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust span::before { content: "▸"; color: var(--flame); }

/* Scoreboard / jackpot panel (glass on dark) */
.scoreboard {
  position: relative; border-radius: 22px; padding: 30px 28px 26px;
  background: #fff;
  border: 1px solid var(--ink-08);
  box-shadow: var(--card-shadow);
}
.scoreboard-tag { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--volt); }
.scoreboard-amt {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 3.6vw, 48px); line-height: 1; letter-spacing: 0;
  margin: 10px 0 4px; font-variant-numeric: tabular-nums;
  background: var(--grad-rush);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.scoreboard-unit { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-72); }
.scoreboard-hr { height: 1px; background: var(--ink-08); margin: 22px 0; }
.scoreboard-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.scoreboard-row + .scoreboard-row { margin-top: 12px; }
.scoreboard-row .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-50); }
.scoreboard-row .v { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); font-variant-numeric: tabular-nums; }
.scoreboard-row .v.live { color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; }
.scoreboard-row .v.live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.6s ease-in-out infinite; }
.scoreboard .btn-pop-block { margin-top: 24px; }

/* LED live-floor ticker */
.led {
  position: absolute;
  z-index: 2;
  left: -6vw;
  right: -6vw;
  top: 50%;
  height: var(--band-height);
  box-sizing: border-box;
  padding: 0 6vw;
  display: flex; align-items: center; gap: 0; overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(25, 11, 43, 0.08);
  border-bottom: 1px solid rgba(25, 11, 43, 0.08);
  box-shadow: 0 16px 34px rgba(25, 11, 43, 0.1);
  transform: translateY(-50%) skewY(var(--band-angle));
}
.tape-viewport { position: relative; flex: 1; align-self: stretch; min-width: 0; overflow: hidden;
  display: flex; align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
#winners-marquee {
  display: flex; align-items: center; gap: 36px; width: max-content; min-height: var(--band-height);
  white-space: nowrap; will-change: transform;
  animation: led-roll 28s linear infinite;
}
.led:hover #winners-marquee { animation-play-state: paused; }
@keyframes led-roll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tape-win { flex-shrink: 0; display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 13px; line-height: 1; color: var(--ink-72); }
.tape-win-amt { font-family: var(--display); font-weight: 800; color: var(--flame); letter-spacing: 0.02em; }
.tape-win-name { color: var(--ink); }
.tape-win-sep { color: var(--ink-32); }

/* ============================================================================
   KINETIC MARQUEE BAND (divider)
============================================================================ */
.band {
  --band-height: clamp(48px, 5vw, 62px);
  --band-space: clamp(58px, 7vw, 96px);
  --band-angle: 4deg;
  position: relative; overflow: hidden;
  min-height: calc(var(--band-height) + var(--band-space) + var(--band-space));
  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 18%, #faf9ff 48%, var(--bg) 100%);
  margin: 0;
}
.band-track {
  position: absolute;
  z-index: 1;
  left: -6vw;
  right: -6vw;
  top: 50%;
  height: var(--band-height);
  background: var(--grad-rush);
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.18);
  overflow: hidden;
  transform: translateY(-50%) skewY(calc(var(--band-angle) * -1));
}
.band-track-inner {
  display: flex; align-items: center; gap: 0; width: max-content; min-height: var(--band-height); white-space: nowrap;
  will-change: transform;
  animation: band-roll 30s linear infinite;
}
.band:hover .band-track-inner { animation-play-state: paused; }
@keyframes band-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.band-track-inner span {
  font-family: var(--display); font-weight: 800; font-size: clamp(16px, 2vw, 24px);
  line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
  min-height: var(--band-height); padding: 0; display: inline-flex; align-items: center;
}
.band-track-inner span::after { content: "✦"; margin: 0 28px; color: rgba(255,255,255,0.55); }

/* ============================================================================
   SECTION HEADINGS
============================================================================ */
.section { padding: clamp(20px, 4vw, 40px) 0; }
#games {
  position: relative;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(28px, 5vw, 52px);
}
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: clamp(26px, 4vw, 44px); }
.sec-head.center { justify-content: center; text-align: center; }
.kicker {
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--flame);
  display: block; margin-bottom: 12px;
}
.sec-h {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 4.4vw, 56px); line-height: 1; letter-spacing: 0;
  text-transform: uppercase; color: var(--ink); margin: 0;
}
.sec-h .grad { background: var(--grad-rush); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.sec-sub, .vip-sub { font-size: 15px; line-height: 1.65; color: var(--ink-72); max-width: 520px; margin: 14px 0 0; }

/* ============================================================================
   GAMES — filter chips + grid + tiles
============================================================================ */
.chip-tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 26px; }
.chip-tab {
  padding: 11px 18px; min-height: 44px;
  background: #fff; border: 1px solid var(--ink-16);
  border-radius: 11px; font-family: var(--display); font-weight: 700;
  color: var(--ink-72); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: all .16s;
}
.chip-tab:hover { color: var(--ink); border-color: var(--flame); }
.chip-tab.active { color: #fff; background: var(--grad-rush); border-color: transparent; box-shadow: 0 8px 18px rgba(255,90,31,0.32); }

.coll-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.game-tile {
  position: relative; display: block; border-radius: 18px; padding: 10px;
  background: var(--panel);
  border: 1px solid var(--ink-08); cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: transform .25s, border-color .2s, box-shadow .25s;
}
.game-tile:hover { transform: translateY(-6px); border-color: rgba(255, 90, 31, 0.45); box-shadow: 0 24px 48px rgba(25,11,43,0.14), 0 0 28px rgba(255, 90, 31, 0.16); }
.tile-art-wrap { position: relative; width: 100%; padding-bottom: 100%; border-radius: 13px; overflow: hidden; }
.tile-art-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; }
.game-tile:hover .tile-art-wrap img { transform: scale(1.07); filter: saturate(1.18); }
.tile-grad { position: absolute; inset: 0; background-image: var(--tile-grad); opacity: 0.28; mix-blend-mode: overlay; }
.tile-art-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 66%, rgba(10,7,16,0.5) 100%); }
.tile-tag {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  padding: 5px 11px; border-radius: 8px;
  background: rgba(10, 7, 16, 0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--display); font-weight: 800; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); border: 1px solid rgba(255, 179, 0, 0.4);
}
.tile-tag-hot { color: #fff; background: var(--grad-rush); border-color: transparent; }
.tile-info { display: flex; flex-direction: column; gap: 10px; padding: 14px 6px 4px; }
.tile-title {
  font-family: var(--display); font-weight: 700; font-size: clamp(15px, 0.4vw + 13px, 18px);
  line-height: 1.15; letter-spacing: 0; text-transform: uppercase; color: var(--ink); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.3em;
}
.tile-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tile-meta { display: flex; align-items: center; gap: 8px; min-width: 0; flex-wrap: wrap; }
.tile-provider { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-50); white-space: nowrap; }
.tile-cat { font-family: var(--display); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--flame); padding: 3px 9px; border-radius: 7px; background: rgba(255, 90, 31, 0.1); border: 1px solid rgba(255, 90, 31, 0.28); white-space: nowrap; }
.tile-play { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: var(--grad-rush); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 14px rgba(255, 90, 31, 0.4); transition: transform .2s; }
.game-tile:hover .tile-play { transform: scale(1.12) rotate(-4deg); }
.tile-play svg { width: 16px; height: 16px; margin-left: 1px; }

/* ============================================================================
   STATS BAND
============================================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border-radius: 20px; overflow: hidden; background: var(--ink-08);
  border: 1px solid var(--ink-08); box-shadow: var(--card-shadow);
}
.stat { padding: 30px 24px; text-align: center; background: var(--panel); }
.stat-n { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); line-height: 1; letter-spacing: 0; font-variant-numeric: tabular-nums;
  background: var(--grad-rush); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat-l { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-50); margin-top: 10px; }

/* ============================================================================
   HOW IT WORKS — voltage track
============================================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--magenta), var(--flame), var(--gold)); opacity: 0.5; z-index: 0; }
.step { position: relative; z-index: 1; padding: 30px 26px; border-radius: 20px; background: var(--panel); border: 1px solid var(--ink-08); box-shadow: var(--card-shadow); }
.step-node { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 22px; color: #fff; background: var(--grad-rush); box-shadow: 0 8px 22px rgba(255,90,31,0.35); margin-bottom: 20px; transform: skewX(-7deg); }
.step-node span { transform: skewX(7deg); }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--ink); margin: 0 0 10px; }
.step p { font-size: 14px; line-height: 1.65; color: var(--ink-72); margin: 0; }

/* ============================================================================
   VIP TIERS
============================================================================ */
.vip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.vip-card { position: relative; padding: 30px 28px; border-radius: 22px; background: var(--panel); border: 1px solid var(--ink-08); box-shadow: var(--card-shadow); display: flex; flex-direction: column; }
.vip-card-feature {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--grad-rush) border-box;
  box-shadow: 0 22px 54px rgba(255, 31, 107, 0.2);
}
.vip-card > * { position: relative; z-index: 1; }
.vip-tag { align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--volt); padding: 6px 13px; border: 1px solid rgba(139,61,255,0.3); border-radius: 999px; background: rgba(139,61,255,0.08); margin-bottom: 18px; }
.vip-card-feature .vip-tag { color: #fff; background: var(--grad-rush); border-color: transparent; }
.vip-name { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); line-height: 1; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.vip-desc { font-size: 14px; line-height: 1.6; color: var(--ink-72); margin: 0 0 18px; }
.vip-list { list-style: none; padding: 0; margin: 0 0 18px; }
.vip-list li { font-size: 13.5px; color: var(--ink); padding: 11px 0 11px 26px; border-bottom: 1px solid var(--ink-08); position: relative; }
.vip-list li:last-child { border-bottom: none; }
.vip-list li::before { content: "⚡"; position: absolute; left: 0; top: 10px; font-size: 13px; filter: drop-shadow(0 0 6px rgba(255,179,0,0.6)); }
.vip-score { margin-top: auto; font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-50); padding-top: 16px; border-top: 1px solid var(--ink-08); }
.vip-score strong { color: var(--flame); font-weight: 800; }

/* ============================================================================
   FAQ
============================================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-left { position: sticky; top: 90px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.qa { border-radius: 16px; background: var(--panel); border: 1px solid var(--ink-08); box-shadow: var(--card-shadow); overflow: hidden; }
.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--ink); list-style: none; transition: color .2s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--flame); }
.qa-mark { width: 26px; height: 26px; border-radius: 8px; border: 1.5px solid rgba(255,90,31,0.4); position: relative; flex-shrink: 0; transition: all .25s; }
.qa-mark::before, .qa-mark::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--flame); border-radius: 1px; }
.qa-mark::before { width: 11px; height: 2px; transform: translate(-50%,-50%); }
.qa-mark::after { width: 2px; height: 11px; transform: translate(-50%,-50%); transition: transform .25s; }
.qa[open] .qa-mark { background: var(--grad-rush); border-color: transparent; }
.qa[open] .qa-mark::before, .qa[open] .qa-mark::after { background: #fff; }
.qa[open] .qa-mark::after { transform: translate(-50%,-50%) rotate(90deg); }
.qa p { padding: 0 24px 22px; font-size: 14px; line-height: 1.7; color: var(--ink-72); margin: 0; }
.qa p strong { color: var(--ink); }

/* ============================================================================
   BIG CTA BAND (dark island with meteors)
============================================================================ */
.cta-final {
  position: relative; overflow: hidden; border-radius: 28px;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px); margin: clamp(40px,6vw,80px) 0 0;
  background: linear-gradient(135deg, #1f0b38, #34145a);
  color: #fdfaff;
  --ink: #fdfaff; --ink-72: rgba(253,250,255,0.74);
}
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(255,90,31,0.34), transparent 55%), radial-gradient(circle at 10% 92%, rgba(139,77,255,0.34), transparent 50%); }
.cta-final > * { position: relative; z-index: 2; }
.cta-final .meteors { z-index: 1; }
.cta-final h2 { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 5vw, 64px); line-height: 0.98; letter-spacing: 0; text-transform: uppercase; color: #fff; margin: 0; max-width: 14ch; }
.cta-final h2 .grad { background: linear-gradient(100deg, #ff5d97, #ff7a3c 52%, #ffce5e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.cta-final p { font-size: 16px; color: rgba(253,250,255,0.78); margin: 18px 0 30px; max-width: 46ch; }

/* ============================================================================
   FOOTER
============================================================================ */
.footer { padding: clamp(48px, 6vw, 72px) 0 36px; border-top: 1px solid var(--ink-08); background: #efeaf7; margin-top: 0; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px); display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 44px; align-items: start; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.03em; color: var(--ink-72); margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-links a { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-72); display: inline-flex; align-items: center; min-height: 44px; }
.footer-links a:hover { color: var(--flame); }
.footer-rg { display: flex; flex-direction: column; gap: 12px; }
.footer-rg-label { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
.footer-rg-logos { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.footer-rg-logos a { display: inline-flex; opacity: 0.62; transition: opacity .2s; }
.footer-rg-logos a:hover { opacity: 1; }
.footer-rg-logos img { height: 30px; width: auto; filter: brightness(0); }
.footer-disclaimer { grid-column: 1 / -1; font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-50); margin: 30px 0 0; padding-top: 24px; border-top: 1px solid var(--ink-08); line-height: 1.7; }

/* dock cta (mobile) */
.dock-cta { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60; display: none; }

/* ============================================================================
   COOKIE BANNER
============================================================================ */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #ffffff; border-top: 1px solid var(--ink-08); box-shadow: 0 -10px 30px rgba(25,11,43,0.1); transform: translateY(100%); transition: transform .25s ease; }
.cookie-banner.active { transform: translateY(0); }
.cookie-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; max-width: var(--wrap); margin: 0 auto; padding: 16px clamp(18px, 4vw, 44px); flex-wrap: wrap; }
.cookie-banner-text { margin: 0; font-size: 13px; color: var(--ink-72); flex: 1; min-width: 280px; }
.cookie-banner-text a { color: var(--flame); }
.cookie-banner-actions { display: flex; align-items: center; gap: 12px; }
.cookie-banner-link { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-72); }
.cookie-banner-dismiss { background: none; border: none; color: var(--ink-50); cursor: pointer; font-size: 18px; padding: 6px 10px; }
.cookie-banner-dismiss:hover { color: var(--ink); }

/* ============================================================================
   MODAL + FORM (light)
============================================================================ */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(25, 11, 43, 0.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.active { display: flex; animation: modal-fade .2s ease; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal-panel { position: relative; background: #ffffff; border-radius: 22px; padding: 36px 32px; width: 100%; max-width: 460px; box-shadow: 0 30px 80px rgba(25,11,43,0.35); animation: modal-pop .25s cubic-bezier(.2,.8,.25,1); max-height: 92vh; overflow-y: auto; }
.modal-panel::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px; background: var(--grad-rush); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.7; }
@keyframes modal-pop { from { transform: translateY(20px) scale(0.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--ink-50); font-size: 26px; cursor: pointer; line-height: 1; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .15s; z-index: 2; }
.modal-close:hover { background: var(--ink-08); color: var(--ink); }
.modal-panel h3 { position: relative; z-index: 1; font-family: var(--display); font-weight: 800; font-size: 27px; letter-spacing: 0; text-transform: uppercase; color: var(--ink); margin: 0 0 8px; line-height: 1.05; }
.modal-lede { position: relative; z-index: 1; font-size: 13.5px; color: var(--ink-72); margin: 0 0 24px; }
.age-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }

.form-row { margin-bottom: 18px; position: relative; z-index: 1; }
.form-row label { display: block; font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-72); margin-bottom: 8px; }
.form-row input, .form-row select { width: 100%; padding: 14px 16px; background: #faf8ff; border: 1.5px solid var(--ink-16); border-radius: 12px; color: var(--ink); font-size: 15px; font-family: var(--ui); transition: border-color .15s, box-shadow .15s, background .15s; }
.form-row input::placeholder { color: var(--ink-32); }
.form-row input:focus, .form-row select:focus { outline: none; border-color: var(--flame); background: #fff; box-shadow: 0 0 0 3px rgba(255,90,31,0.16); }
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff5a1f' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 42px; }
.form-row select option { background: #fff; color: var(--ink); }
.field-invalid input, .field-invalid select { border-color: var(--magenta); }
.field-error, .form-error { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.02em; color: var(--magenta); margin: 6px 0 0; min-height: 1em; }
.form-success { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.02em; color: #00936e; margin: 6px 0 0; }
.dob-grid { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 8px; }
.dob-cell select { padding: 14px 12px; }
.dob-cell-year select { padding-right: 36px; }
.dob-hint { color: var(--ink-50); letter-spacing: 0.02em; text-transform: none; font-weight: 500; }
.dob-row.dob-invalid select { border-color: var(--magenta); }
.dob-error { font-family: var(--mono); font-size: 11.5px; color: var(--magenta); margin: 8px 0 0; min-height: 1em; }

/* ============================================================================
   LEGAL PAGES (light)
============================================================================ */
.legal-body { background: var(--bg); color: var(--ink); }
.legal-masthead { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px clamp(18px, 4vw, 44px); border-bottom: 1px solid var(--ink-08); background: #fff; }
.legal-masthead img { height: 40px; width: auto; }
.legal-masthead-nav { display: flex; align-items: center; gap: 12px; }
.legal-masthead-nav a {
  font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-72); text-decoration: none;
}
.legal-masthead-nav a:hover { color: var(--flame); }
.legal-masthead-nav a[aria-current="page"] { color: var(--flame); }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px clamp(18px, 4vw, 32px) 90px; }
.legal-wrap h1 { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 5vw, 60px); letter-spacing: 0; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; line-height: 1; }
.legal-wrap h2 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: 0; text-transform: uppercase; margin: 46px 0 14px; line-height: 1.15;
  background: var(--grad-rush); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.legal-wrap h3 { font-family: var(--display); font-weight: 700; font-size: 18px; text-transform: uppercase; margin: 28px 0 10px; color: var(--ink); }
.legal-wrap p { font-size: 14.5px; line-height: 1.75; color: var(--ink-72); margin: 0 0 16px; }
.legal-wrap p strong { color: var(--ink); }
.legal-wrap a { color: var(--flame); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap a:hover { color: var(--magenta); }
.legal-wrap ul { font-size: 14.5px; line-height: 1.75; color: var(--ink-72); padding-left: 22px; margin: 0 0 20px; }
.legal-wrap li { margin-bottom: 8px; }
.callout-box { padding: 22px 26px; margin: 24px 0 32px; background: #fff; border: 1px solid rgba(255,90,31,0.22); border-left: 3px solid var(--flame); border-radius: 12px; box-shadow: var(--card-shadow); font-size: 14.5px; line-height: 1.7; color: var(--ink); }
.callout-box strong { color: var(--flame); }
.contact-grid { display: grid; gap: 16px; margin: 8px 0 28px; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { padding: 20px 22px; background: #fff; border: 1px solid var(--ink-08); border-radius: 12px; box-shadow: var(--card-shadow); }
.contact-card h3 { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin: 0 0 10px; line-height: 1.2; }
.contact-card p { font-size: 14px; line-height: 1.65; color: var(--ink-72); margin: 0 0 10px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-form { max-width: 520px; margin: 8px 0 0; padding: 24px; background: #fff; border: 1px solid var(--ink-08); border-radius: 14px; box-shadow: var(--card-shadow); }
.contact-form .form-row textarea { width: 100%; padding: 14px 16px; background: #faf8ff; border: 1.5px solid var(--ink-16); border-radius: 12px; color: var(--ink); font-size: 15px; font-family: var(--ui); line-height: 1.5; resize: vertical; min-height: 140px; transition: border-color .15s, box-shadow .15s, background .15s; }
.contact-form .form-row textarea:focus { outline: none; border-color: var(--flame); background: #fff; box-shadow: 0 0 0 3px rgba(255,90,31,0.16); }
.contact-form .form-row textarea::placeholder { color: var(--ink-32); }
.contact-submit { margin-top: 4px; }
.contact-form-note { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.02em; color: var(--ink-50); margin: 14px 0 0; line-height: 1.6; }
.rg-partners { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; padding: 24px; margin: 16px 0 24px; background: #fff; border: 1px solid var(--ink-08); border-radius: 14px; box-shadow: var(--card-shadow); }
.rg-partners img { height: 36px; width: auto; filter: brightness(0); opacity: 0.62; }

/* ============================================================================
   GAME PAGE (light)
============================================================================ */
.game-page-body { background: var(--bg); margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
.game-masthead { display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(16px, 3vw, 32px); border-bottom: 1px solid var(--ink-08); background: #fff; }
.game-masthead-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.game-masthead a { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-72); text-decoration: none; }
.game-masthead a:hover { color: var(--flame); }
.game-masthead img { height: 38px; width: auto; }
.game-frame-wrap { flex: 1; padding: 16px; }
#game-frame { width: 100%; height: 100%; min-height: 75vh; border: 1px solid var(--ink-08); border-radius: 14px; background: #fff; }

/* ============================================================================
   RESPONSIVE
============================================================================ */
@media (max-width: 1080px) {
  .topbar { grid-template-columns: 1fr auto; }
  .navglass { position: absolute; top: calc(100% + 6px); right: 0; flex-direction: column; align-items: stretch; gap: 4px; min-width: 220px; padding: 10px; border-radius: 16px; background: #fff; border: 1px solid var(--ink-08); box-shadow: var(--card-shadow); opacity: 0; visibility: hidden; transform: translateY(-10px) scale(0.98); transform-origin: top right; transition: opacity .2s, transform .28s cubic-bezier(.22,1,.36,1), visibility .2s; pointer-events: none; z-index: 60; }
  .navglass.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .navglass a { padding: 13px 16px; min-height: 48px; display: flex; align-items: center; border-radius: 11px; font-size: 15px; }
  .topbar > .enter-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .scoreboard { max-width: 460px; }
  .scoreboard-amt { font-size: clamp(28px, 5vw, 34px); }
  .coll-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .vip-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-left { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .hero-h { font-size: clamp(34px, 9vw, 48px); line-height: 0.96; }
  .hero-grid { padding-top: clamp(24px, 6vw, 40px); }
  .coll-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .dock-cta { display: block; }
  body { padding-bottom: 84px; }
  .modal-panel { padding: 28px 22px; }
  .band-track-inner span { font-size: 15px; }
  .cta-final { border-radius: 20px; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .topbar-logo img, .topbar-brand img { height: 32px; }
  .hero-h { font-size: clamp(27px, 7.6vw, 34px); letter-spacing: 0; }
  .scoreboard-amt { font-size: clamp(26px, 7vw, 38px); }
}
