/* SpinEmpire Australia 9 — Analysis Terminal */
/* prefix: a9- · flex layout · Space Grotesk + DM Sans */
/* Layout concept: split-hero · horizontal stage cards · tabbed games */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --a9-bg:           #020b12;
  --a9-bg-alt:       #050f18;
  --a9-surface:      #0a1c28;
  --a9-surface-2:    #0e2234;
  --a9-surface-3:    #132940;
  --a9-border:       rgba(0,195,160,.13);
  --a9-border-lt:    rgba(0,195,160,.30);
  --a9-border-solid: #112030;

  --a9-jade:         #00C3A0;
  --a9-jade-lt:      #40DFC0;
  --a9-jade-dk:      #008c72;
  --a9-jade-dim:     rgba(0,195,160,.12);
  --a9-jade-glow:    rgba(0,195,160,.22);

  --a9-amber:        #F5A623;
  --a9-amber-lt:     #FFD080;
  --a9-amber-dk:     #B57718;
  --a9-amber-dim:    rgba(245,166,35,.10);

  --a9-rose:         #F43F5E;
  --a9-sky:          #0EA5E9;

  --a9-text:         #b8d4e8;
  --a9-text-muted:   #4a6a82;
  --a9-text-dim:     #1c3448;

  --a9-r:            6px;
  --a9-r-md:         12px;
  --a9-r-lg:         20px;
  --a9-shadow:       0 20px 60px rgba(0,0,0,.85);
  --a9-wrap:         1200px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--a9-bg);
  color: var(--a9-text);
  line-height: 1.7;
  overflow-x: clip;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 800px 500px at 85% 5%, rgba(0,195,160,.07), transparent 55%),
    radial-gradient(ellipse 600px 400px at 10% 70%, rgba(14,165,233,.05), transparent 55%);
}

/* ── Layout ── */
.a9-wrap { max-width: var(--a9-wrap); margin: 0 auto; padding: 0 24px; }
.a9-sec { padding: 80px 0; }
.a9-sec--sm { padding: 52px 0; }
.a9-sec--alt { background: var(--a9-bg-alt); border-top: 1px solid var(--a9-border-solid); border-bottom: 1px solid var(--a9-border-solid); }
.a9-sec--surface { background: var(--a9-surface); border-top: 1px solid var(--a9-border-solid); border-bottom: 1px solid var(--a9-border-solid); }

/* ── Typography ── */
.a9-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--a9-jade);
  margin-bottom: 12px;
}
.a9-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--a9-jade); border-radius: 2px; flex-shrink: 0;
}

.a9-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px); font-weight: 700;
  color: #fff; line-height: 1.08; letter-spacing: -.025em;
  margin-bottom: 16px;
}
.a9-h1 em { color: var(--a9-jade); font-style: normal; }
.a9-h1 strong { color: var(--a9-amber-lt); }

.a9-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 38px); font-weight: 700;
  color: #fff; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 14px;
}
.a9-h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px); font-weight: 700; color: #fff; margin-bottom: 8px;
}
.a9-lead { font-size: 16px; line-height: 1.8; color: var(--a9-text-muted); margin-bottom: 28px;}
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
a { color: var(--a9-jade); text-decoration: none; transition: color .15s; }
a:hover { color: var(--a9-jade-lt); }
strong { color: var(--a9-text); font-weight: 700; }

/* ── Buttons ── */
.a9-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; font-size: 14px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: .1px;
  border-radius: var(--a9-r); border: 1.5px solid transparent;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.a9-btn:hover { transform: translateY(-2px); }
