:root {
  --purple:      #7C5CFC;
  --purple-l:    #A78BFA;
  --purple-d:    rgba(124,92,252,.15);
  --purple-b:    rgba(124,92,252,.30);
  --cyan:        #00D4FF;
  --cyan-d:      rgba(0,212,255,.12);
  --cyan-b:      rgba(0,212,255,.25);
  --pink:        #FF3D9A;
  --pink-d:      rgba(255,61,154,.10);
  --pink-b:      rgba(255,61,154,.25);
  --gold-star:   #F0C040;
  --gold:        var(--purple);
  --gold-light:  var(--purple-l);
  --gold-dark:   rgba(124,92,252,.6);
  --navy:        #080E1C;
  --navy-mid:    #0C1526;
  --navy-card:   #101E38;
  --navy-border: #1D2E4F;
  --slate:       #7A90B8;
  --white:       #E0E8F8;
  --green:       #00E676;
  --green-dim:   rgba(0,230,118,.1);
  --red:         #FF4444;
  --font-head:   'Outfit', system-ui, sans-serif;
  --font-body:   'Outfit', system-ui, sans-serif;
  --font-mono:   'DM Mono', monospace;
  --r:    10px;
  --r-lg: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: var(--white); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* LAYOUT */
.container { max-width: 1600px; width: 90%; margin: 0 auto; padding: 0 32px; }
.w--sm { max-width: 1200px; width: 92%; margin: 0 auto; padding: 0 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(10,15,30,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--navy-border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 36px; width: auto; display: block; }
.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__link { font-size: 14px; font-weight: 400; color: var(--slate); padding: 6px 12px; border-radius: 6px; transition: color .15s, background .15s; white-space: nowrap; }
.nav__link:hover { color: var(--white); background: var(--navy-card); }
.nav__link--active { color: var(--gold); }
.nav__cta { font-size: 13px; font-weight: 700; font-family: var(--font-head); background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; padding: 8px 18px; border-radius: var(--r); transition: opacity .15s; white-space: nowrap; }
.nav__cta:hover { opacity: 0.85; }
.nav__link--reg { color: var(--white); border: 1px solid var(--navy-border); border-radius: 6px; }
.nav__link--reg:hover { border-color: var(--purple-b); background: var(--purple-d); color: var(--white); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 8px; cursor: pointer; padding: 0 10px; flex-shrink: 0; }
.nav__burger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DISCLAIMER BAR */
.disclaimer-bar { background: var(--navy-card); border-bottom: 1px solid var(--navy-border); font-size: 12px; color: var(--slate); text-align: center; padding: 7px 24px; }
.disclaimer-bar a { color: var(--gold); text-decoration: underline; }

/* HERO */
.hero { padding: 88px 0 80px; position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.hero__kicker { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); color: var(--gold); font-size: 12px; font-weight: 500; font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 24px; }
.hero__kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero__title em { color: var(--gold); font-style: normal; }
.hero__sub { font-size: 18px; font-weight: 300; color: var(--slate); max-width: 560px; margin-bottom: 40px; line-height: 1.6; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.badge-check { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--slate); }
.badge-check::before { content: ''; display: block; width: 16px; height: 16px; border-radius: 50%; background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.4); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2322C55E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 10px; background-repeat: no-repeat; background-position: center; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 15px; border-radius: var(--r); padding: 14px 28px; transition: all .15s; cursor: pointer; border: none; }
.btn--primary { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; }
.btn--primary:hover { opacity: .88; }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--navy-border); }
.btn--ghost:hover { background: var(--navy-card); border-color: var(--slate); }
.btn--sm { font-size: 13px; padding: 9px 20px; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* BONUS BOX */
.bonus-box { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); padding: 28px 32px; position: relative; overflow: hidden; }
.bonus-box__accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple), var(--cyan), var(--pink), var(--purple)); }
.bonus-box__label { font-size: 11px; font-weight: 500; font-family: var(--font-head); letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.bonus-box__amount { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: var(--white); line-height: 1; margin-bottom: 6px; }
.bonus-box__amount span { color: var(--gold); }
.bonus-box__sub { font-size: 14px; color: var(--slate); margin-bottom: 24px; }
.bonus-box__code { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.bonus-box__code-value { flex: 1; background: var(--navy); border: 1px solid var(--navy-border); border-right: none; border-radius: var(--r) 0 0 var(--r); padding: 10px 16px; font-family: monospace; font-size: 15px; font-weight: 600; letter-spacing: .1em; color: var(--gold); }
.bonus-box__code-copy { background: linear-gradient(135deg, var(--purple), var(--cyan)); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13px; padding: 10px 18px; border-radius: 0 var(--r) var(--r) 0; border: none; cursor: pointer; transition: opacity .15s; }
.bonus-box__code-copy:hover { opacity: .85; }
.bonus-box__verified { font-size: 12px; color: var(--slate); display: flex; align-items: center; gap: 6px; }
.bonus-box__verified-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* STAT BAR */
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); margin: 48px 0; }
.stat { padding: 24px; text-align: center; border-right: 1px solid var(--navy-border); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat__label { font-size: 12px; color: var(--slate); font-weight: 400; }

/* SECTION HEADERS */
.section { padding: 72px 0; }
.section-head { margin-bottom: 40px; }
.section-head__kicker { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-head__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; letter-spacing: -0.02em; }
.section-head__sub { font-size: 16px; color: var(--slate); font-weight: 300; margin-top: 12px; max-width: 520px; }

/* CARDS */
.card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); padding: 24px; }
.card--hover { transition: border-color .2s, transform .2s; }
.card--hover:hover { border-color: rgba(201,168,76,.35); transform: translateY(-2px); }
.card__icon { width: 44px; height: 44px; background: rgba(201,168,76,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.card__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.card__body { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* REVIEW PAGE */
.verdict-box { background: var(--navy-card); border: 1px solid rgba(201,168,76,.3); border-radius: var(--r-lg); padding: 32px; margin-bottom: 40px; }
.verdict-box__rating { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.verdict-box__score { font-family: var(--font-head); font-weight: 800; font-size: 56px; color: var(--gold); line-height: 1; }
.verdict-box__stars { display: flex; gap: 4px; font-size: 22px; color: var(--gold); margin-bottom: 4px; }
.verdict-box__count { font-size: 13px; color: var(--slate); }
.verdict-box__summary { font-size: 17px; font-weight: 300; color: var(--white); line-height: 1.6; border-top: 1px solid var(--navy-border); padding-top: 20px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pros-cons__col { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); padding: 20px 24px; }
.pros-cons__title { font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.pros-cons__title--pro { color: var(--green); }
.pros-cons__title--con { color: var(--red); }
.pros-cons__item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate); line-height: 1.5; margin-bottom: 10px; }
.pros-cons__item--pro::before { content: '+'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 16px; margin-top: -1px; }
.pros-cons__item--con::before { content: '−'; color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 16px; margin-top: -1px; }

/* RATING TABLE */
.rating-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.rating-table th { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); text-align: left; padding: 0 0 12px; border-bottom: 1px solid var(--navy-border); }
.rating-table td { padding: 14px 0; border-bottom: 1px solid rgba(30,42,66,.6); font-size: 14px; vertical-align: middle; }
.rating-table td:first-child { color: var(--white); font-weight: 400; width: 40%; }
.rating-table td:last-child { color: var(--slate); font-size: 13px; }
.rating-bar { display: flex; align-items: center; gap: 10px; }
.rating-bar__track { flex: 1; height: 6px; background: var(--navy-border); border-radius: 3px; overflow: hidden; max-width: 140px; }
.rating-bar__fill { height: 100%; border-radius: 3px; background: var(--gold); }
.rating-bar__num { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--gold); min-width: 32px; }

/* DATA TABLE */
.compare-table-wrap { overflow-x: auto; margin: 32px 0; border-radius: var(--r-lg); border: 1px solid var(--navy-border); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead { background: var(--navy-card); }
.compare-table th { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--slate); padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--navy-border); white-space: nowrap; }
.compare-table th:first-child { color: var(--white); }
.compare-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid rgba(30,42,66,.5); vertical-align: middle; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,.02); }
.compare-table .highlight { background: rgba(201,168,76,.04); }
.compare-table .tag-yes { color: var(--green); font-weight: 500; }
.compare-table .tag-no { color: var(--slate); }

