/* ============================================================
   BetRating.pro — Design System 2026
   Mobile-first | Dark Premium Sports Portal
   CWV Targets: LCP<1.8s, INP<100ms, CLS<0.05
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:wght@400;600;700;800&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg-base:        #07090f;
  --bg-surface:     #0f1520;
  --bg-card:        #131c2e;
  --bg-card-hover:  #1a2540;
  --bg-nav:         #0b1119;
  --border:         #1e2d47;
  --border-light:   #253756;
  --gold:           #f0a500;
  --gold-light:     #ffc940;
  --gold-dark:      #c87e00;
  --green:          #0fd97e;
  --green-dark:     #0ab868;
  --red:            #f04040;
  --blue:           #3b82f6;
  --purple:         #a855f7;
  --text-primary:   #f0f4ff;
  --text-secondary: #a8b5cc;
  --text-muted:     #5c6f8a;
  --font-display:   'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:      'Nunito Sans', 'Segoe UI', sans-serif;
  --font-serif:     'Crimson Pro', Georgia, serif;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --shadow-card:    0 4px 24px rgba(0,0,0,.45);
  --shadow-glow:    0 0 20px rgba(240,165,0,.18);
  --transition:     .22s cubic-bezier(.4,0,.2,1);
  --max-w:          1280px;
  --content-w:      860px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: .03em; line-height: 1.15; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; }
h4 { font-size: 1.1rem; }
p { margin-bottom: .9rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }
.lead { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.8; color: var(--text-primary); }
strong { color: var(--text-primary); font-weight: 700; }
em { font-style: italic; }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }
.text-muted   { color: var(--text-muted); font-size: .9rem; }
.text-center  { text-align: center; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }
.page-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .page-layout { grid-template-columns: 1fr 320px; } }
section { padding: 3rem 0; }
@media (min-width: 768px) { section { padding: 4.5rem 0; } }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,17,25,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}
.site-logo {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--text-primary); letter-spacing: .04em; flex-shrink: 0;
}
.site-logo span { color: var(--gold); }
.site-logo svg { width: 32px; height: 32px; }

/* Main Nav */
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; align-items: center; gap: .25rem; } }
.main-nav a {
  padding: .45rem .75rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--text-secondary);
  transition: all var(--transition); white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); background: rgba(240,165,0,.08); }
.main-nav a.active { color: var(--gold); }

/* Header Right */
.header-right { display: flex; align-items: center; gap: .75rem; }
.lang-switch {
  display: flex; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
}
.lang-switch a {
  padding: .3rem .55rem; font-size: .78rem; font-weight: 700;
  color: var(--text-muted); transition: all var(--transition);
}
.lang-switch a.active, .lang-switch a:hover { background: var(--gold); color: #000; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(7,9,15,.97); padding: 5rem 1.5rem 2rem;
  flex-direction: column; gap: 1rem; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.5rem; font-family: var(--font-display); color: var(--text-secondary); padding: .5rem 0; border-bottom: 1px solid var(--border); letter-spacing: .04em; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-nav-cta { margin-top: 1rem; }

/* Progress Bar */
.scroll-progress { position: fixed; top: 64px; left: 0; right: 0; height: 3px; background: transparent; z-index: 999; }
.scroll-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 0%; transition: width .1s linear; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-surface);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,165,0,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-geo {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-geo::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(240,165,0,.06);
}
.hero-geo::after {
  content: ''; position: absolute; top: -20%; right: 10%;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(240,165,0,.04);
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.25);
  color: var(--gold); padding: .3rem .8rem; border-radius: 99px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 span { color: var(--gold); }
