/* ═══════════════════════════════════════════════
   minibetgames.org — Minibet Casino review
   Midnight Black / Minibet Yellow theme
   Colours sampled from minibet.games
   ═══════════════════════════════════════════════ */

/* ── Self-hosted Outfit (variable, 400–800) ──
   Served from /fonts instead of Google's CDN: no third-party
   request, no CORS/private-network errors on localhost, and
   no visitor IPs handed to Google. 47 KB for the full range. */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg:        #0b0b0c;
  --bg-2:      #111112;
  --surface:   #151516;
  --card:      #1b1b1d;
  --card-2:    #232326;
  --border:    rgba(255,255,255,.085);
  --border-gold: rgba(255,214,10,.26);

  --gold:      #ffd60a;   /* Minibet primary yellow */
  --gold-lt:   #ffd577;   /* gradient start on site buttons */
  --gold-dk:   #caa251;   /* gradient end on site buttons */
  --gold-bg:   rgba(255,214,10,.09);

  --lime:      #1cd437;   /* live/win green used on site */
  --red:       #e0524f;
  --green:     #1cd437;

  --text:      #ffffff;
  --text-2:    #babbbe;
  --text-3:    #97959e;   /* raised from #7a7880 — clears WCAG AA 4.5:1 on card backgrounds */

  --font-head: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --max: 1180px;
  --gap: clamp(16px, 4vw, 32px);
  --shadow: 0 18px 48px rgba(0,0,0,.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 78px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  font-size: 16.5px;
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
strong { color: #fff; font-weight: 700; }
em { color: var(--gold); font-style: normal; }

.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;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 16px 38px; font-size: 16.5px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); color: #14110a; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,214,10,.35); }

.btn-yellow { background: var(--gold); color: #100e00; }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,214,10,.4); }

.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold-bg); transform: translateY(-2px); }

.pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,214,10,.45); }
  55%     { box-shadow: 0 0 0 14px rgba(255,214,10,0); }
}
@media (prefers-reduced-motion: reduce) {
  .pulse, .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(11,11,12,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { width: 148px; height: auto; }

.nav-wrap { display: flex; align-items: center; gap: 24px; }
.nav { display: flex; gap: 18px; }
.nav-link {
  font-family: var(--font-head); font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-2); transition: color .2s;
  position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .25s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 901;
}
.burger span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Breadcrumbs ── */
.breadcrumbs { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 11px 0; font-size: 13.5px; }
.bc-list { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: var(--text-3); }
.bc-link { color: var(--text-2); }
.bc-link:hover { color: var(--gold); }
.bc-sep::before { content: '›'; color: var(--text-3); }

/* ── Live win ticker ── */
.ticker {
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 9px 0; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.ticker-track { display: flex; gap: 34px; width: max-content; animation: slide 38s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); white-space: nowrap; }
.ticker-item b { color: var(--text-2); font-weight: 600; }
.ticker-item i { font-style: normal; color: var(--lime); font-weight: 700; }
.ticker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(44px, 7vw, 80px) 0 clamp(40px, 6vw, 68px);
  background:
    radial-gradient(1000px 460px at 12% -10%, rgba(255,214,10,.13), transparent 62%),
    radial-gradient(760px 420px at 92% 6%, rgba(202,162,81,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.hero-eyebrow {
  font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(30px, 5.2vw, 52px); line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-sub { color: var(--text-2); font-size: clamp(15.5px, 1.7vw, 18px); margin-bottom: 24px; max-width: 60ch; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 26px; }
.hstat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 13px 10px; text-align: center;
}
.hstat-val { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(16px,2.2vw,21px); color: var(--gold); line-height: 1.2; }
.hstat-lbl { display: block; font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 14px; }
.hero-note { font-size: 13px; color: var(--text-3); }

.hero-visual { position: relative; }
.hero-card {
  background: var(--card); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
.hero-card img { width: 100%; }
.hero-card-body { padding: 18px 20px 22px; }
.rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 19px; }
.rating-text { font-size: 14px; color: var(--text-2); }
.rating-big { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--gold); line-height: 1; }

/* ── Sections ── */
.section { padding: clamp(46px, 7vw, 80px) 0; }
.section-alt { background: var(--bg-2); }
.section-header { text-align: center; max-width: 760px; margin: 0 auto clamp(28px, 4vw, 42px); }
.section-eyebrow {
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.section-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(24px, 3.6vw, 37px); line-height: 1.2; margin-bottom: 12px; letter-spacing: -.01em;
}
.section-lead { color: var(--text-2); font-size: 16px; }

h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 2.3vw, 24px); line-height: 1.3; margin-bottom: 10px; }
h4 { font-family: var(--font-head); font-weight: 700; font-size: 17.5px; margin-bottom: 8px; }
/* h3 used inside cards/steps so the heading outline stays h2 → h3 without the visual jump */
.card-h { font-size: 17.5px; line-height: 1.35; margin-bottom: 8px; }
.prose p { color: var(--text-2); margin-bottom: 16px; }
.prose h3 { margin-top: 30px; color: var(--text); }
.prose ul { margin: 0 0 18px; }
.prose ul li { color: var(--text-2); padding-left: 26px; position: relative; margin-bottom: 9px; }
.prose ul li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 2px; }

