/* ==========================================================================
   SlotScope — main stylesheet
   BEM methodology · unique class vocabulary · dark-premium editorial theme
   Token prefix: --sv-*
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  /* palette */
  --sv-ink:      #0a0e1c;
  --sv-ink-1:    #0e1428;
  --sv-ink-2:    #131b33;
  --sv-ink-3:    #1b2544;
  --sv-line:     rgba(255,255,255,.09);
  --sv-line-2:   rgba(255,255,255,.16);
  --sv-text:     #eaf0fb;
  --sv-muted:    #97a5c6;
  --sv-faint:    #6c7899;

  --sv-accent:   #2ee6a6;   /* emerald */
  --sv-accent-2: #12b487;
  --sv-gold:     #f6c860;   /* gold */
  --sv-gold-2:   #e0a93c;
  --sv-rose:     #ff6d8b;

  /* effects */
  --sv-radius:   14px;
  --sv-radius-sm: 9px;
  --sv-radius-lg: 22px;
  --sv-shadow:   0 18px 48px -20px rgba(0,0,0,.65);
  --sv-shadow-sm: 0 8px 24px -14px rgba(0,0,0,.7);
  --sv-glow:     0 0 0 1px rgba(46,230,166,.35), 0 14px 40px -16px rgba(46,230,166,.35);

  /* type */
  --sv-font:  "Segoe UI", Roboto, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --sv-display: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --sv-fs-hero: clamp(2.1rem, 5vw, 3.6rem);
  --sv-fs-h2:   clamp(1.5rem, 3vw, 2.15rem);
  --sv-fs-h3:   clamp(1.1rem, 2vw, 1.3rem);

  /* layout */
  --sv-wrap: 1180px;
  --sv-gutter: clamp(16px, 4vw, 40px);

  /* motion */
  --sv-ease: cubic-bezier(.22,.61,.36,1);
}