.hero-lead { font-family: var(--font-serif); font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-secondary); max-width: 640px; margin: 0 auto 2rem; line-height: 1.8; }
.hero-stats { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); letter-spacing: .04em; }
.hero-stat span { font-size: .8rem; color: var(--text-muted); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: .95rem; transition: all var(--transition);
  white-space: nowrap; min-height: 48px;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-light); color: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: rgba(240,165,0,.08); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { background: var(--green-dark); color: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,217,126,.3); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; min-height: 38px; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; min-height: 56px; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: var(--radius-sm); }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition);
}
.card:hover { border-color: var(--border-light); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ── BOOKMAKER RATING CARD ── */
.bk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bk-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.bk-card:hover { border-color: var(--border-light); background: var(--bg-card-hover); box-shadow: var(--shadow-card); }
.bk-card:hover::before { transform: scaleX(1); }
.bk-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.bk-pos {
  flex-shrink: 0; width: 36px; height: 36px;
  background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--gold);
}
.bk-pos.top1 { background: rgba(240,165,0,.2); border-color: var(--gold); }
.bk-logo {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .9rem; color: var(--gold); text-align: center; letter-spacing: .02em;
}
.bk-info { flex: 1; min-width: 0; }
.bk-name { font-weight: 800; font-size: 1.05rem; color: var(--text-primary); }
.bk-badge { font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 99px; }
.bk-badge.recommended { background: rgba(15,217,126,.15); color: var(--green); border: 1px solid rgba(15,217,126,.3); }
.bk-badge.top { background: rgba(240,165,0,.15); color: var(--gold); border: 1px solid rgba(240,165,0,.3); }
.bk-badge.exclusive { background: rgba(168,85,247,.15); color: var(--purple); border: 1px solid rgba(168,85,247,.3); }
.bk-stars { display: flex; gap: .15rem; color: var(--gold); font-size: .95rem; margin: .25rem 0; }
.bk-stars .empty { color: var(--border-light); }
.bk-rating-num { font-size: .8rem; color: var(--text-muted); }

/* BK Metrics */
.bk-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin: 1rem 0; }
.bk-metric { background: var(--bg-surface); border-radius: var(--radius-sm); padding: .4rem .5rem; text-align: center; }
.bk-metric-val { font-weight: 700; font-size: .88rem; color: var(--text-primary); }
.bk-metric-label { font-size: .68rem; color: var(--text-muted); }

/* Rating Bar */
.rating-bar-wrap { margin: .75rem 0; }
.rating-bar-label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-secondary); margin-bottom: .3rem; }
.rating-bar-track { height: 6px; background: var(--bg-surface); border-radius: 99px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 99px; width: 0%; transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* BK Bonus */
.bk-bonus {
  background: rgba(240,165,0,.06); border: 1px solid rgba(240,165,0,.15);
  border-radius: var(--radius-sm); padding: .6rem .75rem;
  font-size: .85rem; margin: .75rem 0;
}
.bk-bonus strong { color: var(--gold); }

/* Trust Signals */
.bk-trust { display: flex; gap: .5rem; flex-wrap: wrap; margin: .5rem 0; }
.trust-item { font-size: .72rem; color: var(--text-muted); display: flex; align-items: center; gap: .25rem; }
.trust-item svg { width: 12px; height: 12px; color: var(--green); }

/* ── COMPARISON TABLE ── */
.comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; min-width: 600px; border-collapse: collapse; font-size: .88rem; }
.comparison-table th {
  background: var(--bg-surface); color: var(--text-secondary);
  padding: .75rem 1rem; text-align: left; font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 1;
}
.comparison-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: middle; }
.comparison-table tr:hover td { background: rgba(255,255,255,.02); }
.comparison-table .col-name { font-weight: 700; color: var(--text-primary); }
.comparison-table .col-bonus { color: var(--gold); font-weight: 600; }
.comparison-table .col-margin { color: var(--green); font-weight: 600; }
.comparison-table .col-cta { white-space: nowrap; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: rgba(240,165,0,.1);
  border: 1px solid rgba(240,165,0,.2);
  padding: .25rem .75rem; border-radius: 99px; margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ── INFO BOXES ── */
.info-box {
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  margin: 1.5rem 0; display: flex; gap: 1rem; align-items: flex-start;
  border-left: 4px solid;
}
.info-box-icon { flex-shrink: 0; font-size: 1.3rem; margin-top: .1rem; }
.info-box p { margin: 0; }
.info-box.info    { background: rgba(59,130,246,.07); border-color: var(--blue); }
.info-box.success { background: rgba(15,217,126,.07); border-color: var(--green); }
.info-box.warning { background: rgba(240,165,0,.07); border-color: var(--gold); }
.info-box.danger  { background: rgba(240,64,64,.07); border-color: var(--red); }

/* ── PROS CONS ── */
.pros-cons { display: grid; gap: 1rem; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { border-radius: var(--radius-md); padding: 1.25rem; }
.pros { background: rgba(15,217,126,.05); border: 1px solid rgba(15,217,126,.15); }
.cons { background: rgba(240,64,64,.05); border: 1px solid rgba(240,64,64,.15); }
.pros h4, .cons h4 { margin-bottom: .75rem; font-size: .95rem; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul li, .cons ul li { font-size: .9rem; color: var(--text-secondary); padding: .3rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .5rem; }
.pros ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons ul li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }

/* ── BONUS CARD ── */
.bonus-card {
  background: linear-gradient(135deg, rgba(240,165,0,.08) 0%, var(--bg-card) 60%);
  border: 1px solid rgba(240,165,0,.25); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.08), transparent 70%);
}
.bonus-amount { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.5rem); color: var(--gold); letter-spacing: .04em; }
.bonus-label { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.bonus-terms { font-size: .78rem; color: var(--text-muted); margin-top: .75rem; }

/* ── FAQ ACCORDION ── */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; background: var(--bg-card);
  font-weight: 700; font-size: .95rem; color: var(--text-primary);
  transition: background var(--transition); text-align: left; gap: 1rem;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question.active { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq-question.active .faq-chevron { transform: rotate(180deg); background: rgba(240,165,0,.15); border-color: var(--gold); }
.faq-chevron svg { width: 12px; height: 12px; color: var(--text-muted); }
.faq-question.active .faq-chevron svg { color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); background: var(--bg-surface); }
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 1rem 1.25rem 1.25rem; }
.faq-answer p { margin: 0; font-size: .92rem; }