.a9-btn--jade {
  background: linear-gradient(135deg, var(--a9-jade-dk), var(--a9-jade));
  color: #001810; border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,195,160,.25);
}
.a9-btn--jade:hover { box-shadow: 0 8px 30px rgba(0,195,160,.45); color: #001810; }
.a9-btn--amber {
  background: linear-gradient(135deg, var(--a9-amber-dk), var(--a9-amber));
  color: #1a0a00; border-color: transparent;
  box-shadow: 0 4px 20px rgba(245,166,35,.22);
}
.a9-btn--amber:hover { box-shadow: 0 8px 28px rgba(245,166,35,.45); color: #1a0a00; }
.a9-btn--ghost {
  background: rgba(0,195,160,.07); color: var(--a9-jade);
  border-color: var(--a9-border-lt);
}
.a9-btn--ghost:hover { background: rgba(0,195,160,.14); }
.a9-btn--outline {
  background: transparent; color: var(--a9-text);
  border-color: var(--a9-border-solid);
}
.a9-btn--outline:hover { border-color: var(--a9-border-lt); color: var(--a9-jade); }
.a9-btn--lg  { padding: 15px 36px; font-size: 15.5px; border-radius: var(--a9-r-md); }
.a9-btn--sm  { padding: 7px 16px; font-size: 12.5px; }
.a9-btn--full { width: 100%; }

/* ── Top bar ── */
.a9-topbar {
  background: var(--a9-surface); border-bottom: 1px solid var(--a9-border-solid);
  padding: 7px 0; font-size: 12px; color: var(--a9-text-muted); text-align: center;
}
.a9-topbar span { color: var(--a9-jade); font-weight: 700; margin: 0 6px; }

/* ── Header ── */
.a9-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2,11,18,.94); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--a9-border-solid);
}
.a9-header__bar {
  max-width: var(--a9-wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 62px;
  position: relative;
}
.a9-logo { display: flex; align-items: center; flex-shrink: 0; }
.a9-logo img { height: 28px; }
.a9-nav {
  display: flex; align-items: center; gap: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.a9-nav a {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--a9-text-muted); padding: 6px 14px; border-radius: 20px;
  transition: color .15s, background .15s;
}
.a9-nav a:hover { color: var(--a9-jade); background: var(--a9-jade-dim); }
.a9-nav a.active { color: var(--a9-jade); background: var(--a9-jade-dim); }
.a9-header__cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.a9-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 34px; height: 34px; padding: 5px;
  background: none; border: none; cursor: pointer; border-radius: var(--a9-r);
}
.a9-burger span { display: block; width: 100%; height: 2px; background: var(--a9-text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.a9-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.a9-burger.is-open span:nth-child(2) { opacity: 0; }
.a9-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ── */
.a9-overlay { display: none; position: fixed; inset: 0; z-index: 149; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.a9-overlay.is-open { display: block; }
.a9-drawer {
  position: fixed; top: 0; right: -100%; z-index: 150;
  width: min(320px, 92vw); height: 100%;
  background: var(--a9-surface); border-left: 1px solid var(--a9-border-solid);
  display: flex; flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1); overflow-y: auto;
}
.a9-drawer.is-open { right: 0; }
.a9-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--a9-border-solid); }
.a9-drawer__close { background: none; border: none; cursor: pointer; color: var(--a9-text-muted); font-size: 20px; padding: 4px; border-radius: 4px; transition: color .15s; }
.a9-drawer__close:hover { color: var(--a9-text); }
.a9-drawer__nav { display: flex; flex-direction: column; padding: 16px 20px; border-bottom: 1px solid var(--a9-border-solid); }
.a9-drawer__nav a { font-size: 15px; font-weight: 600; color: var(--a9-text-muted); padding: 10px 12px; border-radius: var(--a9-r); margin-bottom: 2px; transition: color .15s, background .15s; }
.a9-drawer__nav a:hover, .a9-drawer__nav a.active { color: var(--a9-jade); background: var(--a9-jade-dim); }
.a9-drawer__btns { display: flex; flex-direction: column; gap: 8px; padding: 16px 20px; }

/* ════════════════════════════════════
   SPLIT HERO — image full-bleed, panel overlay left
   ════════════════════════════════════ */
.a9-split-hero { position: relative; min-height: 520px; overflow: hidden; }

.a9-split-hero__img {
  position: absolute; inset: 0; z-index: 0;
}
.a9-split-hero__img picture { display: block; width: 100%; height: 100%; }
.a9-split-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.a9-split-hero__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(2,11,18,.98) 0%,
    rgba(2,11,18,.90) 25%,
    rgba(2,11,18,.55) 45%,
    rgba(2,11,18,.15) 65%,
    transparent 80%
  );
}