/* 2. Reset & base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sv-font);
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(46,230,166,.10), transparent 60%),
    radial-gradient(1000px 520px at 6% 4%, rgba(246,200,96,.07), transparent 55%),
    var(--sv-ink);
  color: var(--sv-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3 { font-family: var(--sv-display); line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
ul { list-style: none; padding: 0; }

/* 3. Utilities ----------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skiplink {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--sv-accent); color: #04120c; padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skiplink:focus { left: 0; }
:focus-visible { outline: 2px solid var(--sv-accent); outline-offset: 2px; border-radius: 4px; }

.wrap, .masthead__bar, .spotlight__inner, .pagehero__inner, .stack, .pickpanel__inner,
.colophon__grid, .playsafe__inner {
  width: min(100% - (var(--sv-gutter) * 2), var(--sv-wrap));
  margin-inline: auto;
}
.stack { padding-block: clamp(38px, 6vw, 72px); }
.stack--center { display: grid; place-items: center; }
.stack__head { margin-bottom: clamp(20px, 3vw, 32px); max-width: 62ch; }
.stack__title { font-size: var(--sv-fs-h2); }
.stack__sub { color: var(--sv-muted); margin-top: 8px; }

/* 4. Buttons (cta) ------------------------------------------------------- */
.cta {
  --_bg: var(--sv-ink-3);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; letter-spacing: .01em; border: 1px solid transparent;
  background: var(--_bg); color: var(--sv-text);
  transition: transform .18s var(--sv-ease), box-shadow .2s var(--sv-ease), filter .2s;
  will-change: transform;
}
.cta:hover { transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta__arrow { transition: transform .2s var(--sv-ease); }
.cta:hover .cta__arrow { transform: translateX(4px); }
.cta--primary { --_bg: linear-gradient(135deg, var(--sv-accent), var(--sv-accent-2)); color: #04130d; box-shadow: 0 10px 30px -12px rgba(46,230,166,.6); }
.cta--gold { --_bg: linear-gradient(135deg, var(--sv-gold), var(--sv-gold-2)); color: #241a02; box-shadow: 0 10px 30px -12px rgba(246,200,96,.55); }
.cta--ghost { --_bg: transparent; border-color: var(--sv-line-2); color: var(--sv-text); }
.cta--ghost:hover { border-color: var(--sv-accent); }
.cta--lg { min-height: 56px; padding: 0 30px; font-size: 1.05rem; }
.cta--sm { min-height: 40px; padding: 0 16px; font-size: .9rem; }

/* 5. Chips & badges ------------------------------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chips__item {
  font-size: .74rem; font-weight: 600; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--sv-line); color: var(--sv-muted);
}
.chips__item--crypto { color: var(--sv-gold); border-color: rgba(246,200,96,.4); }
.chips__item--fastPayout,
.chips__item--instantWithdrawal { color: var(--sv-accent); border-color: rgba(46,230,166,.4); }
.chips__item--noDeposit { color: var(--sv-rose); border-color: rgba(255,109,139,.4); }

.badge {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: 3px 8px; border-radius: 6px;
  background: rgba(255,255,255,.06); color: var(--sv-muted); border: 1px solid var(--sv-line);
}
.badge--verified { color: var(--sv-accent); border-color: rgba(46,230,166,.45); background: rgba(46,230,166,.1); }
.badge--popular  { color: var(--sv-gold); border-color: rgba(246,200,96,.4); }
.badge--trending { color: var(--sv-rose); border-color: rgba(255,109,139,.4); }
.badge--new      { color: #6ea8ff; border-color: rgba(110,168,255,.4); }

/* rating stars */
.ratestars { position: relative; display: inline-block; font-size: .95rem; letter-spacing: 1px; line-height: 1; }
.ratestars__track { color: rgba(255,255,255,.16); }
.ratestars__fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--sv-gold); }

/* 6. Brand logo ---------------------------------------------------------- */
.brandmark { display: inline-flex; align-items: center; gap: 10px; }
.brandmark__glyph { flex: none; filter: drop-shadow(0 4px 10px rgba(46,230,166,.25)); }
.brandmark__text { font-family: var(--sv-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.03em; }
.brandmark__name { color: var(--sv-text); }
.brandmark__dot { color: var(--sv-accent); }
.brandmark--footer .brandmark__text { font-size: 1.2rem; }

/* 7. Masthead / nav ------------------------------------------------------ */
.masthead {
  position: sticky; top: 0; z-index: 90;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--sv-ink) 82%, transparent);
  border-bottom: 1px solid var(--sv-line);
}
.masthead__bar { display: flex; align-items: center; gap: 18px; min-height: 68px; }
.masthead__brand { flex: none; }
.topnav { margin-inline: auto; }
.topnav__list { display: flex; gap: 4px; }
.topnav__link {
  display: inline-flex; align-items: center; height: 40px; padding: 0 13px; border-radius: 9px;
  color: var(--sv-muted); font-size: .92rem; font-weight: 600; transition: color .15s, background .15s;
  white-space: nowrap;
}
.topnav__link:hover { color: var(--sv-text); background: rgba(255,255,255,.05); }
.topnav__link--active { color: var(--sv-text); }
.topnav__link[data-nav="review"] { color: var(--sv-gold); }
.masthead__tools { display: flex; align-items: center; gap: 10px; flex: none; }
.masthead__disclosure {
  font-size: .72rem; color: var(--sv-faint); text-align: center;
  padding: 6px var(--sv-gutter); border-top: 1px solid var(--sv-line);
}

/* burger */
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--sv-line); border-radius: 11px;
  background: var(--sv-ink-2); flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger__line { width: 20px; height: 2px; background: var(--sv-text); border-radius: 2px; transition: transform .25s var(--sv-ease), opacity .2s; }