/* ── Table of contents ── */
.toc {
  background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 34px;
}
.toc-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); margin-bottom: 12px; }
.toc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 6px 22px; }
.toc-list a { color: var(--text-2); font-size: 14.5px; border-bottom: 1px dotted transparent; }
.toc-list a:hover { color: var(--gold); border-bottom-color: var(--border-gold); }

/* ── Author block ── */
.author-block {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: var(--r-md); padding: 14px 18px; margin-bottom: 30px;
}
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: #100e00; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 800;
}
.author-info { display: flex; flex-direction: column; line-height: 1.4; }
.author-name { font-weight: 700; font-size: 15px; }
.author-role { font-size: 13px; color: var(--text-3); }
.author-meta { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; font-size: 12.5px; color: var(--text-3); }
.author-check { color: var(--green); }

/* ── Verdict box ── */
.verdict-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(20px, 3vw, 34px); align-items: start; }
.verdict-box {
  background: var(--card); border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); padding: clamp(20px, 3vw, 30px);
}
.scorecard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.score-total { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.score-total .rating-big { font-size: 46px; }
.score-total span.of { color: var(--text-3); font-size: 15px; }
.score-row { margin-bottom: 13px; }
.score-row-top { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 5px; }
.score-row-top b { color: var(--gold); font-family: var(--font-head); }
.score-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.score-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dk), var(--gold)); border-radius: 4px; }

/* ── Info table ── */
.info-table-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--border); }
.info-table { width: 100%; border-collapse: collapse; background: var(--card); font-size: 15px; min-width: 460px; }
.info-table th, .info-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.info-table th { color: var(--text-3); font-weight: 600; width: 42%; font-size: 14px; }
.info-table td { color: var(--text); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) { background: rgba(255,255,255,.02); }
.td-gold { color: var(--gold) !important; font-weight: 700; }
.td-warn { color: #ff9d9b !important; font-weight: 600; }

/* ── Bonus cards ── */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.bonus-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s, border-color .22s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.bonus-card.featured { border-color: var(--gold); }
.bonus-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-bottom: 1px solid var(--border); }
.bonus-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.bonus-tag {
  align-self: flex-start; font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 50px;
  background: var(--gold-bg); color: var(--gold); border: 1px solid var(--border-gold); margin-bottom: 12px;
}
.bonus-tag.live { background: rgba(28,212,55,.1); color: var(--lime); border-color: rgba(28,212,55,.3); }
.bonus-amt { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px,3.2vw,31px); color: var(--gold); line-height: 1.1; margin-bottom: 6px; }
.bonus-card p { color: var(--text-2); font-size: 15px; margin-bottom: 14px; }
.bonus-terms { list-style: none; font-size: 13.5px; color: var(--text-3); margin-bottom: 18px; }
.bonus-terms li { padding-left: 20px; position: relative; margin-bottom: 5px; }
.bonus-terms li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }
.bonus-card .btn { margin-top: auto; }
.promo-code {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px;
  color: var(--text-2); margin-bottom: 14px; flex-wrap: wrap;
}
.promo-code code {
  font-family: 'Courier New', monospace; font-weight: 700; letter-spacing: .08em;
  background: rgba(255,214,10,.12); color: var(--gold); border: 1px dashed var(--border-gold);
  padding: 4px 12px; border-radius: 6px;
}