.a9-split-hero__panel {
  position: relative; z-index: 1;
  width: 52%;
  min-height: 520px;
  background: transparent;
  border: none;
  padding: 56px 60px 56px max(24px, calc(50vw - 600px + 24px));
  display: flex; flex-direction: column; justify-content: center;
}

.a9-split-hero__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--a9-jade);
  margin-bottom: 18px;
}
.a9-split-hero__live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--a9-jade);
  box-shadow: 0 0 8px var(--a9-jade-glow);
  animation: a9blink 2s ease-in-out infinite;
}
@keyframes a9blink { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.a9-split-hero__panel h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px); font-weight: 700;
  color: #fff; line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 12px;
}
.a9-split-hero__panel h1 em { color: var(--a9-jade); font-style: normal; display: block; }
.a9-split-hero__sub { font-size: 14px; color: var(--a9-text-muted); line-height: 1.65; margin-bottom: 24px; }

/* Metrics grid inside panel */
.a9-panel-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px;
}
.a9-panel-metric {
  background: var(--a9-surface-2); border: 1px solid var(--a9-border-solid);
  border-radius: var(--a9-r); padding: 12px 14px;
  display: flex; flex-direction: column; gap: 3px;
}
.a9-panel-metric--jade { border-left: 2px solid var(--a9-jade); }
.a9-panel-metric--amber { border-left: 2px solid var(--a9-amber); }
.a9-panel-metric__val {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--a9-jade); line-height: 1;
}
.a9-panel-metric--amber .a9-panel-metric__val { color: var(--a9-amber); }
.a9-panel-metric__label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--a9-text-muted); }

.a9-panel-btns { display: flex; flex-direction: column; gap: 8px; }

/* ── Scrolling ticker ── */
.a9-ticker {
  background: var(--a9-surface-2); border-bottom: 1px solid var(--a9-border-solid);
  overflow: hidden; padding: 10px 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.a9-ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: a9tick 28s linear infinite;
}
@keyframes a9tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.a9-ticker-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--a9-text-muted); padding: 0 28px; white-space: nowrap;
  border-right: 1px solid var(--a9-border-solid);
}
.a9-ticker-item span { color: var(--a9-jade); }

/* ════════════════════════════════════
   STAGE CARDS — horizontal 4-up (not a vertical timeline)
   ════════════════════════════════════ */
.a9-stages-h { display: flex; gap: 12px; }
.a9-stage-c {
  flex: 1; min-width: 0;
  background: var(--a9-surface);
  border: 1px solid var(--a9-border-solid);
  border-radius: var(--a9-r-md);
  padding: 22px 18px;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.a9-stage-c::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--a9-jade-dk), var(--a9-jade));
}
.a9-stage-c:hover { border-color: var(--a9-border-lt); box-shadow: 0 0 32px var(--a9-jade-dim); }
.a9-stage-c--1::before { background: linear-gradient(90deg, var(--a9-jade-dk), var(--a9-jade)); }
.a9-stage-c--2::before { background: linear-gradient(90deg, #0050e0, #38BDF8); }
.a9-stage-c--3::before { background: linear-gradient(90deg, var(--a9-amber-dk), var(--a9-amber)); }
.a9-stage-c--4::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.a9-stage-c__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--a9-jade-dim); border: 1px solid var(--a9-border-lt);
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--a9-jade); margin-bottom: 14px; flex-shrink: 0;
}
.a9-stage-c__match {
  font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 4px;
}
.a9-stage-c__cap {
  font-size: 12px; font-weight: 700; color: var(--a9-jade); margin-bottom: 14px;
}
.a9-stage-c__divider {
  border: none; border-top: 1px solid var(--a9-border-solid); margin: 12px 0;
}
.a9-stage-c__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding: 4px 0; gap: 8px;
}
.a9-stage-c__row-label { color: var(--a9-text-muted); }
.a9-stage-c__row-val { font-weight: 700; color: var(--a9-text); font-size: 12px; text-align: right; }
.a9-stage-c__game {
  margin-top: auto; padding-top: 14px;
  font-size: 11px; color: var(--a9-text-muted); line-height: 1.5; border-top: 1px solid var(--a9-border-solid);
}
.a9-stage-c__game strong { color: var(--a9-jade); display: block; margin-bottom: 2px; }