.burger--on .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--on .burger__line:nth-child(2) { opacity: 0; }
.burger--on .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobilenav {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); z-index: 100;
  background: var(--sv-ink-1); border-left: 1px solid var(--sv-line);
  transform: translateX(100%); transition: transform .3s var(--sv-ease);
  padding: 84px 22px 28px; overflow-y: auto;
}
.mobilenav:not([hidden]) { display: block; }
.mobilenav--open { transform: translateX(0); box-shadow: -30px 0 60px -20px rgba(0,0,0,.7); }
.mobilenav__list { display: grid; gap: 4px; margin-bottom: 20px; }
.mobilenav__link {
  display: block; padding: 14px 14px; border-radius: 11px; font-weight: 600; color: var(--sv-text);
  border: 1px solid transparent;
}
.mobilenav__link:hover { background: rgba(255,255,255,.05); border-color: var(--sv-line); }

/* 8. Custom select (picker) --------------------------------------------- */
.picker { position: relative; }
.picker__trigger {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px;
  background: var(--sv-ink-2); border: 1px solid var(--sv-line-2); border-radius: 11px; color: var(--sv-text);
  font-weight: 600; transition: border-color .15s, background .15s;
}
.picker__trigger:hover { border-color: var(--sv-accent); }
.picker__caret {
  width: 8px; height: 8px; border-right: 2px solid var(--sv-muted); border-bottom: 2px solid var(--sv-muted);
  transform: rotate(45deg) translateY(-2px); transition: transform .25s var(--sv-ease);
}
.picker--open .picker__caret { transform: rotate(-135deg) translateY(-2px); }
.picker__panel {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px; z-index: 120;
  background: var(--sv-ink-2); border: 1px solid var(--sv-line-2); border-radius: 13px;
  box-shadow: var(--sv-shadow); padding: 6px; max-height: 320px; overflow-y: auto;
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .18s var(--sv-ease), transform .18s var(--sv-ease);
}
.picker--open .picker__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.picker__option {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
  cursor: pointer; color: var(--sv-muted); transition: background .12s, color .12s;
}
.picker__option-label { display: inline-flex; align-items: center; gap: 8px; flex: 1; }
.picker__option-meta { font-size: .72rem; color: var(--sv-faint); font-weight: 600; }
.picker__option--active { background: rgba(255,255,255,.06); color: var(--sv-text); }
.picker__option--selected { color: var(--sv-accent); font-weight: 600; }
.picker__check { width: 14px; opacity: 0; }
.picker__option--selected .picker__check {
  opacity: 1; height: 8px; border-right: 2px solid var(--sv-accent); border-bottom: 2px solid var(--sv-accent);
  transform: rotate(45deg); margin-right: 2px;
}
.picker--block { width: 100%; }
.picker--block .picker__trigger { width: 100%; justify-content: space-between; }
.picker--block .picker__panel { left: 0; right: 0; }
.langpick__flag { font-size: 1.05rem; }

/* 9. Spotlight (home hero) ---------------------------------------------- */
.spotlight { padding-block: clamp(30px, 6vw, 68px); }
.spotlight__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 54px); align-items: center; }
.spotlight__eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sv-accent); padding: 6px 12px; border: 1px solid rgba(46,230,166,.3); border-radius: 999px; margin-bottom: 18px;
}
.spotlight__h1 { font-size: var(--sv-fs-hero); background: linear-gradient(180deg, #fff, #b9c6e6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.spotlight__value { color: var(--sv-muted); font-size: 1.1rem; max-width: 46ch; margin-top: 16px; }
.spotlight__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.spotlight__trust { margin-top: 26px; }

/* page hero (category / review) */
.pagehero { padding-block: clamp(28px, 5vw, 56px); border-bottom: 1px solid var(--sv-line); }
.pagehero__eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sv-accent); margin-bottom: 12px; }
.pagehero__h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.pagehero__intro { color: var(--sv-muted); font-size: 1.08rem; max-width: 68ch; margin-top: 14px; }
.pagehero--review { background: linear-gradient(180deg, rgba(246,200,96,.06), transparent); }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .84rem; color: var(--sv-faint); margin-bottom: 16px; }
.crumbs a:hover { color: var(--sv-accent); }