/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem;
  margin: 1.5rem 0;
}
.toc h4 { color: var(--text-primary); margin-bottom: .75rem; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.toc ol { counter-reset: toc; list-style: none; }
.toc li { counter-increment: toc; padding: .25rem 0; }
.toc li::before { content: counter(toc) '. '; color: var(--gold); font-weight: 700; }
.toc a { color: var(--text-secondary); font-size: .88rem; }
.toc a:hover { color: var(--gold); }

/* ── BREADCRUMBS ── */
.breadcrumbs { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; padding: 1rem 0; }
.breadcrumbs a, .breadcrumbs span { font-size: .82rem; color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--border-light); }
.breadcrumbs .current { color: var(--text-secondary); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.sidebar-widget-header { background: var(--bg-surface); padding: .75rem 1rem; border-bottom: 1px solid var(--border); }
.sidebar-widget-header h3 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-secondary); }
.sidebar-widget-body { padding: .75rem; }
.sidebar-bk { display: flex; align-items: center; gap: .75rem; padding: .6rem; border-radius: var(--radius-sm); transition: background var(--transition); }
.sidebar-bk:hover { background: var(--bg-card-hover); }
.sidebar-bk-logo { width: 36px; height: 36px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; color: var(--gold); text-align: center; flex-shrink: 0; }
.sidebar-bk-name { font-weight: 700; font-size: .85rem; color: var(--text-primary); }
.sidebar-bk-bonus { font-size: .75rem; color: var(--gold); }
.sidebar-bk-btn { margin-left: auto; flex-shrink: 0; }
.sidebar-tg { background: linear-gradient(135deg, #0088cc, #005f8f); border-radius: var(--radius-md); padding: 1.25rem; text-align: center; }
.sidebar-tg h4 { font-size: .95rem; margin-bottom: .5rem; }
.sidebar-tg p { font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }

/* ── REVIEW SCORE ── */
.review-score-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem; margin: 1.5rem 0;
}
.review-score-top { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.review-big-score {
  font-family: var(--font-display); font-size: 4rem; color: var(--gold);
  line-height: 1; flex-shrink: 0;
}
.review-score-meta h4 { font-size: 1.1rem; margin-bottom: .25rem; }
.review-score-meta .stars { font-size: 1.3rem; color: var(--gold); }
.review-score-categories { display: grid; gap: .6rem; }
.review-score-cat { display: flex; align-items: center; gap: .75rem; }
.review-score-cat-label { font-size: .82rem; color: var(--text-secondary); width: 130px; flex-shrink: 0; }
.review-score-cat-bar { flex: 1; height: 6px; background: var(--bg-surface); border-radius: 99px; overflow: hidden; }
.review-score-cat-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 99px; }
.review-score-cat-num { font-size: .82rem; font-weight: 700; color: var(--gold); width: 30px; text-align: right; flex-shrink: 0; }

/* ── AFFILIATE DISCLOSURE ── */
.affiliate-disclosure {
  display: flex; gap: .6rem; align-items: flex-start;
  background: rgba(59,130,246,.05); border: 1px solid rgba(59,130,246,.15);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  font-size: .78rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.affiliate-disclosure svg { flex-shrink: 0; width: 14px; height: 14px; margin-top: .1rem; color: var(--blue); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border);
  font-size: .88rem; font-weight: 600; color: var(--text-secondary); transition: all var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: #000; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem;
  z-index: 9999; box-shadow: var(--shadow-card);
  display: none; max-width: 560px; margin: 0 auto;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: .85rem; margin-bottom: 1rem; }
.cookie-banner-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  width: 44px; height: 44px; background: var(--gold); color: #000;
  border-radius: 50%; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(240,165,0,.4); transition: all var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── SKELETON LOADER ── */
.skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: skeleton-shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── BADGE / TAGS ── */
.badge { display: inline-flex; align-items: center; gap: .3rem; padding: .2rem .6rem; border-radius: 99px; font-size: .75rem; font-weight: 700; }
.badge-gold   { background: rgba(240,165,0,.15); color: var(--gold); border: 1px solid rgba(240,165,0,.25); }
.badge-green  { background: rgba(15,217,126,.12); color: var(--green); border: 1px solid rgba(15,217,126,.25); }
.badge-red    { background: rgba(240,64,64,.12); color: var(--red); border: 1px solid rgba(240,64,64,.25); }
.badge-blue   { background: rgba(59,130,246,.12); color: var(--blue); border: 1px solid rgba(59,130,246,.25); }
.badge-new    { background: var(--green); color: #000; }
.badge-18 { background: var(--red); color: #fff; font-size: .9rem; border-radius: 4px; padding: .1rem .4rem; }

/* ── FOOTER ── */
.site-footer { background: var(--bg-nav); border-top: 1px solid var(--border); margin-top: auto; }
.footer-main { padding: 3rem 0 2rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: .88rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.7; }
.footer-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .75rem; }
.footer-col ul li { margin-bottom: .35rem; }
.footer-col ul li a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.footer-legal a { font-size: .78rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold); }
.footer-legal .sep { color: var(--border-light); font-size: .75rem; }
.footer-rg { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.footer-rg p { font-size: .75rem; color: var(--text-muted); margin: 0; max-width: 360px; }
.footer-rg a { color: var(--gold); }

/* ── UTILITY ── */
.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; }
.hidden { display: none !important; }
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── ARTICLE CONTENT ── */
.article-content h2 { margin: 2rem 0 .75rem; }
.article-content h3 { margin: 1.5rem 0 .5rem; }
.article-content p  { margin-bottom: 1rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1rem 1.25rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { color: var(--text-secondary); margin-bottom: .35rem; font-size: .95rem; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .88rem; }
.article-content th { background: var(--bg-surface); padding: .6rem .9rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); text-align: left; border-bottom: 2px solid var(--border); }
.article-content td { padding: .65rem .9rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.article-content tr:hover td { background: rgba(255,255,255,.02); }
.article-content blockquote { border-left: 3px solid var(--gold); padding: .75rem 1.25rem; margin: 1.5rem 0; background: rgba(240,165,0,.04); font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-primary); }

/* ── 404 PAGE ── */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; }
.error-code { font-family: var(--font-display); font-size: clamp(6rem, 20vw, 10rem); color: var(--gold); line-height: 1; opacity: .15; }
.error-content { position: relative; margin-top: -2rem; }
.error-content h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.error-content p { max-width: 440px; margin: 0 auto 2rem; }

/* ── RESPONSIBLE GAMBLING ── */
.rg-section { background: rgba(240,64,64,.04); border: 1px solid rgba(240,64,64,.12); border-radius: var(--radius-md); padding: 1.5rem; margin: 2rem 0; }
.rg-section h3 { color: var(--red); margin-bottom: .75rem; }
.rg-hotlines { display: grid; gap: .75rem; margin-top: 1rem; }
@media (min-width: 640px) { .rg-hotlines { grid-template-columns: repeat(2,1fr); } }
.rg-hotline { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .75rem 1rem; }
.rg-hotline h5 { font-size: .85rem; color: var(--text-primary); margin-bottom: .2rem; }
.rg-hotline p { font-size: .82rem; color: var(--text-muted); margin: 0; }
.rg-hotline a { color: var(--gold); font-weight: 700; }

/* ── PRINT STYLES ── */
@media print {
  .site-header, .site-footer, .sidebar, .cookie-banner, .scroll-top { display: none !important; }
  body { background: #fff; color: #000; }
  .bk-card, .card { border: 1px solid #ccc; box-shadow: none; }
}
