/* vega-stars.live -- v2 (vegastars) */
:root {
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --accent: #f97316;
  --accent-2: #f4b740;
  --bg: #080818;
  --bg-bar: #040510;
  --border: rgba(255,255,255,.07);
  --cta-from: #f7c444;
  --cta-text: #1a1005;
  --cta-to: #f5780d;
  --eyebrow: #ffb347;
  --faq-open-from: #f7c444;
  --faq-open-text: #241505;
  --faq-open-to: #f5780d;
  --heading: #ffffff;
  --hero-from: #1f1830;
  --hero-to: #141022;
  --panel: #1f1830;
  --panel-2: #141022;
  --radius: 16px;
  --radius-sm: 10px;
  --sub-heading: #8888b0;
  --table-head: #2b2323;
  --table-row-a: #352816;
  --table-row-b: #231b1e;
  --text: #e8e8f0;
  --text-dim: #a9a9c0;
}

/* ==========================================================================
   LVL v2 design system
   One stylesheet, themed per brand by the :root custom properties that
   build_v2.py prepends (see tokens.py). Values sampled from the approved
   mockups -- do not "tidy" the palette without re-checking the comps.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; min-width: 0; }
.main, .prose, .hero__body, .offerrow__body, .steps, .toc { min-width: 0; }
.prose > * { max-width: 100%; }
.tablecard { max-width: 100%; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------ header */
.hdr {
    position: sticky; top: 0; z-index: 60;
    background: var(--bg-bar);
    border-bottom: 1px solid var(--border);
}
.hdr__row { display: flex; align-items: center; gap: 24px; min-height: 68px; }
.hdr__logo { flex: 0 0 auto; }
.hdr__logo img { max-height: 34px; width: auto; }
.hdr__nav { margin-left: auto; }
.hdr__nav ul { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.hdr__nav li { position: relative; }
.hdr__nav a {
    color: var(--text-dim); font-size: 14.5px; font-weight: 500;
    white-space: nowrap; transition: color .15s;
}
.hdr__nav a:hover { color: #fff; text-decoration: none; }
.hdr__nav .sub { display: none; }
.hdr__nav li:hover > .sub, .hdr__nav li:focus-within > .sub {
    display: block; position: absolute; top: 100%; left: 0; min-width: 190px;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 8px; margin-top: 10px;
}
.hdr__nav .sub ul { flex-direction: column; align-items: stretch; gap: 2px; }
.hdr__nav .sub a { display: block; padding: 7px 10px; border-radius: 7px; }
.hdr__nav .sub a:hover { background: rgba(255,255,255,.06); }

.hdr__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.hdr__nav + .hdr__actions { margin-left: 0; }
.hdr__actions:only-of-type { margin-left: auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    padding: 11px 22px; border: 0; border-radius: 10px;
    cursor: pointer; text-align: center; transition: transform .12s, filter .15s;
}
.btn:hover { text-decoration: none; filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }
.btn--gold {
    background: linear-gradient(90deg, var(--cta-from), var(--cta-to));
    color: var(--cta-text);
}
.btn--ghost {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,.28);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--sm { padding: 8px 16px; font-size: 13.5px; }
.btn--lg { padding: 15px 40px; font-size: 17px; }

.hdr__burger {
    display: none; width: 40px; height: 40px; margin-left: auto;
    background: transparent; border: 1px solid var(--border);
    border-radius: 9px; cursor: pointer; position: relative;
}
.hdr__burger span, .hdr__burger::before, .hdr__burger::after {
    content: ''; position: absolute; left: 10px; right: 10px; height: 2px;
    background: #fff; border-radius: 2px; transition: .2s;
}
.hdr__burger::before { top: 13px; }
.hdr__burger span { top: 19px; }
.hdr__burger::after { top: 25px; }
.hdr__burger[aria-expanded="true"]::before { top: 19px; transform: rotate(45deg); }
.hdr__burger[aria-expanded="true"] span { opacity: 0; }
.hdr__burger[aria-expanded="true"]::after { top: 19px; transform: rotate(-45deg); }

/* --------------------------------------------------------------------- hero */
.hero { padding: 34px 0 8px; }
.hero__panel {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--hero-from), var(--hero-to));
    border: 1px solid var(--border);
    padding: 46px 44px;
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
}
.hero__panel::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(120% 90% at 85% 30%, rgba(255,255,255,.07), transparent 60%);
}
.hero__body { position: relative; z-index: 2; }
.hero__eyebrow {
    display: inline-block; font-size: 12.5px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--eyebrow); margin-bottom: 14px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 44px); line-height: 1.12;
    font-weight: 800; color: var(--heading); margin: 0 0 16px;
    letter-spacing: -.02em;
}
.hero__amount {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15;
    color: var(--accent-2); margin: 0 0 10px;
}
.hero__label {
    font-size: 13px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px;
}
.hero__desc { color: var(--text-dim); font-size: 15.5px; margin: 0 0 22px; }
.hero__desc p { margin: 0 0 10px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__terms { font-size: 12px; color: var(--text-dim); margin-top: 14px; }
.hero__media { position: relative; z-index: 2; }
.hero__media img { border-radius: var(--radius-sm); margin-left: auto; }

/* feature chips (casiny comp) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.chips li {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--text);
    background: rgba(255,255,255,.07); border: 1px solid var(--border);
    border-radius: 999px; padding: 6px 13px;
}
.chips li::before { content: '✓'; color: var(--accent-2); font-weight: 700; }

/* trust strip (casiny comp) */
.trustbar {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 22px; margin-top: 18px;
    font-size: 13.5px; color: var(--text-dim);
}
.trustbar__score { color: var(--accent-2); font-weight: 700; }
.trustbar__sep { opacity: .35; }

/* --------------------------------------------------------------- prose body */
.main { padding: 26px 0 60px; }
.prose { max-width: 100%; }
.prose > * + * { margin-top: 18px; }
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(21px, 2.5vw, 27px); line-height: 1.25; font-weight: 800;
    color: var(--heading); letter-spacing: -.015em;
    margin: 44px 0 0; scroll-margin-top: 90px;
}
.prose h3 {
    font-family: var(--font-display);
    font-size: 17.5px; font-weight: 700; line-height: 1.35;
    color: var(--sub-heading); margin: 32px 0 0; scroll-margin-top: 90px;
}
.prose h4 {
    font-size: 15.5px; font-weight: 700; color: var(--text);
    margin: 24px 0 0; scroll-margin-top: 90px;
}
.prose p { margin: 0; color: var(--text); }
.prose strong { color: #fff; font-weight: 700; }
.prose ul, .prose ol { margin: 0; padding-left: 22px; color: var(--text); }
.prose li + li { margin-top: 7px; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li { position: relative; padding-left: 20px; }
.prose ul > li::before {
    content: ''; position: absolute; left: 4px; top: .68em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2);
}
.prose ul ul, .prose ol ol, .prose ul ol, .prose ol ul { margin-top: 7px; }
.prose blockquote {
    margin: 0; padding: 16px 22px; color: var(--text-dim);
    border-left: 3px solid var(--accent); background: var(--panel);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 34px 0; }
.prose figure { margin: 0; }
.prose figure img { border-radius: var(--radius-sm); width: 100%; }
.prose figcaption { font-size: 13px; color: var(--text-dim); margin-top: 9px; text-align: center; }

/* ------------------------------------------------------------------ contents */
.toc {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 28px;
}
.toc__head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; width: 100%;
    font-family: var(--font-display); font-size: 19px; font-weight: 800;
    color: var(--heading); background: none; border: 0; padding: 0;
    cursor: pointer; text-align: left;
}
.toc__head::after {
    content: ''; width: 0; height: 0; flex: 0 0 auto;
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-bottom: 7px solid var(--accent-2); transition: transform .2s;
}
.toc__head[aria-expanded="false"]::after { transform: rotate(180deg); }
.toc__list {
    columns: 3; column-gap: 34px;
    margin: 20px 0 0; padding: 0; list-style: none;
}
.toc__list li { break-inside: avoid; margin-bottom: 12px; }
.toc__list a {
    display: block; position: relative; padding-left: 26px;
    color: var(--text); font-size: 14.5px; line-height: 1.45;
}
.toc__list a::before {
    content: '→'; position: absolute; left: 0; top: 0;
    color: var(--accent); font-weight: 700;
}
.toc__list a:hover { color: #fff; }
.toc--casiny .toc__list { columns: 2; }
.toc--casiny .toc__list a::before { content: 'A'; }
.toc[hidden] { display: none; }
.toc__head[aria-expanded="false"] + .toc__list { display: none; }

/* ---------------------------------------------------------------- data table */
.tablecard {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tablecard table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14.5px; }
.tablecard thead th {
    background: var(--table-head); color: #fff;
    font-size: 11.5px; font-weight: 700; letter-spacing: .09em;
    text-transform: uppercase; text-align: left;
    padding: 14px 18px; white-space: nowrap;
}
.tablecard thead th:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.tablecard thead th:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.tablecard tbody td { padding: 15px 18px; color: var(--text); vertical-align: top; }
.tablecard tbody tr:nth-child(odd) { background: var(--table-row-a); }
.tablecard tbody tr:nth-child(even) { background: var(--table-row-b); }
.tablecard tbody td:first-child { color: #fff; font-weight: 600; }
.tablecard caption { caption-side: bottom; font-size: 13px; color: var(--text-dim); padding-top: 10px; }

/* --------------------------------------------------------------- step blocks */
.steps {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px 32px;
}
.steps__title {
    font-family: var(--font-display); font-size: 20px; font-weight: 800;
    color: var(--heading); margin: 0 0 6px;
}
.steps__intro { color: var(--text-dim); font-size: 14.5px; margin: 0 0 22px; }
.steps__list { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps__list > li {
    position: relative; padding-left: 48px; margin: 0 0 22px;
    counter-increment: step;
}
.steps__list > li:last-child { margin-bottom: 0; }
.steps__list > li::before {
    content: counter(step);
    position: absolute; left: 0; top: -2px;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    color: var(--accent-2); border: 1.5px solid var(--accent-2);
}
.steps__list h4, .steps__st {
    display: block; font-family: var(--font-display);
    font-size: 15.5px; font-weight: 700; color: #fff; margin: 4px 0 5px;
}
.steps__list p { margin: 0 0 6px; font-size: 14.5px; color: var(--text-dim); }
.steps__list ul { margin: 8px 0 0; }

/* ---------------------------------------------------------------- offer card */
.offer {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 28px;
    display: grid; grid-template-columns: 132px 1fr auto; gap: 26px; align-items: center;
}
.offer__logo {
    background: rgba(255,255,255,.06); border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 14px; display: flex; align-items: center; justify-content: center;
}
.offer__logo img { max-height: 40px; width: auto; }
.offer__title {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
    font-family: var(--font-display); font-size: 22px; font-weight: 800;
    color: var(--heading); margin: 0 0 8px;
}
.offer__badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 700; color: var(--accent-2);
    border: 1px solid var(--accent-2); border-radius: 999px; padding: 3px 11px;
}
.offer__badge::before { content: '✓'; }
.offer p { margin: 0; font-size: 14.5px; color: var(--text-dim); }
.offer__side { text-align: center; }
.offer__more {
    display: block; margin-top: 10px; font-size: 13px;
    color: var(--accent-2); text-decoration: underline;
}

/* --------------------------------------------------------------- cta banner */
.ctabanner {
    position: relative; overflow: hidden;
    border-radius: var(--radius); border: 1px solid var(--border);
    background: linear-gradient(120deg, var(--hero-from), var(--hero-to));
    padding: 40px 44px;
}
.ctabanner__bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center; opacity: .5;
}
.ctabanner > * { position: relative; z-index: 1; }
.ctabanner h3 {
    font-family: var(--font-display); font-size: 25px; font-weight: 800;
    color: #fff; margin: 0 0 8px;
}
.ctabanner__amount {
    font-family: var(--font-display); font-size: 27px; font-weight: 800;
    color: var(--accent-2); margin: 0 0 12px;
}
.ctabanner p { margin: 0 0 20px; color: rgba(255,255,255,.86); max-width: 620px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* -------------------------------------------------------------- promo cards */
.promos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promo {
    position: relative; overflow: hidden; min-height: 208px;
    border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--panel) center/cover no-repeat;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 22px;
}
.promo::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,5,16,.15) 0%, rgba(4,5,16,.88) 78%);
}
.promo > * { position: relative; z-index: 1; }
.promo__tag {
    align-self: flex-start;
    font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: #fff; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px; padding: 4px 11px; margin-bottom: auto;
}
.promo h3 {
    font-family: var(--font-display); font-size: 19px; font-weight: 800;
    color: #fff; margin: 0 0 6px; text-transform: uppercase; line-height: 1.2;
}
.promo p { margin: 0 0 14px; font-size: 13.5px; color: rgba(255,255,255,.85); }
.promo .btn { align-self: flex-start; }