/* 10. Venue card --------------------------------------------------------- */
.venuegrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.venue {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: linear-gradient(180deg, var(--sv-ink-2), var(--sv-ink-1));
  border: 1px solid var(--sv-line); border-radius: var(--sv-radius-lg); padding: 20px;
  transition: transform .2s var(--sv-ease), border-color .2s, box-shadow .2s;
}
.venue:hover { transform: translateY(-4px); border-color: var(--sv-line-2); box-shadow: var(--sv-shadow); }
.venue--featured { border-color: rgba(46,230,166,.45); box-shadow: var(--sv-glow); }
.venue__ribbon {
  position: absolute; top: 0; right: 20px; transform: translateY(-50%);
  background: linear-gradient(135deg, var(--sv-accent), var(--sv-accent-2)); color: #04130d;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 999px;
}
.venue__head { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.venue__rank { position: absolute; top: 14px; left: 14px; font-size: .78rem; font-weight: 800; color: var(--sv-faint); }
.venue__logo-svg { border-radius: 12px; }
.venue__name { font-size: 1.15rem; }
.venue__id { display: flex; flex-direction: column; gap: 5px; align-items: start; }
.venue__score { text-align: right; display: flex; flex-direction: column; gap: 3px; align-items: end; }
.venue__score-num { font-weight: 800; font-size: 1.15rem; color: var(--sv-gold); }
.venue__offer {
  display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: var(--sv-radius);
  background: rgba(46,230,166,.06); border: 1px dashed rgba(46,230,166,.35);
}
.venue__offer-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sv-muted); }
.venue__offer-value { font-weight: 800; font-size: 1.2rem; color: var(--sv-text); }
.venue__meta { display: grid; gap: 6px; }
.venue__meta-row { display: flex; justify-content: space-between; font-size: .9rem; }
.venue__meta-row dt { color: var(--sv-muted); }
.venue__meta-row dd { font-weight: 700; }
.venue__cta { margin-top: auto; }