/* ════════════════════════════════════
   TABBED GAMES — not a marquee
   ════════════════════════════════════ */
.a9-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--a9-border-solid); margin-bottom: 28px; }
.a9-tab-btn {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: var(--a9-r) var(--a9-r) 0 0;
  background: none; border: 1px solid transparent; border-bottom: none;
  color: var(--a9-text-muted); cursor: pointer;
  position: relative; bottom: -1px;
  transition: color .15s, background .15s;
}
.a9-tab-btn:hover { color: var(--a9-jade); }
.a9-tab-btn.is-active {
  color: var(--a9-jade); background: var(--a9-surface);
  border-color: var(--a9-border-solid); border-bottom-color: var(--a9-surface);
}
.a9-tab-panel { display: none; }
.a9-tab-panel.is-active { display: block; }

.a9-game-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.a9-game-tile {
  flex: 0 0 calc(16.666% - 9px);
  border-radius: var(--a9-r); overflow: hidden;
  border: 1px solid var(--a9-border-solid);
  aspect-ratio: 3/4; position: relative;
  transition: transform .2s, border-color .2s;
}
.a9-game-tile:hover { transform: scale(1.04); border-color: var(--a9-border-lt); }
.a9-game-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Marquee (providers only) ── */
.a9-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.a9-marquee-track {
  display: flex; width: max-content;
  animation: a9mar 50s linear infinite;
}
.a9-marquee-track:hover { animation-play-state: paused; }
@keyframes a9mar { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.a9-prov-pill {
  flex-shrink: 0; height: 40px; padding: 0 18px; margin-right: 10px;
  display: flex; align-items: center;
  background: var(--a9-surface); border: 1px solid var(--a9-border-solid);
  border-radius: 20px; transition: border-color .2s;
}
.a9-prov-pill:hover { border-color: var(--a9-border-lt); }
.a9-prov-pill img { height: 18px; width: auto; max-width: 90px; object-fit: contain; opacity: .45; transition: opacity .2s; }
.a9-prov-pill:hover img { opacity: .85; }

/* ── Data table ── */
.a9-table-wrap { overflow-x: auto; border-radius: var(--a9-r-md); border: 1px solid var(--a9-border-solid); }
.a9-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.a9-table th {
  text-align: left; padding: 11px 16px;
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--a9-jade);
  border-bottom: 1px solid var(--a9-border-solid); background: var(--a9-surface-2);
}
.a9-table td { padding: 12px 16px; color: var(--a9-text); border-bottom: 1px solid var(--a9-border-solid); }
.a9-table td:first-child { font-weight: 600; color: var(--a9-jade); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; }
.a9-table tr:last-child td { border-bottom: none; }
.a9-table tr:nth-child(odd) td { background: var(--a9-surface); }

/* ── Callout ── */
.a9-callout {
  background: rgba(0,195,160,.06); border-left: 2px solid var(--a9-jade);
  border: 1px solid rgba(0,195,160,.18); border-left-width: 2px;
  border-radius: 0 var(--a9-r) var(--a9-r) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 14px; color: var(--a9-text-muted); line-height: 1.7;
}
.a9-callout strong { color: var(--a9-jade-lt); }
.a9-callout--amber { background: var(--a9-amber-dim); border-color: rgba(245,166,35,.25); border-left-color: var(--a9-amber); }
.a9-callout--amber strong { color: var(--a9-amber-lt); }