/* ----------------------------------------------------------------- carousel */
.games { background: var(--panel); border: 1px solid var(--border);
         border-radius: var(--radius); padding: 22px 24px; }
.games__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.games__title {
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    color: var(--heading); margin: 0;
}
.games__nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.games__all { font-size: 13.5px; font-weight: 700; color: var(--accent-2); }
.games__btn {
    width: 32px; height: 32px; border-radius: 9px; cursor: pointer;
    background: rgba(255,255,255,.07); border: 1px solid var(--border);
    color: #fff; display: flex; align-items: center; justify-content: center;
}
.games__btn:disabled { opacity: .4; cursor: default; }
.games__track {
    display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding-bottom: 4px;
}
.games__track::-webkit-scrollbar { display: none; }
.game { flex: 0 0 148px; }
.game img {
    width: 148px; height: 148px; object-fit: cover;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.game__name {
    display: block; font-size: 13.5px; font-weight: 600; color: #fff;
    margin-top: 9px; line-height: 1.3;
}
.game__prov { display: block; font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }

/* --------------------------------------------------------------- offer rows */
.offerrows { display: flex; flex-direction: column; gap: 14px; }
.offerrow {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 22px;
    display: grid; grid-template-columns: 186px 1fr auto; gap: 22px; align-items: center;
}
.offerrow__img img {
    width: 186px; height: 104px; object-fit: cover;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.offerrow__body h3 {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
    font-family: var(--font-display); font-size: 17.5px; font-weight: 700;
    color: var(--accent-2); margin: 0 0 7px;
}
.offerrow__lead { margin: 0 0 8px; font-size: 14.5px; color: var(--text); }
.offerrow__detail { font-size: 14px; color: var(--text-dim); }
.offerrow__detail > * { margin: 0 0 8px; }
.offerrow__detail > *:last-child { margin-bottom: 0; }
.offerrow__side { text-align: center; }

/* ------------------------------------------------- game list (carousel off) */
.gamelist {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 24px;
}
.gamelist__title {
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    color: var(--heading); margin: 0 0 14px;
}
.gamelist ul {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 8px 22px; margin: 0; padding: 0; list-style: none;
}
.gamelist li {
    position: relative; padding-left: 18px;
    font-size: 14px; color: var(--text);
}
.gamelist li::before {
    content: ''; position: absolute; left: 3px; top: .62em;
    width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2);
}
.gamelist__prov { color: var(--text-dim); font-size: 12.5px; }

/* ------------------------------------------------------------------ reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px;
}
.review__stars { color: var(--accent-2); font-size: 15px; letter-spacing: 2px; }
.review p { margin: 10px 0 14px; font-size: 14px; color: var(--text-dim); }
.review__by { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; }
.review__name { color: #fff; font-weight: 600; }
.review__date { color: var(--text-dim); }

.reviews__lead { color: var(--text-dim); font-size: 14.5px; margin: 0 0 14px; }

/* ------------------------------------------------------------------ verdict */
.verdict {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 30px;
}
.verdict__top { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.verdict__score {
    font-family: var(--font-display); font-size: 24px; font-weight: 800;
    color: #fff; background: var(--accent);
    border-radius: var(--radius-sm); padding: 8px 16px; flex: 0 0 auto;
}
.verdict__label {
    font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-dim); margin: 0 0 4px;
}
.verdict__claim {
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    color: #fff; margin: 0;
}
.verdict p { margin: 0; color: var(--text-dim); font-size: 14.5px; }

/* ---------------------------------------------------------------------- faq */
.faq { margin-top: 44px; }
.faq__h {
    font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 800; color: var(--accent-2); margin: 0 0 20px;
    padding-left: 14px; border-left: 4px solid var(--accent-2);
    scroll-margin-top: 90px;
}
.faq__item {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; text-align: left; cursor: pointer;
    background: none; border: 0; padding: 17px 22px;
    font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: #fff;
}
.faq__q::after { content: '+'; font-size: 21px; font-weight: 400; color: var(--accent-2); flex: 0 0 auto; }
.faq__q[aria-expanded="true"] {
    background: linear-gradient(90deg, var(--faq-open-from), var(--faq-open-to));
    color: var(--faq-open-text);
}
.faq__q[aria-expanded="true"]::after { content: '−'; color: var(--faq-open-text); }
.faq__a { padding: 16px 22px 20px; border-top: 1px solid var(--border); }
.faq__a > * { margin: 0 0 10px; }
.faq__a > *:last-child { margin-bottom: 0; }
.faq__a p { color: var(--text-dim); font-size: 14.5px; }
.faq__q[aria-expanded="false"] + .faq__a { display: none; }

/* casiny variant: Q/A badges, always open */
.faq--qa .faq__item { padding: 18px 22px; border-left: 3px solid var(--accent); }
.faq--qa .faq__q {
    padding: 0; font-size: 15.5px; color: var(--accent-2); cursor: default;
    align-items: flex-start;
}
.faq--qa .faq__q::after { display: none; }
.faq--qa .faq__a { padding: 10px 0 0; border: 0; }
.faq--qa .faq__q[aria-expanded="false"] + .faq__a { display: block; }
.faq--qa .faq__q[aria-expanded="true"] { background: none; color: var(--accent-2); }
.qa-badge {
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto; width: 20px; height: 20px; margin-right: 10px;
    border-radius: 50%; background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 700; line-height: 1;
}
.faq--qa .faq__a { display: flex; gap: 10px; }
.faq--qa .faq__a .qa-badge { background: var(--cta-from); color: var(--cta-text); margin-top: 2px; }

/* ------------------------------------------------------------------- footer */
.ftr { background: var(--bg-bar); border-top: 1px solid var(--border); margin-top: 50px; }
.ftr__row {
    display: grid; grid-template-columns: 1.2fr 2fr auto; gap: 40px;
    padding: 44px 0 30px;
}
.ftr__logo img { max-height: 38px; width: auto; margin-bottom: 14px; }
.ftr__blurb { font-size: 13.5px; color: var(--text-dim); margin: 0 0 16px; }
.ftr__row > div > a > img { max-height: 26px; width: auto; }
.ftr__cols { display: flex; flex-wrap: wrap; gap: 40px; }
.ftr__col h3 {
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    color: #fff; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .05em;
}
.ftr__col ul { margin: 0; padding: 0; list-style: none; }
.ftr__col li + li { margin-top: 8px; }
.ftr__col a { font-size: 13.5px; color: var(--text-dim); }
.ftr__col a:hover { color: #fff; }
.ftr__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.ftr__logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: flex-end; }
.ftr__logos img { max-height: 30px; width: auto; opacity: .75; }
.ftr__logos a:hover img { opacity: 1; }
.ftr__socials { display: flex; gap: 10px; }
.ftr__socials a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.07); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.ftr__legal {
    border-top: 1px solid var(--border); padding: 18px 0 26px;
    font-size: 12.5px; color: var(--text-dim);
}
.ftr__legal p { margin: 0 0 8px; }
.ftr__risk { font-style: italic; }