/* FAQ */
.faq { margin: 48px 0; }
.faq-item { border-bottom: 1px solid var(--navy-border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-family: var(--font-head); font-weight: 600; font-size: 16px; cursor: pointer; gap: 16px; transition: color .15s; }
.faq-q:hover { color: var(--gold); }
.faq-q-icon { width: 20px; height: 20px; border: 1px solid var(--navy-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--slate); transition: all .15s; }
.faq-a { display: none; padding: 0 0 20px; font-size: 15px; color: var(--slate); line-height: 1.7; max-width: 680px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q-icon { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3); color: var(--gold); transform: rotate(45deg); }

/* PROMO CODE PAGE */
.promo-hero { background: var(--navy-card); border: 1px solid rgba(201,168,76,.2); border-radius: var(--r-lg); padding: 36px; margin-bottom: 32px; }
.promo-hero__label { font-size: 11px; font-weight: 600; font-family: var(--font-head); letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.promo-hero__bonus { font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1; color: var(--white); margin-bottom: 8px; }
.promo-hero__bonus em { color: var(--gold); font-style: normal; }
.promo-hero__sub { font-size: 14px; color: var(--slate); margin-bottom: 24px; }
.promo-input { display: flex; border-radius: var(--r); overflow: hidden; border: 1px solid rgba(201,168,76,.3); margin-bottom: 12px; }
.promo-input__code { flex: 1; background: var(--navy); padding: 14px 20px; font-family: 'Courier New', monospace; font-size: 18px; font-weight: 700; letter-spacing: .12em; color: var(--gold); border: none; }
.promo-input__copy { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 14px 24px; border: none; cursor: pointer; white-space: nowrap; transition: opacity .15s; }
.promo-input__copy:hover { opacity: .88; }
.promo-verified { font-size: 12px; color: var(--green); display: flex; align-items: center; gap: 6px; }
.code-table { margin: 32px 0; }
.code-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--navy-border); }
.code-row:last-child { border-bottom: none; }
.code-row__code { font-family: monospace; font-size: 14px; font-weight: 700; letter-spacing: .08em; color: var(--gold); background: rgba(201,168,76,.08); padding: 4px 10px; border-radius: 6px; white-space: nowrap; }
.code-row__bonus { flex: 1; font-size: 14px; color: var(--white); }
.code-row__type { font-size: 12px; color: var(--slate); white-space: nowrap; }
.code-row__copy { font-size: 12px; font-weight: 600; color: var(--gold); background: rgba(201,168,76,.1); border: none; border-radius: 6px; padding: 5px 12px; cursor: pointer; white-space: nowrap; font-family: var(--font-head); transition: background .15s; }
.code-row__copy:hover { background: rgba(201,168,76,.2); }