/* ── Deposit ladder ── */
.ladder { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; margin-top: 26px; }
.ladder-step {
  background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px; text-align: center;
}
.ladder-num {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--border-gold); color: var(--gold);
  font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 10px;
}
.ladder-step b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--gold); }
.ladder-step small { color: var(--text-3); font-size: 13px; }

/* ── Games ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px,1fr)); gap: 14px; margin-bottom: 34px; }
.cat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 20px 14px; text-align: center; transition: border-color .2s, transform .2s;
}
.cat-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.cat-icon { font-size: 27px; line-height: 1; margin-bottom: 8px; }
.cat-card b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15.5px; letter-spacing: .03em; text-transform: uppercase; }
.cat-card span { font-size: 13.5px; color: var(--gold); }

.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(136px,1fr)); gap: 14px; }
.game-tile {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.game-tile:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 14px 30px rgba(0,0,0,.6); }
.game-tile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.game-tile-name {
  display: block; padding: 9px 10px 11px; font-size: 12.5px; line-height: 1.35;
  text-align: center; color: var(--text-2); font-weight: 600;
}
.game-tile-name small { display: block; color: var(--text-3); font-weight: 400; font-size: 11.5px; }
.game-badge {
  position: absolute; top: 7px; left: 7px; z-index: 2;
  background: var(--gold); color: #100e00; font-size: 10px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 3px 7px; border-radius: 5px;
}
.game-badge.new { background: var(--lime); color: #04240b; }

.providers { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.provider-chip {
  background: var(--card); border: 1px solid var(--border); border-radius: 50px;
  padding: 8px 18px; font-family: var(--font-head); font-size: 13.5px; font-weight: 600;
  letter-spacing: .03em; color: var(--text-2);
}
.provider-chip.hi { border-color: var(--border-gold); color: var(--gold); }

/* ── Upcoming releases ── */
.release-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.release-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, transform .2s;
}
.release-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.release-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.release-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.release-date {
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.release-body .card-h { margin-bottom: 6px; font-size: 16.5px; }
.release-body p { font-size: 13.5px; color: var(--text-3); margin: 0 0 12px; }
.release-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.release-specs span {
  background: var(--card-2); border: 1px solid var(--border); border-radius: 50px;
  padding: 3px 10px; font-size: 12px; color: var(--text-2);
}
.release-specs b { color: var(--gold); }

/* ── Feature blocks (tournaments / originals / MBUSD) ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 24px; transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-bg); border: 1px solid var(--border-gold);
  font-size: 22px; margin-bottom: 14px;
}
.feature-card p { color: var(--text-2); font-size: 14.5px; margin: 0; }

/* ── Sports strip ── */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; }
.sport-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; text-align: center; transition: border-color .2s, transform .2s;
}
.sport-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.sport-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--card-2); }
.sport-card b { display: block; padding: 11px 8px 13px; font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); }

/* ── Featured game ── */
.featured-game { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(20px,4vw,44px); align-items: center; }
.featured-game img { border-radius: var(--r-lg); border: 1px solid var(--border-gold); box-shadow: var(--shadow); }
.spec-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.spec-pill {
  background: var(--card-2); border: 1px solid var(--border); border-radius: 50px;
  padding: 7px 16px; font-size: 13.5px; color: var(--text-2);
}
.spec-pill b { color: var(--gold); }