/* ── Cards ── */
.a9-card {
  background: var(--a9-surface); border: 1px solid var(--a9-border-solid);
  border-radius: var(--a9-r-md); padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.a9-card:hover { border-color: var(--a9-border-lt); box-shadow: 0 8px 32px var(--a9-jade-dim); }
.a9-card__icon {
  width: 42px; height: 42px; border-radius: var(--a9-r);
  background: var(--a9-jade-dim); border: 1px solid rgba(0,195,160,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.a9-card-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.a9-card-grid .a9-card { flex: 1; min-width: 220px; }

/* ── Metrics strip ── */
.a9-metrics {
  display: flex; flex-wrap: wrap;
  background: var(--a9-surface); border-top: 1px solid var(--a9-border-solid); border-bottom: 1px solid var(--a9-border-solid);
}
.a9-metric {
  flex: 1; min-width: 120px;
  padding: 20px 18px; text-align: center;
  border-right: 1px solid var(--a9-border-solid);
  position: relative;
}
.a9-metric:last-child { border-right: none; }
.a9-metric__val {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(20px, 2.5vw, 32px); font-weight: 700;
  color: var(--a9-jade); line-height: 1; display: block; margin-bottom: 4px;
}
.a9-metric__lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--a9-text-muted); }

/* ── Analysis row (alternating) ── */
.a9-arow { display: flex; align-items: flex-start; gap: 48px; margin-bottom: 64px; }
.a9-arow:last-child { margin-bottom: 0; }
.a9-arow--flip { flex-direction: row-reverse; }
.a9-arow__text { flex: 1; min-width: 0; }
.a9-arow__box {
  flex: 0 0 340px;
  background: var(--a9-surface); border: 1px solid var(--a9-border-solid);
  border-top: 2px solid var(--a9-jade);
  border-radius: 0 0 var(--a9-r-md) var(--a9-r-md);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.a9-arow__item { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--a9-border-solid); font-size: 14px; }
.a9-arow__item:last-child { border-bottom: none; }
.a9-arow__item-key { color: var(--a9-text-muted); font-weight: 500; }
.a9-arow__item-val { font-weight: 700; color: var(--a9-jade); text-align: right; }

/* ── Bonus summary sidebar ── */
.a9-bonus-aside {
  background: var(--a9-surface); border: 1px solid var(--a9-border-solid);
  border-top: 2px solid var(--a9-jade);
  border-radius: 0 0 var(--a9-r-md) var(--a9-r-md);
  padding: 24px; position: sticky; top: 80px;
}
.a9-bonus-aside__total {
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700;
  color: var(--a9-amber-lt); margin-bottom: 4px; line-height: 1;
}
.a9-bonus-aside__sub { font-size: 12px; color: var(--a9-text-muted); margin-bottom: 18px; }
.a9-blist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.a9-blist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--a9-text-muted);
  padding: 9px 10px; background: var(--a9-surface-2);
  border: 1px solid var(--a9-border-solid); border-radius: var(--a9-r);
}
.a9-blist li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--a9-jade); flex-shrink: 0; box-shadow: 0 0 5px var(--a9-jade-glow); }
.a9-blist strong { color: var(--a9-text); font-weight: 700; }

/* ── Widget bonus grid ── */
.a9-bonus-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.a9-bonus-card {
  flex: 1 1 calc(50% - 12px); min-width: 280px;
  background: var(--a9-surface); border: 1px solid var(--a9-border-solid);
  border-radius: var(--a9-r-md); overflow: hidden;
  display: flex; flex-direction: column;
}
.a9-bonus-card__img { line-height: 0; }
.a9-bonus-card__img img { width: 100%; height: 160px; object-fit: cover; display: block; }
.a9-bonus-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.a9-bonus-card__stage {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--a9-jade);
  margin-bottom: 6px;
}
.a9-bonus-card__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.a9-bonus-card__desc { font-size: 13px; color: var(--a9-text-muted); margin-bottom: 14px; line-height: 1.55; }
.a9-bonus-stats {
  list-style: none; margin: 0 0 14px; padding: 0;
  border: 1px solid var(--a9-border-solid); border-radius: var(--a9-r); overflow: hidden;
}
.a9-bonus-stats li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 11px; font-size: 12px;
  border-bottom: 1px solid var(--a9-border-solid);
}
.a9-bonus-stats li:last-child { border-bottom: none; }
.a9-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.a9-bonus-stats li span:first-child { color: var(--a9-text-muted); font-weight: 500; }
.a9-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.a9-bonus-card__terms {
  font-size: 11px; color: var(--a9-text-muted); margin-bottom: 14px; line-height: 1.5;
}
.a9-bonus-card .a9-btn { margin-top: auto; }

