/* SpinParty Vibez — "VIBE" Design System */

:root {
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --bg:           #0A0A10;
  --bg-2:         #0F0F18;
  --bg-card:      #131320;
  --coral:        #F4845F;
  --coral-dim:    rgba(244,132,95,0.1);
  --coral-border: rgba(244,132,95,0.3);
  --pink:         #E882B4;
  --pink-dim:     rgba(232,130,180,0.1);
  --gold:         #F5C53F;
  --gold-dim:     rgba(245,197,63,0.1);
  --green:        #6BBF7A;
  --text:         #F0EDE8;
  --text-soft:    #BDB8B0;
  --muted:        #6A6A80;
  --border:       rgba(255,255,255,0.07);
  --border-coral: rgba(244,132,95,0.25);
  --radius:       6px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-pill:  100px;
  --maxw:         1280px;
  --hh:           68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--coral); color: #0A0A10;
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── HIGHLIGHT UTILITIES ── */
.hl {
  background: linear-gradient(135deg, #F4845F, #E882B4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hl-gold {
  background: linear-gradient(135deg, #F5C53F, #f97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hl-v { color: #F4845F; }
.hl-g { color: #6BBF7A; }

/* ── GRAIN TEXTURE ── */
.grain-section::after,
.hero::after,
.tiers-section::before,
.final-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.35;
}

/* ── GRAIN OVERLAY (hero child div) ── */
.grain-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.35;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; outline: none;
  font-family: var(--font-body); font-weight: 700;
  text-decoration: none; transition: all .22s ease;
  white-space: nowrap; user-select: none; position: relative; overflow: hidden;
}

.btn-primary {
  background: #F4845F;
  color: #0A0A10;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(244,132,95,0.35);
}
.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
  color: #0A0A10;
  text-decoration: none;
}
.btn-primary:active { transform: scale(1); }

.btn-primary-lg {
  padding: 17px 44px;
  font-size: 17px;
}

.btn-gold {
  background: #F5C53F;
  color: #0A0A10;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,197,63,0.35);
}
.btn-gold:hover {
  transform: scale(1.03);
  color: #0A0A10;
  text-decoration: none;
}
.btn-gold-lg {
  padding: 17px 44px;
  font-size: 17px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--text);
  text-decoration: none;
}

.btn-block { width: 100%; }