/* STATE MAP */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin: 32px 0; }
.state-chip { padding: 10px 12px; border-radius: var(--r); font-size: 13px; font-weight: 400; display: flex; align-items: center; gap: 8px; border: 1px solid; }
.state-chip--yes { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.2); color: var(--white); }
.state-chip--yes::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.state-chip--no { background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.15); color: var(--slate); }
.state-chip--no::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ALTERNATIVES PAGE */
.alt-card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); padding: 24px; display: flex; gap: 20px; align-items: flex-start; transition: border-color .2s; }
.alt-card:hover { border-color: rgba(201,168,76,.3); }
.alt-card--featured { border-color: rgba(201,168,76,.35); }
.alt-card__rank { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: rgba(201,168,76,.3); min-width: 32px; }
.alt-card__rank--top { color: var(--gold); }
.alt-card__content { flex: 1; }
.alt-card__name { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.alt-card__bonus { font-size: 13px; color: var(--green); font-weight: 500; margin-bottom: 8px; }
.alt-card__details { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--slate); margin-bottom: 16px; }
.alt-card__detail::before { content: '·'; margin-right: 4px; }
.alt-card__detail:first-child::before { content: ''; margin: 0; }
.alt-card__cta { font-size: 13px; font-weight: 600; font-family: var(--font-head); color: #fff; background: linear-gradient(135deg, var(--pink), var(--purple)); padding: 8px 18px; border-radius: var(--r); display: inline-block; transition: opacity .15s; }
.alt-card__cta:hover { opacity: .85; }

/* LEGAL STATE PAGE */
.state-hero { background: var(--navy-card); border: 1px solid rgba(34,197,94,.2); border-radius: var(--r-lg); padding: 32px; margin-bottom: 32px; text-align: center; }
.state-hero--blocked { border-color: rgba(239,68,68,.2); }
.state-hero__status { font-family: var(--font-head); font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.state-hero__status--yes { color: var(--green); }
.state-hero__status--no { color: var(--red); }
.state-hero__sub { font-size: 16px; color: var(--slate); margin-bottom: 24px; }
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.req-item { background: var(--navy); border: 1px solid var(--navy-border); border-radius: var(--r); padding: 16px; }
.req-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); font-family: var(--font-head); font-weight: 600; margin-bottom: 4px; }
.req-item__val { font-size: 16px; font-weight: 500; color: var(--white); }