/* 11. League table (CSS grid — no <table>) -------------------------------- */
.leaguetable {
  /* shared column template drives both the header and every row */
  --lt-cols: 64px minmax(160px, 1.7fr) 1.2fr .9fr 1.1fr 132px;
  border: 1px solid var(--sv-line); border-radius: var(--sv-radius-lg);
  overflow: hidden; background: var(--sv-ink-1);
}
.leaguetable__head,
.leaguetable__row {
  display: grid; grid-template-columns: var(--lt-cols);
  align-items: center; gap: 14px; padding: 14px 18px;
}
.leaguetable__head {
  background: var(--sv-ink-2); border-bottom: 1px solid var(--sv-line);
}
.leaguetable__col {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--sv-muted); font-weight: 700;
}
.leaguetable__row { border-bottom: 1px solid var(--sv-line); transition: background .18s var(--sv-ease); }
.leaguetable__row:last-child { border-bottom: 0; }
.leaguetable__row:hover { background: rgba(255,255,255,.03); }
.leaguetable__row--top { background: linear-gradient(90deg, rgba(46,230,166,.10), rgba(46,230,166,0) 55%); }
.leaguetable__row--top:hover { background: linear-gradient(90deg, rgba(46,230,166,.15), rgba(46,230,166,0) 55%); }
.leaguetable__cell { min-width: 0; }
.leaguetable__rank {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--sv-ink-3); font-weight: 800; font-size: .9rem;
}
.leaguetable__row--top .leaguetable__rank { background: linear-gradient(135deg, var(--sv-accent), var(--sv-accent-2)); color: #04130d; }
.leaguetable__brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.leaguetable__brand .venue__logo-svg { width: 40px; height: 40px; flex: none; }
.leaguetable__brandname { font-weight: 700; display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.leaguetable__tag { font-size: .7rem; font-style: normal; color: var(--sv-accent); font-weight: 600; }
.leaguetable__bonus { font-weight: 700; color: var(--sv-text); }
.leaguetable__cell--dep { font-weight: 700; }
.leaguetable__cell--rating { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.leaguetable__score { font-weight: 800; color: var(--sv-gold); font-size: 1.05rem; }
.leaguetable__cell--cta { display: flex; justify-content: flex-end; }
.leaguetable__btn { width: 100%; }

/* 12. Trustmark ---------------------------------------------------------- */
.trustmark {
  display: grid; grid-template-columns: auto 1fr; gap: 14px 16px; align-items: center;
  background: var(--sv-ink-2); border: 1px solid var(--sv-line); border-radius: var(--sv-radius);
  padding: 18px 20px; max-width: 520px;
}
.trustmark__rating { display: flex; align-items: center; gap: 10px; }
.trustmark__rating strong { font-size: 1.6rem; }
.trustmark__label { font-weight: 700; }
.trustmark__text { color: var(--sv-muted); font-size: .9rem; }
.trustmark__link { grid-column: 1 / -1; color: var(--sv-accent); font-weight: 600; font-size: .9rem; }
.trustmark__link:hover { text-decoration: underline; }
.trustmark--compact { padding: 14px 16px; gap: 10px 14px; }
.trustmark--compact .trustmark__rating strong { font-size: 1.3rem; }

/* 13. Editor's choice (pickpanel) --------------------------------------- */
.pickpanel { padding-block: clamp(30px, 5vw, 60px); }
.pickpanel__inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 4vw, 44px); align-items: center;
  background: linear-gradient(135deg, rgba(46,230,166,.08), rgba(246,200,96,.06));
  border: 1px solid var(--sv-line-2); border-radius: var(--sv-radius-lg); padding: clamp(24px, 4vw, 44px);
}
.pickpanel__kicker { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--sv-gold); }
.pickpanel__name { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 6px; }
.pickpanel__headline { font-size: 1.2rem; color: var(--sv-text); margin-top: 6px; font-weight: 700; }
.pickpanel__points { display: grid; gap: 8px; margin: 18px 0; }
.pickpanel__points li { position: relative; padding-left: 26px; color: var(--sv-muted); }
.pickpanel__points li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px;
  border-left: 2px solid var(--sv-accent); border-bottom: 2px solid var(--sv-accent); transform: rotate(-45deg);
}
.pickpanel__smallprint { font-size: .78rem; color: var(--sv-faint); margin-top: 14px; }
.promostack {
  display: grid; place-items: center; gap: 2px; text-align: center;
  background: var(--sv-ink-1); border: 1px solid var(--sv-line); border-radius: var(--sv-radius-lg); padding: 28px 20px;
  box-shadow: var(--sv-shadow-sm);
}
.promostack__match { font-family: var(--sv-display); font-size: clamp(2.6rem, 7vw, 3.8rem); font-weight: 800; color: var(--sv-accent); line-height: 1; }
.promostack__plus { color: var(--sv-muted); font-size: 1.2rem; }
.promostack__spins { font-family: var(--sv-display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: var(--sv-gold); }
.promostack__nodep { color: var(--sv-rose); font-weight: 700; margin-top: 6px; }
.promostack__mindep { color: var(--sv-muted); font-size: .85rem; margin-top: 8px; }

/* 14. Why grid ----------------------------------------------------------- */
.whygrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.whygrid__item { background: var(--sv-ink-2); border: 1px solid var(--sv-line); border-radius: var(--sv-radius); padding: 22px; }
.whygrid__h { font-size: var(--sv-fs-h3); margin-bottom: 8px; }
.whygrid__p { color: var(--sv-muted); font-size: .95rem; }

/* 15. Review page -------------------------------------------------------- */
.verdict { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; background: var(--sv-ink-2); border: 1px solid var(--sv-line-2); border-radius: var(--sv-radius-lg); padding: 26px; margin-bottom: 24px; }
.verdict__scorebox { display: grid; place-items: center; width: 120px; height: 120px; border-radius: 50%; background: conic-gradient(var(--sv-accent) 92%, rgba(255,255,255,.1) 0); }
.verdict__scorebox::before { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; background: var(--sv-ink-1); }
.verdict__score { position: relative; font-size: 2.4rem; font-weight: 800; color: var(--sv-accent); }
.verdict__scorelabel { position: relative; font-size: .7rem; color: var(--sv-muted); }
.verdict__scorebox { position: relative; }
.verdict__title { font-size: var(--sv-fs-h2); margin-bottom: 8px; }
.verdict__text { color: var(--sv-muted); }
.factgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.factgrid__title, .proscons__col h3 { font-size: var(--sv-fs-h3); margin-bottom: 14px; }
.factlist { background: var(--sv-ink-2); border: 1px solid var(--sv-line); border-radius: var(--sv-radius); overflow: hidden; }
.factlist__row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px; border-bottom: 1px solid var(--sv-line); }
.factlist__row:last-child { border-bottom: 0; }
.factlist__row dt { color: var(--sv-muted); }
.factlist__row dd { font-weight: 700; text-align: right; }
.proscons { display: grid; gap: 16px; }
.proscons__col { background: var(--sv-ink-2); border: 1px solid var(--sv-line); border-radius: var(--sv-radius); padding: 18px 20px; }
.proscons__col ul { display: grid; gap: 8px; }
.proscons__col li { position: relative; padding-left: 24px; color: var(--sv-muted); }
.proscons__col--pro li::before { content: "✓"; position: absolute; left: 0; color: var(--sv-accent); font-weight: 800; }
.proscons__col--con li::before { content: "×"; position: absolute; left: 0; color: var(--sv-rose); font-weight: 800; }