/* ── Affiliate tracks ── */
.affiliate-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 6px 0 20px; }
.affiliate-track {
  background: var(--card-2); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; text-align: center; padding-bottom: 14px;
}
.affiliate-track img { width: 100%; aspect-ratio: 5/2; object-fit: contain; background: #0d0d0e; padding: 8px; }
.affiliate-track b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-top: 8px; }
.affiliate-track span { display: block; font-size: 13px; color: var(--gold); }

/* ── Banner figure ── */
.banner-figure { margin: 0 0 34px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-gold); }
.banner-figure img { width: 100%; }

/* ── Tiers / rewards ── */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 16px; }
.tier-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 20px; position: relative;
}
.tier-card.elite { border-color: var(--gold); background: linear-gradient(165deg, rgba(255,214,10,.09), var(--card) 60%); }
.tier-crown { font-size: 24px; margin-bottom: 8px; }
.tier-card h3 { font-size: 20px; margin-bottom: 4px; }
.tier-req { font-size: 13px; color: var(--gold); margin-bottom: 12px; display: block; }
.tier-card ul li { font-size: 14px; color: var(--text-2); padding-left: 20px; position: relative; margin-bottom: 6px; }
.tier-card ul li::before { content: '›'; position: absolute; left: 4px; color: var(--gold); }

/* ── Pros & cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros-title, .cons-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-bottom: 14px; }
.pros ul li, .cons ul li { position: relative; padding-left: 27px; margin-bottom: 10px; color: var(--text-2); font-size: 15px; }
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons ul li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ── Steps ── */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  display: flex; gap: 18px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px 22px;
}
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: #100e00;
  display: grid; place-items: center; font-family: var(--font-head); font-size: 18px; font-weight: 800;
}
.step p { color: var(--text-2); font-size: 15px; margin: 0; }

/* ── Callout ── */
.callout {
  background: linear-gradient(135deg, rgba(255,214,10,.09), rgba(202,162,81,.05));
  border: 1px solid var(--border-gold); border-radius: var(--r-lg);
  padding: 20px 24px; margin: 26px 0; font-size: 15.5px; color: var(--text-2);
}
.callout b { color: var(--gold); }
.callout.warn { background: rgba(224,82,79,.08); border-color: rgba(224,82,79,.35); }
.callout.warn b { color: #ff9d9b; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--card-2); border: 1px solid var(--border-gold); color: var(--gold);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.review-meta { line-height: 1.35; }
.review-meta b { display: block; font-size: 15px; }
.review-meta span { font-size: 12.5px; color: var(--text-3); }
.review-stars { margin-left: auto; color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-card p { color: var(--text-2); font-size: 14.5px; margin: 0; }

/* ── FAQ ── */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-item[open] { border-color: var(--border-gold); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 17px 52px 17px 20px; position: relative;
  font-family: var(--font-head); font-size: 17px; font-weight: 600; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 24px; line-height: 1; transition: transform .25s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--gold); }
.faq-answer { padding: 0 20px 18px; color: var(--text-2); font-size: 15px; }
.faq-answer p + p { margin-top: 12px; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--surface), var(--bg-2)); }
.cta-box {
  background: linear-gradient(140deg, rgba(255,214,10,.12), rgba(202,162,81,.06));
  border: 1px solid var(--border-gold); border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 52px); text-align: center;
}
.cta-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px,3.6vw,38px); margin-bottom: 12px; }
.cta-box p { color: var(--text-2); max-width: 620px; margin: 0 auto 24px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Responsible gambling ── */
.rg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.rg-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; }
.rg-card .card-h { color: var(--gold); }
.rg-card p { font-size: 14.5px; color: var(--text-2); margin: 0; }