/* ════════════════════════════════════════
   STAT STRIP  (replaces promo bar)
════════════════════════════════════════ */
.stat-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: relative;
  z-index: 100;
}
.ss-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.ss-item-live { gap: 10px; align-items: center; }
.ss-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.ss-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ss-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}
.ss-cta {
  margin-left: 24px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   HEADER — floating pill
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  height: calc(var(--hh) + 16px);
  background: transparent;
  display: flex;
  align-items: center;
  padding: 8px 16px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 8px 0 24px;
  height: var(--hh);
  background: rgba(10,10,16,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: background .3s, border-color .3s;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand em { font-style: normal; color: var(--coral); }
.brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px rgba(244,132,95,0.6);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}
.site-nav { display: flex; gap: 2px; margin-left: auto; }
.site-nav a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: all .2s; text-decoration: none; letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--text); background: rgba(244,132,95,0.1); }
.header-end { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.live-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; color: var(--muted);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--text); padding: 6px;
  line-height: 0;
  transition: color .2s;
}
/* hamburger → X via CSS when aria-expanded=true */
#nav-toggle rect { transition: transform .3s, opacity .2s; }
#nav-toggle[aria-expanded="true"] rect:nth-child(1) {
  transform-origin: 11px 5px; transform: rotate(45deg);
}
#nav-toggle[aria-expanded="true"] rect:nth-child(2) { opacity: 0; }
#nav-toggle[aria-expanded="true"] rect:nth-child(3) {
  transform-origin: 11px 17px; transform: rotate(-45deg);
}
/* When nav overlay is open: pill turns coral */
body:has(#nav-toggle[aria-expanded="true"]) .header-inner {
  background: rgba(244,132,95,0.97);
  border-color: rgba(10,10,16,0.15);
}
body:has(#nav-toggle[aria-expanded="true"]) .brand { color: #0A0A10; }
body:has(#nav-toggle[aria-expanded="true"]) .brand em { color: #fff; }
body:has(#nav-toggle[aria-expanded="true"]) .brand-dot { background: #0A0A10; box-shadow: none; }
body:has(#nav-toggle[aria-expanded="true"]) .hamburger { color: #0A0A10; }
body:has(#nav-toggle[aria-expanded="true"]) .header-end .btn-primary {
  background: #0A0A10; color: var(--coral); box-shadow: none;
}

/* ══════════════════════════════════
   HERO — contained split layout
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,132,95,0.13) 0%, rgba(232,130,180,0.06) 50%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none; z-index: 1;
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
}

.hero-left {
  display: flex; flex-direction: column;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 4px;
}
.hero-live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted);
  font-weight: 500; letter-spacing: 0.06em;
}

.hero-headline {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 24px;
}
.hero-hl-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
}
.hero-hl-accent {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--coral);
}

.hero-badge-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.hero-badge-pill {
  display: inline-flex; align-items: center;
  background: var(--coral-dim);
  border: 1px solid var(--coral-border);
  color: var(--coral);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.hero-desc {
  font-size: 16px; color: var(--text-soft);
  line-height: 1.65; max-width: 460px;
  margin-bottom: 28px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 5px 12px; border-radius: 4px;
  font-size: 12px; color: var(--muted);
  font-weight: 400; letter-spacing: 0.02em;
}
.trust-chip strong { font-weight: 700; color: var(--coral); }
.trust-chip-val { font-weight: 700; color: var(--coral); }

.hero-right {
  display: flex; align-items: center; justify-content: center;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}
.hero-sg-item {
  background: rgba(255,255,255,0.025);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 5px;
  transition: background .2s;
}
.hero-sg-item:hover { background: rgba(244,132,95,0.07); }
.hero-sg-val {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-sg-lbl {
  font-size: 10px; font-weight: 600;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.10em;
}

/* ══════════════════════════════════
   FEATURES STRIP
══════════════════════════════════ */
.features-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-card {
  padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.06);
  transition: background .22s; position: relative;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
  opacity: 0; transition: opacity .22s;
}
.feature-card:hover { background: rgba(244,132,95,0.05); }
.feature-card:hover::before { opacity: 1; }
.feature-card:last-child { border-right: none; }
.feature-badge {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 3px;
  margin-bottom: 12px; background: rgba(244,132,95,0.10); color: var(--coral);
  border: 1px solid rgba(244,132,95,0.20);
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; color: var(--text); }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 400; }

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 44px; display: flex; align-items: center;
  overflow: hidden; position: relative; z-index: 1;
}
.ticker-label-block {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral);
  padding: 0 20px; border-right: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-scroll {
  display: flex; white-space: nowrap;
  animation: tickerRun 42s linear infinite;
}
@keyframes tickerRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 13px; color: var(--text-soft); padding: 0 24px; }
.ticker-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  margin-right: 8px; vertical-align: middle;
}
.ticker-val { font-weight: 700; color: var(--coral); }
.ticker-sep { color: var(--border); }

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-dim);
  border: 1px solid var(--coral-border);
  padding: 5px 16px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 1.05;
  margin-bottom: 16px;
}
.section-heading .hl {
  background: linear-gradient(135deg, #F4845F, #E882B4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-heading .hl-gold {
  background: linear-gradient(135deg, #F5C53F, #f97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ════════════════════════════════════════
   GAMES
════════════════════════════════════════ */
.games-section { padding: 80px 0; position: relative; z-index: 1; }
.games-head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 40px; flex-wrap: wrap;
}
.games-head-left .section-kicker { display: block; margin-bottom: 10px; }
.games-head-left .section-heading { margin-bottom: 0; text-align: left; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover { color: var(--text); border-color: var(--coral-border); }
.filter-tab.active {
  background: var(--coral);
  border-color: transparent;
  color: #0A0A10;
}
.games-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}

.game-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all .25s; cursor: pointer;
  animation: cardIn .4s ease both;
  animation-delay: calc(var(--i, 0) * 40ms);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.game-card:hover {
  border-color: var(--coral-border);
  transform: translateY(-4px);
  text-decoration: none; color: inherit;
  box-shadow: 0 8px 28px rgba(244,132,95,0.12);
}
.game-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.game-cover { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.game-card:hover .game-cover { transform: scale(1.06); }
.game-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  color: rgba(255,255,255,0.3); z-index: 1; text-transform: uppercase;
}
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(244,132,95,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s; z-index: 2;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn {
  background: #fff; color: var(--coral);
  font-weight: 700; font-family: var(--font-body);
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-size: 14px;
}
.game-info { padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.game-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral);
}
.game-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 400; text-transform: uppercase;
}
.game-meta { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════
   WINNERS BAND
════════════════════════════════════════ */
.winners-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 52px; display: flex; align-items: center;
  overflow: hidden; position: relative; z-index: 1;
}
.wins-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral);
  padding: 0 20px; border-right: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
}
.wins-track { flex: 1; overflow: hidden; }
.wins-scroll {
  display: flex; white-space: nowrap;
  animation: winsRun 52s linear infinite;
}
@keyframes winsRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.win-item { font-size: 13px; color: var(--text-soft); padding: 0 20px; }
.win-sep {
  display: inline-block; width: 1px; height: 12px;
  background: var(--border); margin-right: 20px; vertical-align: middle;
}
.win-name { font-weight: 600; }
.win-amount { font-weight: 700; color: var(--coral); }
.wins-stat { padding: 0 24px; border-left: 1px solid var(--border); white-space: nowrap; flex-shrink: 0; }
.wins-stat-num {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--coral); display: block; line-height: 1;
}
.wins-stat-lbl {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ════════════════════════════════════════
   HOW IT WORKS — EDITORIAL LARGE NUMBER LAYOUT
════════════════════════════════════════ */
.how-section { padding: 100px 0; position: relative; z-index: 1; }
.how-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.how-timeline::before { display: none; }

.how-step {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 48px; align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step:nth-child(even) { direction: rtl; }
.how-step:nth-child(even) .step-body { direction: ltr; text-align: left; }

.step-circle {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 400; color: var(--coral);
  opacity: 0.25; line-height: 1; text-align: center;
  width: 100%; height: auto;
  background: none; border: none; border-radius: 0; margin: 0;
}
.step-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 400; text-transform: uppercase;
  margin-bottom: 12px; color: var(--text);
  letter-spacing: 0.02em;
}
.step-desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; max-width: 480px;
}
.step-desc .hl {
  color: var(--coral); font-weight: 600;
  -webkit-text-fill-color: initial; background: none;
}