/* 16. QA / FAQ ----------------------------------------------------------- */
.qa { display: grid; gap: 10px; max-width: 860px; }
.qa__item { background: var(--sv-ink-2); border: 1px solid var(--sv-line); border-radius: var(--sv-radius); overflow: hidden; }
.qa__q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; font-weight: 700; cursor: pointer; list-style: none; }
.qa__q::-webkit-details-marker { display: none; }
.qa__icon { position: relative; flex: none; width: 18px; height: 18px; }
.qa__icon::before, .qa__icon::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--sv-accent); }
.qa__icon::before { width: 100%; height: 2px; }
.qa__icon::after { width: 2px; height: 100%; transition: transform .25s var(--sv-ease); }
.qa__item[open] .qa__icon::after { transform: scaleY(0); }
.qa__a { padding: 0 20px 18px; color: var(--sv-muted); }

/* 17. Play safe ---------------------------------------------------------- */
.playsafe { padding-block: clamp(30px, 4vw, 48px); }
.playsafe__inner { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; background: var(--sv-ink-2); border: 1px solid var(--sv-line); border-radius: var(--sv-radius-lg); padding: clamp(20px, 3vw, 32px); }
.playsafe__age { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; border: 2px solid var(--sv-rose); color: var(--sv-rose); font-weight: 800; font-size: 1.1rem; }
.playsafe__title { font-size: var(--sv-fs-h3); margin-bottom: 6px; }
.playsafe__text { color: var(--sv-muted); font-size: .95rem; }
.playsafe__help { margin-top: 8px; font-size: .9rem; }
.playsafe__help a { color: var(--sv-accent); font-weight: 600; }
.playsafe__terms { color: var(--sv-faint); }

/* 18. Colophon (footer) -------------------------------------------------- */
.colophon { border-top: 1px solid var(--sv-line); margin-top: 40px; padding-block: clamp(32px, 5vw, 56px); background: var(--sv-ink-1); }
.colophon__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.colophon__about { color: var(--sv-muted); font-size: .92rem; margin: 14px 0 18px; max-width: 46ch; }
.colophon__title { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sv-faint); margin-bottom: 14px; }
.colophon__links { display: grid; gap: 10px; }
.colophon__links a { color: var(--sv-muted); font-size: .95rem; }
.colophon__links a:hover { color: var(--sv-accent); }
.colophon__disclaimer { width: min(100% - (var(--sv-gutter)*2), var(--sv-wrap)); margin: 28px auto 0; padding-top: 22px; border-top: 1px solid var(--sv-line); color: var(--sv-faint); font-size: .82rem; }
.colophon__age { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--sv-rose); color: var(--sv-rose); font-weight: 800; font-size: .72rem; margin-right: 6px; }
.colophon__rights { margin-top: 10px; }