/* -------------------------------------------------------------- sticky offer */
.stickybar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: var(--bg-bar); border-top: 1px solid var(--border);
    transform: translateY(105%); transition: transform .3s;
}
.stickybar.is-on { transform: translateY(0); }
.stickybar__row {
    display: flex; align-items: center; gap: 22px;
    padding: 12px 0; min-height: 64px;
}
.stickybar__logo img { max-height: 28px; width: auto; }
.stickybar__rating { font-size: 13px; color: var(--text-dim); white-space: nowrap; }
.stickybar__rating b { color: var(--accent-2); font-size: 15px; }
.stickybar__bonus { min-width: 0; }
.stickybar__bonus .t {
    display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--text-dim);
}
.stickybar__bonus .v {
    display: block; font-family: var(--font-display); font-size: 15.5px;
    font-weight: 700; color: #fff;
}
.stickybar .btn { margin-left: auto; flex: 0 0 auto; }
.stickybar__close {
    width: 30px; height: 30px; flex: 0 0 auto; cursor: pointer;
    background: transparent; border: 1px solid var(--border); border-radius: 8px;
    color: var(--text-dim); font-size: 16px; line-height: 1;
}
body.has-stickybar { padding-bottom: 76px; }

/* -------------------------------------------------------------- breakpoints */
@media (max-width: 1024px) {
    .hero__panel { grid-template-columns: 1fr; padding: 36px 30px; }
    .hero__media { display: none; }
    .toc__list { columns: 2; }
    .promos, .reviews { grid-template-columns: repeat(2, 1fr); }
    .ftr__row { grid-template-columns: 1fr 1fr; }
    .ftr__aside { grid-column: 1 / -1; align-items: flex-start; }
    .ftr__logos { justify-content: flex-start; }
}