/* PAYOUT PAGE */
.payout-timeline { margin: 32px 0; }
.timeline-step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.timeline-step:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 32px; bottom: 0; width: 1px; background: var(--navy-border); }
.timeline-step__dot { width: 32px; height: 32px; border-radius: 50%; background: rgba(201,168,76,.1); border: 2px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--gold); flex-shrink: 0; }
.timeline-step__dot--done { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.4); color: var(--green); }
.timeline-step__content { padding-top: 4px; flex: 1; }
.timeline-step__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.timeline-step__body { font-size: 14px; color: var(--slate); line-height: 1.6; }
.payout-proof { background: var(--navy-card); border: 1px solid rgba(34,197,94,.25); border-radius: var(--r-lg); padding: 24px; margin: 32px 0; }
.payout-proof__label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-head); font-weight: 600; color: var(--green); margin-bottom: 8px; }
.payout-proof__text { font-size: 15px; font-weight: 300; line-height: 1.6; }
.payout-proof__text strong { color: var(--white); font-weight: 500; }

/* INLINE CONTENT */
h1, h2, h3, h4 { font-family: var(--font-head); }
.page-h1 { font-weight: 800; font-size: clamp(28px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 20px; }
.page-h2 { font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin: 40px 0 16px; }
.page-h3 { font-weight: 600; font-size: 18px; margin: 28px 0 12px; }
.page-p { font-size: 16px; font-weight: 300; line-height: 1.75; color: #BCC5D6; margin-bottom: 16px; }
.page-p strong { color: var(--white); font-weight: 500; }
.page-p a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,.4); }
.callout { background: var(--navy-card); border-left: 3px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 16px 20px; margin: 24px 0; font-size: 15px; color: var(--slate); line-height: 1.65; }
.callout strong { color: var(--white); }
.callout--warning { border-color: var(--red); }
.callout--success { border-color: var(--green); }