/* ── Footer ── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border-gold); padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
.footer-logo { display: block; margin-bottom: 14px; }
.footer-logo img { width: 148px; height: auto; }
.footer-about { color: var(--text-3); font-size: 14px; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-2); font-size: 14.5px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; text-align: center; }
.footer-copy { font-size: 14px; color: var(--text-2); margin-bottom: 10px; }
.footer-disclaimer { font-size: 12.8px; color: var(--text-3); max-width: 900px; margin: 0 auto 10px; }
.footer-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.footer-badge {
  border: 1px solid var(--border); border-radius: 50px; padding: 5px 14px;
  font-size: 12px; color: var(--text-3); font-family: var(--font-head); font-weight: 600; letter-spacing: .05em;
}
.footer-badge.age { border-color: var(--border-gold); color: var(--gold); }

/* ── Sticky mobile CTA ── */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 950;
  display: none; align-items: center; gap: 10px;
  background: rgba(21,21,22,.97); border: 1px solid var(--border-gold);
  border-radius: 50px; padding: 8px 8px 8px 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.7);
  transform: translateY(140%); transition: transform .3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 13.5px; color: var(--text-2); flex: 1; line-height: 1.3; }
.sticky-cta-text b { display: block; color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.sticky-cta-btn {
  background: var(--gold); color: #100e00;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em;
  padding: 11px 20px; border-radius: 50px; white-space: nowrap;
}
.sticky-cta-close {
  background: none; border: none; color: var(--text-3); font-size: 17px; cursor: pointer; padding: 4px 6px;
}

/* ── Related pages (internal linking hub) ── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; }
.related-card {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); border-radius: var(--r-md);
  padding: 20px 22px; transition: transform .2s, border-color .2s;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--border-gold); border-left-color: var(--gold); }
.related-kicker {
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px;
}
.related-card b { display: block; font-family: var(--font-head); font-size: 17px; line-height: 1.3; margin-bottom: 6px; }
.related-card span { display: block; font-size: 13.5px; color: var(--text-3); line-height: 1.5; }

/* ── Key-takeaway box (top of cluster pages) ── */
.takeaway {
  background: linear-gradient(140deg, rgba(255,214,10,.10), rgba(202,162,81,.04));
  border: 1px solid var(--border-gold); border-radius: var(--r-lg);
  padding: 22px 26px; margin-bottom: 32px;
}
.takeaway p:last-child { margin-bottom: 0; }
.takeaway ul { margin: 12px 0 0; }
.takeaway ul li { position: relative; padding-left: 24px; margin-bottom: 8px; color: var(--text-2); font-size: 15px; }
.takeaway ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── Compact page hero for cluster pages ── */
.page-hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(26px, 4vw, 40px);
  background:
    radial-gradient(900px 400px at 12% -20%, rgba(255,214,10,.11), transparent 62%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.page-hero .hero-eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(27px, 4.4vw, 44px); line-height: 1.1; letter-spacing: -.01em; margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero .hero-sub { max-width: 68ch; }

/* ── Figures ── */
figure { margin: 26px 0; }
figure img { border-radius: var(--r-md); border: 1px solid var(--border); width: 100%; }
figcaption { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 9px; }

/* ═══ Responsive ═══ */
@media (max-width: 980px) {
  .hero-inner, .verdict-grid, .featured-game { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
}

@media (max-width: 860px) {
  .burger { display: flex; }
  .nav-wrap {
    position: fixed; inset: 70px 0 auto 0;
    background: rgba(11,11,12,.99); backdrop-filter: blur(18px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gap) 24px; border-bottom: 1px solid var(--border-gold);
    transform: translateY(-140%); transition: transform .3s; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-wrap.active { transform: translateY(0); }
  .nav { flex-direction: column; gap: 0; }
  .nav-link { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
  .nav-wrap .btn { margin-top: 16px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 720px) {
  .pros-cons { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .author-meta { margin-left: 0; align-items: flex-start; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(105px,1fr)); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .step { flex-direction: column; gap: 12px; }
  .toc-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .logo-img { width: 124px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .hero-ctas .btn { width: 100%; }
}