/* ── Checklist ── */
.a9-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.a9-checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--a9-text-muted); line-height: 1.65;
}
.a9-checklist li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--a9-jade-dim); border: 1px solid var(--a9-border-lt);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%2300C3A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── CTA terminal ── */
.a9-cta-terminal {
  border: 1px solid var(--a9-border-solid); border-radius: var(--a9-r-lg);
  overflow: hidden;
}
.a9-cta-terminal__top {
  background: var(--a9-surface-2); padding: 10px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--a9-border-solid);
}
.a9-cta-terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.a9-cta-terminal__body {
  background: var(--a9-surface);
  padding: 56px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.a9-cta-terminal__body::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,195,160,.1), transparent 70%);
  pointer-events: none;
}
.a9-cta-terminal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 700;
  color: #fff; margin-bottom: 10px; position: relative;
}
.a9-cta-terminal__sub { font-size: 14.5px; color: var(--a9-text-muted); max-width: 480px; margin: 0 auto 28px; position: relative; }
.a9-cta-terminal__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FAQ ── */
.a9-faq { display: flex; flex-direction: column; gap: 5px; }
.a9-faq-item { background: var(--a9-surface); border: 1px solid var(--a9-border-solid); border-radius: var(--a9-r); overflow: hidden; transition: border-color .2s; }
.a9-faq-item.is-open { border-color: var(--a9-border-lt); }
.a9-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; width: 100%; background: none; border: none; text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 600; color: #fff;
  gap: 12px; transition: color .15s;
}
.a9-faq-q:hover { color: var(--a9-jade); }
.a9-faq-icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--a9-border-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--a9-jade);
  transition: transform .3s, background .2s;
}
.a9-faq-item.is-open .a9-faq-icon { transform: rotate(45deg); background: var(--a9-jade-dim); }
.a9-faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--a9-text-muted); line-height: 1.72; }
.a9-faq-item.is-open .a9-faq-a { display: block; }

/* ── Footer ── */
.a9-footer { background: var(--a9-surface); border-top: 1px solid var(--a9-border-solid); padding: 52px 0 28px; }
.a9-footer__grid { display: flex; gap: 48px; flex-wrap: wrap; padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--a9-border-solid); }
.a9-footer__brand { flex: 1.5; min-width: 200px; }
.a9-footer__logo { margin-bottom: 12px; }
.a9-footer__logo img { height: 26px; }
.a9-footer__tagline { font-size: 13px; color: var(--a9-text-muted); max-width: 260px; line-height: 1.6; }
.a9-footer__col { flex: 1; min-width: 120px; }
.a9-footer__col-h { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--a9-text-muted); margin-bottom: 12px; }
.a9-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.a9-footer__col a { font-size: 13.5px; color: var(--a9-text-muted); transition: color .15s; }
.a9-footer__col a:hover { color: var(--a9-jade); }

.a9-footer__trust { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }
.a9-trust-lnk { opacity: .3; transition: opacity .2s; }
.a9-trust-lnk:hover { opacity: .7; }
.a9-trust-lnk img { height: 24px; width: auto; display: block;}

.a9-footer__disc { font-size: 11.5px; color: var(--a9-text-muted); line-height: 1.7; margin-bottom: 20px; }
.a9-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--a9-border-solid); padding-top: 20px; }
.a9-footer__copy { font-size: 12px; color: var(--a9-text-dim); }
.a9-footer__links { display: flex; gap: 14px; flex-wrap: wrap; }
.a9-footer__links a { font-size: 12px; color: var(--a9-text-dim); transition: color .15s; }
.a9-footer__links a:hover { color: var(--a9-jade); }

