:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #131313;
  --line: #1e1e1e;
  --blue: #1f8fff;
  --green: #32cd32;
  --red: #ff4400;
  --purple: #9470db;
  --gold: #ffa600;
  --text: #f5f5f5;
  --muted: #888;
  --dim: #808080;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ TICKER ============ */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 42px;
}
.ticker-label {
  background: var(--red);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.ticker-label .dot {
  width: 8px; height: 8px; background: #000; border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding-left: 32px;
}
.ticker-track span {
  display: inline-flex;
  gap: 6px;
  color: var(--muted);
}
.ticker-track b {
  color: var(--gold);
  font-weight: 700;
}
.ticker-track em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ NAV ============ */
.nav {
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
}
.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
}
.logo-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: grid;
  place-items: center;
  font-size: 13px;
  color: #000;
  font-weight: 900;
  border-radius: 4px;
}
.logo b { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green);
  color: #000;
  padding: 10px 20px;
  border: none;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  padding: 60px 32px 80px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero h1 .accent-b { color: var(--blue); }
.hero h1 .accent-g { color: var(--green); }
.hero h1 .accent-r { color: var(--red); }
.hero p.lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-primary {
  background: var(--green);
  color: #000;
  padding: 18px 32px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
  box-shadow: 0 0 0 0 var(--green);
}
.cta-primary:hover {
  background: var(--gold);
  box-shadow: 0 0 40px -8px var(--gold);
}
.cta-primary::after { content: '→'; font-size: 20px; }
.cta-secondary {
  background: transparent;
  color: var(--text);
  padding: 18px 28px;
  border: 1px solid var(--line);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.cta-secondary:hover { border-color: var(--blue); color: var(--blue); }

.trust-row {
  display: flex;
  gap: 28px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-row span::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
}

/* ============ HERO VISUAL (banner image) ============ */
.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 80px -20px rgba(148, 112, 219, 0.5);
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.hero-visual-tag .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

/* ============ HERO PANEL (unused, kept for compatibility) ============ */
.hero-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 24px;
  position: relative;
}
.hero-panel::before {
  content: 'LIVE';
  position: absolute;
  top: -1px; right: -1px;
  background: var(--red);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: 0.15em;
}
.panel-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.panel-sub {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.num-tile {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 22px);
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
}
.num-tile.hit-g { background: var(--green); color: #000; border-color: var(--green); }
.num-tile.hit-b { background: var(--blue); color: #000; border-color: var(--blue); }
.num-tile.hit-r { background: var(--red); color: #000; border-color: var(--red); }
.num-tile.hit-p { background: var(--purple); color: #000; border-color: var(--purple); }
.num-tile.hit-y { background: var(--gold); color: #000; border-color: var(--gold); }

.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.panel-stat {
  background: var(--bg-2);
  padding: 14px;
}
.panel-stat .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.panel-stat .v {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
}
.panel-stat.v-g .v { color: var(--green); }
.panel-stat.v-y .v { color: var(--gold); }

/* ============ STATS STRIP ============ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.stat-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.stat-cell:nth-child(1) .stat-num { color: var(--blue); }
.stat-cell:nth-child(2) .stat-num { color: var(--green); }
.stat-cell:nth-child(3) .stat-num { color: var(--gold); }
.stat-cell:nth-child(4) .stat-num { color: var(--red); }

/* ============ SECTION ============ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: attr(data-num);
  color: var(--dim);
}
.section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 720px;
  text-transform: uppercase;
}
.section-head p {
  color: var(--muted);
  max-width: 380px;
  font-size: 15px;
}

/* ============ GAME GRID ============ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.game-card {
  background: var(--bg-2);
  padding: 32px;
  position: relative;
  transition: background .2s;
  cursor: pointer;
}
.game-card:hover { background: var(--bg-3); }
.game-card .idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.game-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.game-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.game-card .payout {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  background: #000;
  border: 1px solid var(--green);
  color: var(--green);
  margin-bottom: 20px;
}
.game-card .arrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: var(--muted);
  transition: transform .2s, color .2s;
  display: inline-block;
}
.game-card:hover .arrow { color: var(--gold); transform: translateX(6px); }
.game-card:nth-child(1) h3 { color: var(--blue); }
.game-card:nth-child(2) h3 { color: var(--green); }
.game-card:nth-child(3) h3 { color: var(--gold); }
.game-card:nth-child(4) h3 { color: var(--purple); }
.game-card:nth-child(5) h3 { color: var(--red); }
.game-card:nth-child(6) h3 { color: var(--blue); }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.why-card .icon {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.why-card:nth-child(1) .icon { color: var(--blue); }
.why-card:nth-child(2) .icon { color: var(--green); }
.why-card:nth-child(3) .icon { color: var(--gold); }
.why-card:nth-child(4) .icon { color: var(--purple); }
.why-card h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ HOW TO ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--bg-2);
  padding: 40px 28px;
  position: relative;
}
.step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  color: var(--dim);
  transition: color .2s;
}
.step:hover .step-num { color: var(--gold); }
.step h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.step p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ============ PROMOS ============ */
.promo-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.promo {
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promo-1 {
  background: var(--green);
  color: #000;
}
.promo-2 {
  background: var(--purple);
  color: #000;
}
.promo-3 {
  background: var(--gold);
  color: #000;
}
.promo .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.promo h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.promo p { font-size: 14px; margin-bottom: 20px; opacity: 0.85; }
.promo .btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  align-self: flex-start;
}
.promo .big-num {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 180px;
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

/* ============ FAQ ============ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 32px;
  color: var(--gold);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 800px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '99.5';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(200px, 30vw, 400px);
  color: #666666;
  z-index: 0;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.final-cta h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 span { color: var(--green); }
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg);
  padding: 60px 32px 32px;
}
.foot-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-brand p {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0;
  max-width: 320px;
  line-height: 1.6;
}
.foot-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.foot-col a:hover { color: var(--text); }

.author-card {
  max-width: 1400px;
  margin: 40px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.author-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: grid; place-items: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #000;
}
.author-info .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.author-info h5 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.author-info p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.author-info a {
  color: var(--blue);
  font-size: 12px;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
}
.author-info a:hover { text-decoration: underline; }

.foot-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .disclaimer {
  max-width: 700px;
  line-height: 1.6;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 56px 32px 48px;
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--dim); }
.page-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero .updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--dim);
}
.page-hero .lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 680px;
}

/* ============ PROSE (legal / info pages) ============ */
.prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 32px 100px;
}
.prose h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 44px 0 16px;
  color: var(--gold);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin: 26px 0 10px;
  color: var(--text);
}
.prose p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.prose ul, .prose ol {
  margin: 0 0 18px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose .callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--bg-2);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.prose .callout strong { color: var(--gold); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 8px 0 40px;
}
.contact-card {
  background: var(--bg-2);
  padding: 28px;
}
.contact-card .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.contact-card .v {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}
.contact-card p { color: var(--muted); font-size: 13px; margin-bottom: 0; }
.contact-card a { color: var(--text); text-decoration: none; }
.contact-card a:hover { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { padding: 40px 20px 60px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 20px; }
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .section-head { margin-bottom: 40px; }
  .final-cta { padding: 70px 20px; }
  .page-hero { padding: 40px 20px 36px; }
  .prose { padding: 40px 20px 70px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Ticker */
  .ticker { height: 36px; }
  .ticker-label { font-size: 10px; padding: 0 10px; }
  .ticker-track { font-size: 12px; gap: 24px; animation-duration: 30s; }

  /* Nav */
  .nav { padding: 12px 16px; }
  .logo { font-size: 17px; }
  .logo-mark { width: 24px; height: 24px; font-size: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }

  /* Hero */
  .hero { padding: 32px 16px 48px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 18px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
  .hero h1 { font-size: clamp(34px, 10vw, 56px); margin-bottom: 20px; }
  .hero p.lead { font-size: 14px; margin-bottom: 28px; }
  .cta-row { gap: 10px; margin-bottom: 28px; flex-direction: column; width: 100%; }
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
    font-size: 13px;
  }
  .trust-row { gap: 14px 20px; font-size: 11px; margin-bottom: 40px; }
  .hero-visual { aspect-ratio: 3 / 2; box-shadow: 0 0 40px -10px rgba(148, 112, 219, 0.5); }
  .hero-visual-tag { font-size: 10px; padding: 6px 10px; bottom: 10px; left: 10px; }

  /* Stats */
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 22px 16px; }
  .stat-num { font-size: clamp(24px, 6vw, 32px); }
  .stat-lbl { font-size: 10px; }

  /* Sections */
  .section { padding: 48px 16px; }
  .section-eyebrow { font-size: 10px; margin-bottom: 12px; }
  .section h2 { font-size: clamp(28px, 7vw, 38px); }
  .section-head { flex-direction: column; align-items: start; gap: 20px; margin-bottom: 32px; }
  .section-head p { font-size: 14px; }

  /* Games */
  .game-grid { grid-template-columns: 1fr; }
  .game-card { padding: 24px 20px; }
  .game-card h3 { font-size: 22px; }
  .game-card p { font-size: 13px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-card { padding: 24px 0; }
  .why-card .icon { font-size: 32px; }
  .why-card h4 { font-size: 16px; }
  .why-card p { font-size: 13px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; }
  .step { padding: 28px 20px; }
  .step-num { font-size: 56px; margin-bottom: 12px; }
  .step h4 { font-size: 16px; }
  .step p { font-size: 13px; }

  /* Promos */
  .promo { padding: 24px 20px; min-height: 200px; }
  .promo h3 { font-size: clamp(24px, 6vw, 32px); }
  .promo p { font-size: 13px; }
  .promo .big-num { font-size: 130px; right: -10px; bottom: -20px; }

  /* FAQ */
  .faq { padding: 22px 0; }
  .faq summary { font-size: 15px; gap: 12px; }
  .faq summary::after { font-size: 26px; }
  .faq p { font-size: 14px; margin-top: 12px; }

  /* Final CTA */
  .final-cta { padding: 56px 16px; }
  .final-cta::before { font-size: clamp(160px, 40vw, 260px); }
  .final-cta .eyebrow { font-size: 10px; margin-bottom: 18px; }
  .final-cta h2 { font-size: clamp(32px, 8vw, 48px); margin-bottom: 16px; }
  .final-cta p { font-size: 14px; margin-bottom: 28px; }

  /* Footer */
  footer { padding: 40px 16px 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .foot-col h5 { margin-bottom: 14px; }
  .author-card { grid-template-columns: 1fr; padding: 20px; gap: 16px; margin-top: 28px; }
  .author-avatar { width: 48px; height: 48px; font-size: 18px; }
  .author-info h5 { font-size: 15px; }
  .author-info p { font-size: 12px; }
  .foot-bottom { flex-direction: column; font-size: 11px; margin-top: 24px; gap: 10px; }

  /* Page hero / prose */
  .page-hero { padding: 28px 16px 28px; }
  .page-hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .prose { padding: 32px 16px 56px; }
  .prose h2 { font-size: clamp(18px, 6vw, 22px); margin: 32px 0 12px; }
  .contact-card { padding: 20px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-cell:last-child { border-bottom: none; }
  .trust-row { flex-direction: column; gap: 10px; align-items: flex-start; text-align: left; }
  .trust-row span { justify-content: center; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Focus styles */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