/* 19. Dockbar (sticky mobile CTA) --------------------------------------- */
.dockbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  display: none; align-items: center; gap: 12px; justify-content: space-between;
  background: color-mix(in srgb, var(--sv-ink-2) 94%, transparent); backdrop-filter: blur(12px);
  border: 1px solid var(--sv-line-2); border-radius: 16px; padding: 10px 12px;
  box-shadow: var(--sv-shadow); transform: translateY(140%); transition: transform .3s var(--sv-ease);
}
.dockbar--show { transform: translateY(0); }
.dockbar__info { display: flex; flex-direction: column; line-height: 1.2; }
.dockbar__offer { font-weight: 800; }
.dockbar__sub { font-size: .74rem; color: var(--sv-muted); }
.dockbar__cta { flex: none; }

/* 20. Sections list separators ------------------------------------------ */
.stack + .stack { border-top: 1px solid var(--sv-line); }

/* 21. Breakpoints -------------------------------------------------------- */
@media (max-width: 1080px) {
  .topnav { display: none; }
  .burger { display: flex; }
  .masthead__lang { display: none; } /* language lives in mobile menu on small screens */
}
@media (max-width: 900px) {
  .spotlight__inner { grid-template-columns: 1fr; }
  .spotlight__aside { max-width: 420px; }
  .pickpanel__inner { grid-template-columns: 1fr; }
  .factgrid { grid-template-columns: 1fr; }
  .colophon__grid { grid-template-columns: 1fr 1fr; }
  .colophon__col--brand { grid-column: 1 / -1; }
}
/* comparison "table" grid -> stacked cards before it gets cramped */
@media (max-width: 820px) {
  .leaguetable { border: 0; background: transparent; overflow: visible; }
  .leaguetable__head { display: none; }

  .leaguetable__body { display: grid; gap: 14px; }
  .leaguetable__row {
    position: relative;
    grid-template-columns: 1fr 1fr; gap: 14px 18px; padding: 18px;
    background: linear-gradient(180deg, var(--sv-ink-2), var(--sv-ink-1));
    border: 1px solid var(--sv-line); border-radius: var(--sv-radius-lg);
  }
  .leaguetable__row:hover { background: linear-gradient(180deg, var(--sv-ink-2), var(--sv-ink-1)); }
  .leaguetable__row--top { border-color: rgba(46,230,166,.45); box-shadow: var(--sv-glow); background: linear-gradient(180deg, rgba(46,230,166,.08), var(--sv-ink-1)); }

  /* every cell becomes label + value stacked */
  .leaguetable__cell { display: flex; flex-direction: column; gap: 4px; }
  .leaguetable__cell[data-th]::before {
    content: attr(data-th); font-size: .68rem; text-transform: uppercase;
    letter-spacing: .05em; color: var(--sv-muted); font-weight: 700;
  }
  /* casino header spans full width; rank floats as a corner badge */
  .leaguetable__cell--casino { grid-column: 1 / -1; }
  .leaguetable__cell--casino::before { display: none; }
  .leaguetable__cell--rank { position: absolute; top: 14px; right: 14px; }
  .leaguetable__cell--rank::before { display: none; }
  .leaguetable__cell--rating { grid-column: 1 / -1; }
  .leaguetable__cell--cta { grid-column: 1 / -1; }
  .leaguetable__btn { width: 100%; }
}

@media (max-width: 640px) {
  .dockbar { display: flex; }
  .colophon__grid { grid-template-columns: 1fr; }
  .playsafe__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .verdict { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .leaguetable__row { grid-template-columns: 1fr; }
}
@media (min-width: 1400px) {
  :root { --sv-wrap: 1280px; }
}

/* motion-reduce */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