/* ════════════════════════════════════════
   VIP TIERS — HORIZONTAL STACKED EDITORIAL ROWS
════════════════════════════════════════ */
.tiers-section {
  padding: 100px 0;
  position: relative; overflow: hidden;
  z-index: 1;
}

.tiers-grid { display: flex; flex-direction: column; gap: 2px; }

.tier-card {
  background: var(--bg-card);
  border: none; border-radius: 0;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0; align-items: stretch; overflow: hidden;
  transition: all .25s;
  border-left: 5px solid;
}
.tier-orbit  { border-left-color: var(--coral); }
.tier-nova   { border-left-color: var(--pink); }
.tier-stellar {
  border-left-color: var(--gold);
  background: rgba(245,197,63,0.03);
}

.tier-header {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
  border-bottom: none;
  display: flex; flex-direction: column;
  justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
}
.tier-roman {
  font-family: var(--font-display);
  font-size: 100px; font-weight: 400;
  opacity: 0.06; line-height: 1;
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text);
}
.tier-name {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em;
  position: relative; z-index: 1;
}
.tier-orbit  .tier-name { color: var(--coral); }
.tier-nova   .tier-name { color: var(--pink); }
.tier-stellar .tier-name {
  background: linear-gradient(135deg, var(--gold), #f97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tier-body {
  padding: 40px 48px;
  display: flex; align-items: center; gap: 60px;
}
.tier-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; max-width: 280px;
}
.tier-perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.tier-perks li {
  font-size: 13px; color: var(--text-soft);
  display: flex; align-items: center; gap: 10px;
}
.tier-perks li::before {
  content: '—'; color: var(--coral);
  font-weight: 700; flex-shrink: 0;
}
.tier-nova   .tier-perks li::before { color: var(--pink); }
.tier-stellar .tier-perks li::before { color: var(--gold); }
.tier-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); color: var(--muted);
}
.tier-card:hover { border-left-width: 8px; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section { padding: 100px 0; position: relative; z-index: 1; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-intro .section-heading {
  text-align: left;
  font-size: clamp(36px, 5vw, 56px);
}
.faq-intro .section-kicker { display: block; margin-bottom: 12px; }
.faq-intro-note { font-size: 15px; color: var(--muted); margin-top: 16px; line-height: 1.7; }
.faq-intro-note a { color: var(--coral); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden; transition: all .2s;
}
.faq-item[open] { border-left-color: var(--coral); }
.faq-item summary {
  font-weight: 500; font-size: 15px;
  padding: 18px 20px; cursor: pointer;
  list-style: none;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--coral); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  transition: transform .3s; color: var(--muted);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--coral); }