@media (max-width: 860px) {
    .hdr__nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-bar); border-bottom: 1px solid var(--border);
        padding: 14px 20px 20px;
    }
    .hdr__nav.is-open { display: block; }
    .hdr__nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
    .hdr__nav a { display: block; padding: 11px 4px; font-size: 15px; }
    .hdr__nav .sub { display: block; position: static; margin: 0 0 0 14px;
                     background: none; border: 0; padding: 0; }
    .hdr__burger { display: block; }
    .hdr__actions { margin-left: 0; }
    .hdr__row { position: relative; gap: 12px; }
}

@media (max-width: 720px) {
    body { font-size: 15.5px; }
    /* keep the header row inside the viewport: tighter gaps, smaller logo */
    .hdr__row { gap: 8px; min-height: 58px; }
    .hdr__logo img { max-height: 26px; }
    .hdr__actions { gap: 6px; }
    .hdr__actions .btn--sm { padding: 7px 13px; font-size: 12.5px; }
    .hero { padding: 20px 0 4px; }
    .hero__panel { padding: 28px 20px; border-radius: var(--radius-sm); }
    .toc { padding: 20px; }
    .toc__list { columns: 1; }
    .steps, .verdict, .offer, .ctabanner { padding: 22px 20px; }
    .promos, .reviews { grid-template-columns: 1fr; }
    .offerrow { grid-template-columns: 1fr; }
    .offerrow__img img { width: 100%; height: 150px; }
    .offerrow__side { text-align: left; }
    .offer { grid-template-columns: 1fr; text-align: left; }
    .offer__logo { max-width: 132px; }
    .offer__side { text-align: left; }
    .prose h2 { margin-top: 34px; }
    .ftr__row { grid-template-columns: 1fr; gap: 28px; }
    .stickybar__row { gap: 12px; flex-wrap: wrap; }
    .stickybar__rating, .stickybar__logo { display: none; }
    .games__track { gap: 10px; }
    .game { flex: 0 0 124px; }
    .game img { width: 124px; height: 124px; }
}

@media (max-width: 560px) {
    .hdr__actions .btn--ghost { display: none; }
    .hero h1 { font-size: clamp(24px, 7vw, 30px); }
    .hero__amount { font-size: clamp(21px, 6vw, 26px); }
    .container { padding: 0 14px; }
    .tablecard table { min-width: 420px; }
    .btn--lg { padding: 13px 24px; font-size: 15.5px; }
    .hero__ctas .btn { flex: 1 1 auto; }
}