/* ── Subpage hero ── */
.a9-sub-hero { background: var(--a9-bg); }
.a9-sub-hero > .a9-wrap { padding-top: 56px; padding-bottom: 40px; }
.a9-sub-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3.2vw, 44px); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -.025em;
  margin-bottom: 14px;
}
.a9-sub-hero p { font-size: 15px; color: var(--a9-text-muted); max-width: 640px; line-height: 1.75; }
.a9-sub-hero__banner { overflow: hidden; max-height: 340px; position: relative; }
.a9-sub-hero__banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, var(--a9-bg), transparent);
  z-index: 1; pointer-events: none;
}
.a9-sub-hero__banner picture { display: block; }
.a9-sub-hero__banner img { width: 100%; max-height: 340px; object-fit: cover; object-position: center 20%; display: block; opacity: .6; }

/* ── Badges ── */
.a9-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 10px; border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700;
}
.a9-badge--jade { background: var(--a9-jade-dim); color: var(--a9-jade); border: 1px solid rgba(0,195,160,.25); }
.a9-badge--amber { background: var(--a9-amber-dim); color: var(--a9-amber); border: 1px solid rgba(245,166,35,.25); }

.a9-breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--a9-text-muted); margin-bottom: 12px; }
.a9-breadcrumb a { color: var(--a9-jade); }

/* ── Device mockup ── */
.a9-device {
  background: var(--a9-surface-3); border: 1px solid var(--a9-border-solid);
  border-radius: 18px; padding: 10px; max-width: 260px; margin: 0 auto;
}
.a9-device__screen { background: var(--a9-bg); border-radius: 10px; overflow: hidden; }
.a9-device__bar { background: var(--a9-surface); padding: 8px 12px; font-size: 10px; font-weight: 700; color: var(--a9-jade); text-align: center; letter-spacing: 1px; border-bottom: 1px solid var(--a9-border-solid); }
.a9-device__body { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.a9-device__tile { background: var(--a9-surface); border: 1px solid var(--a9-border-solid); border-radius: 6px; padding: 7px 10px; font-size: 11px; color: var(--a9-text-muted); }
.a9-device__tile strong { color: var(--a9-jade); display: block; font-size: 10px; margin-bottom: 1px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .a9-stages-h { flex-wrap: wrap; }
  .a9-stage-c { flex: 0 0 calc(50% - 6px); min-width: 0; }
  .a9-arow, .a9-arow--flip { flex-direction: column; }
  .a9-arow__box { flex: none; width: 100%; }
  .a9-game-tile { flex: 0 0 calc(25% - 8px); }
}
@media (max-width: 768px) {
  .a9-split-hero { min-height: 480px; }
  .a9-split-hero__img::after {
    background: linear-gradient(180deg, rgba(2,11,18,.3) 0%, rgba(2,11,18,.97) 70%, rgba(2,11,18,1) 100%),
                linear-gradient(90deg, rgba(2,11,18,.85) 0%, transparent 60%);
  }
  .a9-split-hero__panel { width: 100%; min-height: 480px; padding: 32px 22px; justify-content: flex-end; }
  .a9-panel-metrics { grid-template-columns: 1fr 1fr; }
  .a9-nav, .a9-header__cta { display: none; }
  .a9-burger { display: flex; margin-left: auto; }
  .a9-metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
  .a9-metric { border-bottom: 1px solid var(--a9-border-solid); }
  .a9-sec { padding: 52px 0; }
  .a9-game-tile { flex: 0 0 calc(33.333% - 7px); }
  .a9-cta-terminal__body { padding: 36px 22px; }
}
@media (max-width: 480px) {
  .a9-stage-c { flex: 0 0 100%; }
  .a9-game-tile { flex: 0 0 calc(50% - 5px); }
  .a9-footer__grid { gap: 24px; }
  .a9-footer__bottom { flex-direction: column; }
  .a9-metrics { grid-template-columns: repeat(2, 1fr); }
}