/* AUTHOR BOX */
.author-box { display: flex; gap: 20px; align-items: flex-start; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); padding: 24px; margin: 40px 0; }
.author-box__avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(201,168,76,.15); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.author-box__name { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.author-box__role { font-size: 13px; color: var(--gold); margin-bottom: 8px; }
.author-box__bio { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* AFFILIATE DISCLOSURE */
.affiliate-notice { font-size: 13px; color: var(--slate); background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r); padding: 12px 16px; margin-bottom: 32px; line-height: 1.5; }
.affiliate-notice strong { color: var(--white); }

/* FOOTER */
.footer { background: var(--navy-card); border-top: 1px solid var(--navy-border); padding: 48px 0 32px; margin-top: 80px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--gold); margin-bottom: 12px; }
.footer__brand span { color: var(--white); font-weight: 400; }
.footer__desc { font-size: 13px; color: var(--slate); line-height: 1.6; max-width: 260px; }
.footer__col-title { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; color: var(--white); margin-bottom: 14px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; color: var(--slate); transition: color .15s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--navy-border); padding-top: 24px; }
.footer__disclaimer { font-size: 12px; color: rgba(139,153,181,.7); line-height: 1.6; margin-bottom: 16px; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--slate); }
.footer__legal a { transition: color .15s; }
.footer__legal a:hover { color: var(--gold); }
.footer__copy { font-size: 12px; color: rgba(139,153,181,.5); margin-top: 12px; }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--navy-card); border-top: 1px solid var(--navy-border); padding: 12px 20px; gap: 12px; align-items: center; }
  .sticky-cta__bonus { flex: 1; }
  .sticky-cta__label { font-size: 11px; color: var(--slate); }
  .sticky-cta__amount { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--gold); }
  .sticky-cta__btn { background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: var(--r); white-space: nowrap; flex-shrink: 0; }
  .nav__links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,15,30,0.98); border-bottom: 1px solid var(--navy-border); flex-direction: column; padding: 12px 16px 20px; gap: 4px; z-index: 99; }
  .nav__links.is-open { display: flex; }
  .nav__links .nav__link { padding: 12px 16px; border-radius: 8px; font-size: 15px; }
  .nav__links .nav__link--reg { margin-top: 4px; text-align: center; }
  .nav__burger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child { border-bottom: none; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .req-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
}

/* GAME GALLERY */
.game-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; margin: 28px 0; }
.game-card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r); overflow: hidden; transition: transform .2s, border-color .2s; cursor: pointer; position: relative; }
.game-card:hover { transform: translateY(-4px); border-color: rgba(124,92,252,.45); }
.game-card__img { width: 100%; aspect-ratio: 3/4; background: var(--navy-mid); position: relative; }
.game-card__img-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(160deg, var(--navy-mid), var(--navy-border)); }
.game-card__img-icon { font-size: 26px; opacity: .4; }
.game-card__img-label { font-size: 9px; color: var(--slate); font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; opacity: .5; }
.game-card__badge { position: absolute; top: 7px; left: 7px; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; font-size: 8px; font-weight: 700; font-family: var(--font-head); letter-spacing: .05em; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; z-index: 1; }
.game-card__info { padding: 9px 10px 11px; }
.game-card__name { font-family: var(--font-head); font-weight: 600; font-size: 12px; color: var(--white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card__provider { font-size: 10px; color: var(--slate); }
.platform-screenshot { width: 100%; margin-top: 32px; aspect-ratio: 16/7; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.ps-bar { height: 36px; background: var(--navy-mid); border-bottom: 1px solid var(--navy-border); display: flex; align-items: center; padding: 0 16px; gap: 8px; flex-shrink: 0; }
.ps-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--navy-border); }
.ps-url { font-size: 11px; color: var(--slate); font-family: var(--font-mono); margin-left: 8px; opacity: .6; }
.ps-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.ps-icon { font-size: 40px; opacity: .2; }
.ps-label { font-size: 14px; color: var(--slate); font-family: var(--font-mono); opacity: .55; letter-spacing: .06em; text-transform: uppercase; }
.ps-hint { font-size: 12px; color: var(--slate); opacity: .35; font-style: italic; }
@media (max-width: 1200px) { .game-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .game-grid { grid-template-columns: repeat(2, 1fr); } }

/* INNER PAGE UTILITIES */
.page-list { padding-left: 20px; color: var(--slate); font-size: 15px; line-height: 1.8; margin: 0 0 20px; }
.page-list li { margin-bottom: 6px; }
.how-steps { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--navy-border); padding-left: 24px; margin: 24px 0; }
.how-step { position: relative; padding-bottom: 24px; }
.how-step:last-child { padding-bottom: 0; }
.how-step::before { content: ''; position: absolute; left: -31px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--purple); border: 2px solid var(--cyan); }
.how-step__num { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.how-step__text { font-size: 15px; color: var(--slate); line-height: 1.6; }
.faq-list { border-top: 1px solid var(--navy-border); }