.faq-answer { padding: 0 20px 18px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-answer a { color: var(--coral); }

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-section {
  padding: 0;
  background: var(--coral);
  position: relative; overflow: hidden;
}
.final-section::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.35;
}
.final-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 100px 24px; text-align: center;
  position: relative; z-index: 2;
}
.final-kicker {
  color: rgba(10,10,16,0.6);
  background: rgba(10,10,16,0.1);
  border: 1px solid rgba(10,10,16,0.15);
  border-radius: var(--radius-pill);
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 16px; margin-bottom: 20px;
}
.final-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400; letter-spacing: 0.01em;
  text-transform: uppercase; line-height: 1.0;
  margin-bottom: 20px; color: #0A0A10;
}
.final-heading .hl-gold {
  background: none; -webkit-text-fill-color: initial; color: white;
}
.final-heading .hl {
  background: none; -webkit-text-fill-color: initial; color: white;
}
.final-body {
  font-size: 16px; color: rgba(10,10,16,0.75);
  line-height: 1.7; max-width: 500px; margin: 0 auto 36px;
}
.final-body strong { color: #0A0A10; font-weight: 700; }
.final-ctas {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap; margin-bottom: 24px;
}
.final-ctas .btn-gold {
  background: #0A0A10; color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.final-ctas .btn-gold:hover { background: #1a1a28; }
.final-ctas .btn-ghost {
  border-color: rgba(10,10,16,0.3); color: rgba(10,10,16,0.8);
}
.final-ctas .btn-ghost:hover { border-color: #0A0A10; color: #0A0A10; }
.final-online {
  font-size: 14px; color: rgba(10,10,16,0.7);
  display: flex; align-items: center;
  justify-content: center; gap: 8px; margin-bottom: 12px;
}
.final-online .live-dot { background: #0A0A10; }
.final-age { font-size: 12px; color: rgba(10,10,16,0.55); }
.final-bg-number {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 400px);
  opacity: 0.07; color: #0A0A10;
  right: -80px; bottom: -60px;
  pointer-events: none; line-height: 1;
  letter-spacing: -0.04em;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--coral-border);
  padding: 60px 0 30px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-mark {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  margin-bottom: 12px; letter-spacing: 0.02em; text-transform: uppercase;
}
.footer-brand-mark em { font-style: normal; color: var(--coral); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--coral); text-decoration: none; }
.rg-age {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  color: var(--coral); margin-bottom: 8px;
}
.rg-lede { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.rg-entries { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rg-hotline { font-weight: 700; color: var(--coral) !important; font-size: 14px; }
.rg-ext { font-size: 12px; color: var(--muted) !important; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-excluded {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.excl-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--coral-dim); color: var(--coral);
  border: 1px solid var(--coral-border);
  padding: 3px 12px; border-radius: var(--radius-pill);
}
.excl-list { font-size: 13px; color: var(--muted); }
.footer-disclaimer {
  font-size: 12px; color: var(--muted); opacity: 0.5;
  line-height: 1.8; margin-bottom: 16px; max-width: 900px;
}
.footer-disclaimer a { color: inherit; text-decoration: underline; }
.footer-meta {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 12px; color: var(--muted); opacity: 0.5; }
.footer-build { font-size: 12px; color: var(--muted); opacity: 0.5; display: flex; gap: 16px; }

/* ════════════════════════════════════════
   MODALS
════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,10,16,0.94);
  backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.active { display: flex; }
.modal-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px; width: 100%; max-width: 480px;
  max-height: 90svh; overflow-y: auto;
  position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}
.modal-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  font-size: 20px; width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--coral-dim); color: var(--coral); border-color: var(--coral-border); }
.modal-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  margin-bottom: 8px; text-transform: uppercase; text-align: center;
}
.modal-title .hl-gold {
  background: linear-gradient(135deg, var(--gold), #f97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-lede { font-size: 15px; color: var(--muted); margin-bottom: 24px; text-align: center; }

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--text-soft); letter-spacing: 0.02em; }
.form-row input,
.form-row select,
.dob-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px; font-size: 15px;
  color: var(--text); font-family: var(--font-body);
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.dob-select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(244,132,95,0.15);
}
.form-row input::placeholder { color: var(--muted); }
.form-row select option { background: var(--bg-card); color: var(--text); }
.field-error { font-size: 12px; color: #FF4466; display: block; }
.field-invalid input,
.field-invalid select { border-color: #FF4466 !important; }
.form-error { font-size: 13px; color: #FF4466; margin-top: 8px; display: block; min-height: 18px; }
.form-success { font-size: 14px; color: var(--green); margin-top: 8px; display: block; font-weight: 700; min-height: 18px; }
.form-footer { font-size: 11px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-footer a { color: var(--coral); }
.dob-hint { color: var(--muted); font-weight: 400; }
.dob-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; }
.dob-error { font-size: 12px; color: #FF4466; display: block; margin-top: 4px; }
.dob-row.dob-invalid select { border-color: #FF4466 !important; }
/* Age gate */
.age-panel { text-align: center; max-width: 420px; }
.age-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--coral-dim);
  border: 1px solid var(--coral-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--coral);
  box-shadow: 0 0 24px rgba(244,132,95,0.25);
}
.age-big-num {
  font-family: var(--font-display);
  font-size: 84px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 10px;
}
.age-plus { color: var(--coral); }
.age-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400;
  color: var(--text); margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.age-body {
  font-size: 14px; color: var(--text-soft);
  line-height: 1.65; margin-bottom: 4px;
}
.age-actions { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 16px; }
.age-reject-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 13px;
  text-align: center; padding: 8px;
}
.age-reject-btn:hover { color: var(--text); }
.age-legal { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.6; opacity: 0.65; }

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(10,10,16,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
  padding: 16px 24px;
}
.cookie-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-text { font-size: 13px; color: var(--muted); flex: 1; line-height: 1.5; }
.cookie-text a { color: var(--coral); }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-dismiss {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 22px; line-height: 1; padding: 4px;
}
.cookie-dismiss:hover { color: var(--text); }

/* ════════════════════════════════════════
   MOBILE STICKY CTA
════════════════════════════════════════ */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  padding: 12px 16px;
  background: rgba(10,10,16,0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 120px 32px 60px; }
  .hero-hl-main, .hero-hl-accent { font-size: clamp(60px, 8vw, 95px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* ── Floating pill header on mobile ── */
  .site-header { padding: 8px 12px; }
  .header-inner { padding: 0 8px 0 18px; gap: 12px; }
  .header-end { margin-left: auto; gap: 8px; }
  .site-nav {
    display: none; /* hidden until open class */
  }
  .hamburger { display: flex; }
  .live-badge { display: none; }
  .header-end .btn-primary { display: none; }

  /* ── Full-page coral nav overlay ── */
  .site-nav.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: var(--coral);
    z-index: 399;
    padding: 80px 40px 60px;
    gap: 0;
    overflow-y: auto;
    animation: navSlideIn 0.38s cubic-bezier(0.22,1,0.36,1) both;
  }
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .site-nav.open a {
    font-family: var(--font-display);
    font-size: clamp(38px, 9vw, 56px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #0A0A10;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10,10,16,0.15);
    border-radius: 0;
    display: block;
    text-decoration: none;
    transition: opacity .15s;
    animation: navLinkIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
  }
  .site-nav.open a:nth-child(1) { animation-delay: 0.08s; }
  .site-nav.open a:nth-child(2) { animation-delay: 0.14s; }
  .site-nav.open a:nth-child(3) { animation-delay: 0.20s; }
  .site-nav.open a:nth-child(4) { animation-delay: 0.26s; }
  @keyframes navLinkIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .site-nav.open a:first-child { border-top: 1px solid rgba(10,10,16,0.15); }
  .site-nav.open a:hover { opacity: 0.6; background: transparent; }

  /* ── Stat strip mobile: scroll or 2-col ── */
  .stat-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: auto;
    padding: 10px 16px;
    gap: 0;
  }
  .stat-strip::-webkit-scrollbar { display: none; }
  .ss-item { flex-shrink: 0; min-width: 80px; padding: 4px 10px; }
  .ss-cta { display: none; }
  .ss-sep { flex-shrink: 0; }
  .ss-num { font-size: 16px; }
  .ss-label { font-size: 9px; }

  /* ── Hero ── */
  .hero-inner { padding: 100px 24px 48px; }
  .hero-hl-main, .hero-hl-accent { font-size: clamp(52px, 12vw, 80px); }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .feature-card:last-child { border-bottom: none; }
  .hero-orb { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* ── Games ── */
  .games-head { flex-direction: column; align-items: flex-start; }

  /* ── Tiers ── */
  .tiers-grid { gap: 4px; }
  .tier-card { grid-template-columns: 1fr; }
  .tier-header {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
  }
  .tier-body { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }

  /* ── How it works ── */
  .how-step { grid-template-columns: 1fr; }
  .how-step:nth-child(even) { direction: ltr; }
  .step-circle { font-size: clamp(48px, 12vw, 72px); text-align: left; }

  /* ── FAQ / Footer ── */
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
  .mobile-sticky { display: block; }
}

@media (max-width: 585px) {
  .stat-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    overflow-x: visible;
    padding: 0;
    height: auto;
  }
  .ss-sep { display: none; }
  .ss-cta { display: none; }
  .ss-item {
    background: var(--bg-2);
    flex-shrink: unset;
    min-width: unset;
    padding: 12px 16px;
    justify-content: center;
  }
  .ss-num { font-size: 18px; }
  .ss-label { font-size: 9px; }
}

/* ════════════════════════════════════════
   GAME PAGE
════════════════════════════════════════ */
.game-header {
  background: rgba(10,10,16,0.97);
  border-bottom: 1px solid var(--border);
  height: var(--hh);
  display: flex; align-items: center;
  position: relative; z-index: 100;
}
.game-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold), transparent);
}
.game-header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.game-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 8px 16px;
  background: var(--coral-dim); border: 1px solid var(--border);
  border-radius: var(--radius-pill); transition: all .15s;
}
.game-back:hover { color: var(--text); border-color: var(--coral-border); text-decoration: none; }
.game-main { display: flex; flex-direction: column; height: calc(100vh - var(--hh)); }
.game-meta-bar {
  padding: 12px 24px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--border);
  background: rgba(244,132,95,0.04);
}
.gm-left { display: flex; flex-direction: column; gap: 2px; }
.gm-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral);
}
.gm-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--text);
}
.gm-sub { font-size: 13px; color: var(--muted); }
.game-frame-wrap { flex: 1; position: relative; background: #000; }
.game-loader {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; background: var(--bg); transition: opacity .3s;
}
.game-loader.done { opacity: 0; pointer-events: none; }
.game-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--coral);
  animation: spin .75s linear infinite;
  box-shadow: 0 0 20px rgba(244,132,95,0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }
.game-loader-text {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.game-frame { width: 100%; height: 100%; border: 0; display: block; }
