/* =====================================================
   Portal de Apuestas AR — Design System
   Light editorial base (index) + dark brand pages
   ===================================================== */

/* ---------------------------------------------------
   0. SPACING TOKENS & GLOBAL RESET
--------------------------------------------------- */
:root {
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  60px;
  --space-xl:  100px;
  --radius:    10px;
  --radius-sm: 7px;
  --radius-xs: 4px;
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1060px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; transition: color var(--transition); }

/* ---------------------------------------------------
   1. THEME: LIGHT (index.html — main editorial)
--------------------------------------------------- */
body.theme-light {
  --bg:        #ffffff;
  --bg2:       #f4f6f8;
  --bg3:       #ffffff;
  --bg3h:      #f9fafb;
  --acc:       #1d6cc8;
  --acc2:      #2980e4;
  --acc-dim:   rgba(29,108,200,0.07);
  --acc-border:rgba(29,108,200,0.22);
  --acc-dark:  #0f4d96;
  --gold:      #d4a017;
  --red:       #d63535;
  --green:     #1a7f45;
  --tx1:       #111827;
  --tx2:       #4b5563;
  --tx3:       #9ca3af;
  --border:    #e5e7eb;
  --shadow:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  background: var(--bg);
  color: var(--tx1);
}

/* ---------------------------------------------------
   2. THEME: DARK GREEN (policy pages)
--------------------------------------------------- */
body.theme-dark-green {
  --bg:        #0e1117;
  --bg2:       #151b28;
  --bg3:       #1a2235;
  --bg3h:      #1f2a40;
  --acc:       #00c896;
  --acc2:      #00e8af;
  --acc-dim:   rgba(0,200,150,0.12);
  --acc-border:rgba(0,200,150,0.3);
  --gold:      #d4af37;
  --red:       #e85d5d;
  --tx1:       #f0f2f5;
  --tx2:       #8fa3b8;
  --tx3:       #4a5568;
  --border:    #232f44;
  --shadow:    0 4px 24px rgba(0,0,0,0.45);
  background: var(--bg);
  color: var(--tx1);
}

/* ---------------------------------------------------
   3. THEME: LIGHT GOLD (betsson)
--------------------------------------------------- */
body.theme-light-gold {
  --bg:        #f7f4ee;
  --bg2:       #ede9df;
  --bg3:       #ffffff;
  --bg3h:      #fafaf7;
  --acc:       #b8860b;
  --acc2:      #d4a017;
  --acc-dim:   rgba(184,134,11,0.1);
  --acc-border:rgba(184,134,11,0.3);
  --gold:      #b8860b;
  --red:       #c0392b;
  --tx1:       #1a1410;
  --tx2:       #5a4e40;
  --tx3:       #9a8a78;
  --border:    #ddd5c5;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  background: var(--bg);
  color: var(--tx1);
}

/* ---------------------------------------------------
   4. THEME: DARK PURPLE (betwarrior)
--------------------------------------------------- */
body.theme-dark-purple {
  --bg:        #0d0d1a;
  --bg2:       #13132a;
  --bg3:       #1a1a35;
  --bg3h:      #202040;
  --acc:       #8b5cf6;
  --acc2:      #a78bfa;
  --acc-dim:   rgba(139,92,246,0.12);
  --acc-border:rgba(139,92,246,0.3);
  --gold:      #f59e0b;
  --red:       #f87171;
  --tx1:       #f0f0ff;
  --tx2:       #9090bb;
  --tx3:       #505070;
  --border:    #252545;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  background: var(--bg);
  color: var(--tx1);
}

/* ---------------------------------------------------
   5. THEME: DARK BLUE (bet365)
--------------------------------------------------- */
body.theme-dark-blue {
  --bg:        #0a0f1e;
  --bg2:       #0f1630;
  --bg3:       #151e3a;
  --bg3h:      #1a2444;
  --acc:       #3b82f6;
  --acc2:      #60a5fa;
  --acc-dim:   rgba(59,130,246,0.12);
  --acc-border:rgba(59,130,246,0.3);
  --gold:      #fbbf24;
  --red:       #f87171;
  --tx1:       #e8f0ff;
  --tx2:       #8090b8;
  --tx3:       #404a68;
  --border:    #1e2d50;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  background: var(--bg);
  color: var(--tx1);
}

/* ---------------------------------------------------
   6. TYPOGRAPHY
--------------------------------------------------- */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--tx1); }
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }
h4 { font-size: 0.97rem; }
p  { color: var(--tx2); }
strong { color: var(--tx1); font-weight: 700; }
a { color: var(--acc); }
a:hover { color: var(--acc2); }

.text-acc   { color: var(--acc); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--tx3); }
.text-red   { color: var(--red); }
.text-center{ text-align: center; }

/* ---------------------------------------------------
   7. LAYOUT
--------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.layout-left   { max-width: 720px; }
.layout-center { max-width: var(--container); margin: 0 auto; }
.layout-editorial {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: 1.05rem;
}

/* spacing helpers */
.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.hidden { display: none !important; }

/* ---------------------------------------------------
   8. NAVBAR
--------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14,17,23,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.theme-light .navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.theme-light-gold .navbar {
  background: rgba(247,244,238,0.96);
}
.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--tx1);
  text-decoration: none;
}
.logo-diamond {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  flex-shrink: 0;
}
.theme-light .logo-diamond {
  background: linear-gradient(135deg, #1d6cc8, #2980e4);
}
/* PNG logo */
img.site-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.navbar__logo span { color: var(--acc); }
.theme-light .navbar__logo { color: #111827; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__nav a {
  color: var(--tx2);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.theme-light .navbar__nav a { color: #4b5563; }
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--tx1);
  background: rgba(255,255,255,0.06);
}
.theme-light .navbar__nav a:hover,
.theme-light .navbar__nav a.active {
  color: #111827;
  background: #f3f4f6;
}
.theme-light-gold .navbar__nav a:hover,
.theme-light-gold .navbar__nav a.active {
  background: rgba(0,0,0,0.06);
}
.badge-18 {
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--tx2);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------------------------------------------------
   9. BUTTONS
--------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--acc {
  background: var(--acc);
  color: #fff;
}
.btn--acc:hover {
  background: var(--acc-dark, var(--acc2));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--acc-dim);
}
.btn--dark {
  background: #111827;
  color: #fff;
  border-radius: 5px;
}
.btn--dark:hover {
  background: #1f2937;
  color: #fff;
  transform: translateY(-1px);
}
.btn--green {
  background: #1a7f45;
  color: #fff;
}
.btn--green:hover { background: #166538; color: #fff; transform: translateY(-1px); }
.btn--gold {
  background: linear-gradient(135deg, #d4af37, #c49b20);
  color: #0e1117;
}
.btn--gold:hover {
  filter: brightness(1.1);
  color: #0e1117;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--acc);
  border: 1.5px solid var(--acc-border);
}
.btn--outline:hover {
  background: var(--acc-dim);
  color: var(--acc2);
  border-color: var(--acc);
}
.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--tx1);
  border: 1px solid var(--border);
}
.theme-light .btn--ghost {
  background: #f9fafb;
  color: #374151;
  border-color: #d1d5db;
}
.theme-light-gold .btn--ghost {
  background: rgba(0,0,0,0.04);
  color: var(--tx1);
  border-color: var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--tx1); }
.theme-light .btn--ghost:hover { background: #f3f4f6; }
.btn--sm  { padding: 7px 14px; font-size: 0.8rem; }
.btn--lg  { padding: 12px 28px; font-size: 0.95rem; }
.btn--xl  { padding: 14px 36px; font-size: 1rem; }

/* ---------------------------------------------------
   10. INDEX: HERO (editorial, text-based)
--------------------------------------------------- */
.index-hero {
  padding: 40px 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.index-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.index-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--tx1);
  margin-bottom: 14px;
}
.index-hero p {
  font-size: 0.95rem;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 860px;
  margin-bottom: 10px;
}

/* "Aviso importante:" box */
.aviso-box {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 18px;
  font-size: 0.88rem;
  color: #1e40af;
  line-height: 1.6;
}
.theme-dark-green .aviso-box {
  background: rgba(0,200,150,0.08);
  border-color: rgba(0,200,150,0.2);
  color: var(--acc2);
}
.aviso-box strong { color: inherit; font-weight: 700; }

/* ---------------------------------------------------
   11. INDEX: RANKING CARDS (reference style)
--------------------------------------------------- */
.ranking-section {
  padding: 36px 20px var(--space-lg);
  background: var(--bg);
}
.ranking-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.ranking-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tx1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-top: 2px solid var(--tx1);
  border-bottom: 2px solid var(--tx1);
  margin-bottom: 0;
}

/* Single ranking card */
.ranking-card {
  display: grid;
  grid-template-columns: 48px 150px 1fr auto auto;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg);
  transition: background var(--transition);
}
.ranking-card:hover { background: var(--bg2); }

.ranking-card__num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--tx3);
  text-align: center;
  padding-right: 4px;
}
.ranking-card--top .ranking-card__num { color: var(--acc); }

.ranking-card__logo {
  padding: 0 16px 0 0;
  display: flex;
  align-items: center;
}
.ranking-card__logo img {
  max-height: 30px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

.ranking-card__features {
  padding: 0 16px;
  flex: 1;
}
.ranking-card__feat-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
.ranking-card__feat-list li {
  font-size: 0.83rem;
  color: var(--tx2);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.ranking-card__feat-list li::before {
  content: "✓";
  color: var(--acc);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.82rem;
}
.ranking-card__likes {
  font-size: 0.78rem;
  color: var(--tx3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ranking-card__more {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  text-align: right;
}
.ranking-card__more-link {
  font-size: 0.82rem;
  color: var(--acc);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.ranking-card__more-link:hover { text-decoration: underline; color: var(--acc2); }
.ranking-card__bonus-small {
  font-size: 0.78rem;
  color: var(--tx3);
  white-space: nowrap;
}

/* Score circle */
.score-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--acc);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 16px;
  box-shadow: 0 2px 8px rgba(29,108,200,0.3);
}
.score-circle--grey {
  background: #6b7280;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* CTA button column */
.ranking-card__cta {
  padding-left: 8px;
  flex-shrink: 0;
}

/* ---------------------------------------------------
   12. INDEX: ARTICLES SECTION
--------------------------------------------------- */
.articles-section {
  padding: 44px 20px;
  background: var(--bg2);
}
.articles-section__inner { max-width: var(--container); margin: 0 auto; }
.articles-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-top: 2px solid var(--tx1);
  border-bottom: 2px solid var(--tx1);
  margin-bottom: 28px;
  color: var(--tx1);
}
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.article-card {
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-md, 0 4px 24px rgba(0,0,0,0.10));
  transform: translateY(-2px);
}
.article-card__img {
  height: 190px;
  position: relative;
  overflow: hidden;
}
.article-card__img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card__img-bg { transform: scale(1.04); }
.article-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.article-card__img-title {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}
.article-card__body {
  padding: 16px 18px;
}
.article-card__desc {
  font-size: 0.84rem;
  color: var(--tx2);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--acc);
  text-decoration: none;
}
.article-card__link:hover { text-decoration: underline; }

/* ---------------------------------------------------
   13. INDEX: BLUE INFO/DISCLAIMER BOX
--------------------------------------------------- */
.info-strip {
  background: #e8f4fd;
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
  padding: 24px 20px;
}
.theme-dark-green .info-strip {
  background: rgba(0,200,150,0.06);
  border-color: rgba(0,200,150,0.15);
}
.info-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.info-strip p {
  font-size: 0.86rem;
  color: #1e3a5f;
  line-height: 1.7;
  margin-bottom: 8px;
}
.info-strip p:last-child { margin-bottom: 0; }
.theme-dark-green .info-strip p { color: var(--tx2); }

/* ---------------------------------------------------
   14. INDEX: EDITORIAL CONTENT SECTION
--------------------------------------------------- */
.editorial-section {
  padding: 52px 20px 60px;
  background: var(--bg);
}
.editorial-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.editorial-section h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--tx1);
  margin-bottom: 20px;
}
.editorial-section p {
  font-size: 0.95rem;
  color: var(--tx2);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 900px;
}
.editorial-section p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------
   15. SECTION LABELS & HEADINGS
--------------------------------------------------- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  border: 1px solid var(--acc-border);
  background: var(--acc-dim);
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.numbered-section {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.numbered-section__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--acc);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}
.numbered-section__title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* ---------------------------------------------------
   16. HERO VARIANTS (brand pages)
--------------------------------------------------- */

/* Split hero */
.hero-split {
  position: relative;
  padding: 80px 20px 60px;
  overflow: hidden;
}
.hero-split__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, var(--acc-dim) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.hero-split__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}
.hero-split__headline {
  font-size: clamp(2rem,5vw,3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.hero-split__headline em { font-style: normal; color: var(--acc); }
.hero-split__lead {
  font-size: 1rem;
  color: var(--tx2);
  margin-bottom: var(--space-md);
  max-width: 460px;
}
.hero-split__pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--space-md); }
.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  min-width: 76px;
}
.stat-pill__num { font-size: 1.3rem; font-weight: 900; color: var(--acc); line-height: 1; }
.stat-pill__lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tx3); margin-top: 3px; }

/* Banner hero (betsson) */
.hero-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg) 20px;
  background: #1a1005;
  overflow: hidden;
}
.hero-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,15,5,0.92) 40%, rgba(180,130,10,0.18) 100%);
}
.hero-banner__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-banner__logo { max-height: 48px; max-width: 190px; object-fit: contain; margin-bottom: 14px; }
.hero-banner__title { color: #fff; font-size: clamp(1.6rem,3.5vw,2.6rem); margin-bottom: 8px; }
.hero-banner__lead { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acc-dim);
  border: 1px solid var(--acc-border);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--acc);
  white-space: nowrap;
}
.score-badge__num { font-size: 1.4rem; font-weight: 900; }
.hero-banner__score { align-self: flex-start; margin-top: 20px; }

/* Left hero (betwarrior) */
.hero-left { padding: var(--space-lg) 20px; border-bottom: 1px solid var(--border); }
.hero-left__inner { max-width: var(--container); margin: 0 auto; }
.hero-left__top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
.hero-left__logo { max-height: 38px; max-width: 150px; object-fit: contain; }
.hero-left__title { font-size: clamp(1.5rem,3vw,2.4rem); margin-bottom: 8px; max-width: 660px; }
.hero-left__bonus-pill {
  display: inline-block;
  background: var(--acc-dim);
  border: 1px solid var(--acc-border);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: var(--space-sm);
}
.hero-left__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Minimal hero (bet365) */
.hero-minimal { padding: var(--space-lg) 20px calc(var(--space-lg) - 16px); text-align: center; border-bottom: 1px solid var(--border); }
.hero-minimal__logo { max-height: 46px; max-width: 190px; object-fit: contain; margin: 0 auto var(--space-sm); }
.hero-minimal__title { font-size: clamp(1.3rem,2.8vw,1.85rem); margin-bottom: var(--space-xs); }
.hero-minimal__score { font-size: 4.2rem; font-weight: 900; color: var(--acc); line-height: 1; margin: var(--space-xs) 0; }
.hero-minimal__score-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tx3); margin-bottom: var(--space-sm); }
.hero-minimal__bonus {
  display: inline-block;
  background: var(--acc-dim);
  border: 1px solid var(--acc-border);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: var(--space-md);
}

/* ---------------------------------------------------
   17. CARD VARIANTS (brand pages)
--------------------------------------------------- */
.card-standard {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.card-standard:hover { border-color: var(--acc-border); transform: translateY(-2px); }

.card-inline {
  display: grid;
  grid-template-columns: 36px 150px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.card-inline:hover { background: var(--bg3); margin: 0 -20px; padding: 18px 20px; border-radius: var(--radius-sm); }
.card-inline__rank { font-size: 1.3rem; font-weight: 900; color: var(--tx3); }
.card-inline--top .card-inline__rank { color: var(--acc); }
.card-inline__logo img { max-height: 30px; max-width: 120px; object-fit: contain; }
.card-inline__name { font-size: 0.93rem; font-weight: 700; color: var(--tx1); margin-bottom: 4px; }
.card-inline__bonus { font-size: 0.82rem; font-weight: 600; color: var(--acc); }
.card-inline__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }
.card-inline__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.inline-score { font-size: 1.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.inline-score-lbl { font-size: 0.62rem; color: var(--tx3); text-transform: uppercase; letter-spacing: 0.08em; }

.card-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg3);
  border-left: 3px solid var(--acc);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 10px;
  transition: background var(--transition);
}
.card-banner:hover { background: var(--bg3h); }
.card-banner__icon { font-size: 1.6rem; flex-shrink: 0; width: 40px; text-align: center; }
.card-banner__title { font-size: 0.92rem; font-weight: 700; color: var(--tx1); margin-bottom: 3px; }
.card-banner__desc { font-size: 0.83rem; color: var(--tx2); }

/* ---------------------------------------------------
   18. TAG CHIP
--------------------------------------------------- */
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  color: var(--tx2);
  border: 1px solid var(--border);
}
.theme-light .tag { background: #f3f4f6; color: #6b7280; border-color: #e5e7eb; }
.theme-light-gold .tag { background: rgba(0,0,0,0.04); }

/* ---------------------------------------------------
   19. CHECKLIST
--------------------------------------------------- */
.checklist { display: flex; flex-direction: column; gap: 9px; }
.checklist__group { margin-bottom: 22px; }
.checklist__group-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx3);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border);
}
.checklist-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--tx2); }
.checklist-item__icon { color: var(--acc); font-style: normal; font-size: 0.88rem; margin-top: 2px; flex-shrink: 0; }
.checklist-item__text strong { color: var(--tx1); }

/* ---------------------------------------------------
   20. CALLOUT BOX
--------------------------------------------------- */
.callout-box {
  background: var(--bg3);
  border: 1px solid var(--acc-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.callout-box__title { font-size: 1.2rem; font-weight: 800; color: var(--acc); margin-bottom: var(--space-sm); }
.callout-box__amount { font-size: 2.6rem; font-weight: 900; color: var(--tx1); line-height: 1; margin-bottom: var(--space-xs); }
.callout-box__sub { font-size: 0.88rem; color: var(--tx2); margin-bottom: var(--space-sm); }

/* ---------------------------------------------------
   21. DATA TABLE
--------------------------------------------------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.data-table th {
  background: var(--acc-dim);
  color: var(--acc);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 12px 16px;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border);
  color: var(--tx2);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { font-weight: 600; color: var(--tx1); }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ---------------------------------------------------
   22. STATS GRID (bet365)
--------------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.stat-grid__item { background: var(--bg3); padding: 26px 18px; text-align: center; }
.stat-grid__num { font-size: 2rem; font-weight: 900; color: var(--acc); line-height: 1; margin-bottom: 5px; }
.stat-grid__lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tx3); }

/* ---------------------------------------------------
   23. PULL QUOTE
--------------------------------------------------- */
.pull-quote {
  border-left: 3px solid var(--acc);
  padding: 18px 24px;
  margin: var(--space-md) 0;
  background: var(--bg3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pull-quote p { font-size: 1.05rem; font-style: italic; color: var(--tx1); line-height: 1.7; }

/* ---------------------------------------------------
   24. PROS / CONS
--------------------------------------------------- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pros-cons__box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.pros-cons__box--pros { border-color: rgba(0,200,150,0.25); }
.pros-cons__box--cons { border-color: rgba(232,93,93,0.2); }
.pros-cons__title { display: flex; align-items: center; gap: 7px; font-size: 0.92rem; font-weight: 700; margin-bottom: 12px; }
.pros-cons__box--pros .pros-cons__title { color: var(--acc); }
.pros-cons__box--cons .pros-cons__title { color: var(--red); }
.pros-cons__list { display: flex; flex-direction: column; gap: 8px; }
.pros-cons__item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--tx2); }
.dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.pros-cons__box--pros .dot { background: var(--acc); }
.pros-cons__box--cons .dot { background: var(--red); }

/* ---------------------------------------------------
   25. FAQ ACCORDION
--------------------------------------------------- */
.faq-list { max-width: 760px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--acc-border); }
.faq-question {
  width: 100%;
  background: var(--bg3);
  border: none;
  color: var(--tx1);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg3h); }
.faq-chevron { flex-shrink: 0; color: var(--acc); font-size: 0.72rem; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 18px 14px; background: var(--bg3); }
.faq-answer p { font-size: 0.88rem; color: var(--tx2); }
.faq-item.open .faq-answer { display: block; }

/* ---------------------------------------------------
   26. PAYMENT CHIPS
--------------------------------------------------- */
.payment-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.payment-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--tx2);
  transition: all var(--transition);
}
.payment-chip:hover { border-color: var(--acc-border); color: var(--tx1); }

/* ---------------------------------------------------
   27. CTA BLOCK
--------------------------------------------------- */
.cta-block {
  background: linear-gradient(135deg, var(--acc-dim), transparent);
  border: 1px solid var(--acc-border);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
}
.cta-block h2 { margin-bottom: 8px; }
.cta-block p { margin-bottom: 22px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-block__disclaimer { margin-top: 12px; font-size: 0.74rem; color: var(--tx3); }

/* ---------------------------------------------------
   28. BREADCRUMB
--------------------------------------------------- */
.breadcrumb { font-size: 0.78rem; color: var(--tx3); margin-bottom: 16px; }
.breadcrumb a { color: var(--tx3); }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb span { margin: 0 5px; }

/* ---------------------------------------------------
   29. RESPONSIBLE GAMBLING BANNER
--------------------------------------------------- */
.rg-banner {
  background: var(--acc-dim);
  border: 1px solid var(--acc-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.rg-banner__text h3 { margin-bottom: 5px; }
.rg-banner__text p { font-size: 0.86rem; max-width: 460px; }

/* ---------------------------------------------------
   30. FOOTER VARIANTS
--------------------------------------------------- */
.footer {
  padding: 48px 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.theme-light .footer {
  background: #0f1419;
  border-top-color: #1e293b;
  color: #e2e8f0;
}
.theme-light .footer .footer__grid {
  border-top-color: #334155;
}
.theme-light .footer .footer__brand-name { color: #f8fafc; }
.theme-light .footer .footer__brand p { color: #cbd5e1; }
.theme-light .footer .footer__col-title,
.theme-light .footer .footer-rg__title { color: #94a3b8; }
.theme-light .footer .footer__links a { color: #cbd5e1; }
.theme-light .footer .footer__links a:hover { color: #f8fafc; }
.theme-light .footer .footer__bottom { border-top-color: #334155; }
.theme-light .footer .footer__copyright { color: #94a3b8; }
.theme-light .footer .footer-rg--inline {
  border-top-color: #334155;
  border-bottom-color: #334155;
}
.theme-light .footer .footer-rg--rows__row1 { border-bottom-color: #334155; }
.theme-light .footer .footer-rg--rows__row2 { color: #cbd5e1; }
.theme-light-gold .footer { background: var(--bg2); }

.footer__inner { max-width: var(--container); margin: 0 auto; }

.footer__disclaimer {
  background: rgba(232,93,93,0.06);
  border: 1px solid rgba(232,93,93,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin-bottom: var(--space-md);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.footer__disclaimer p { font-size: 0.79rem; color: var(--tx2); }
.theme-light .footer .footer__disclaimer {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(248, 113, 113, 0.35);
}
.theme-light .footer .footer__disclaimer p { color: #fecaca; }

/* RG Logos — grid variant (index) */
.footer-rg--grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: var(--space-md);
}
.footer-rg--grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color var(--transition);
}
.theme-light .footer .footer-rg--grid a { background: #1a2332; border-color: #334155; }
.footer-rg--grid a:hover { border-color: var(--acc-border); }
.footer-rg--grid img { height: 32px; width: auto; object-fit: contain; opacity: 0.85; }

/* RG Logos — inline row (betsson) */
.footer-rg--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-rg--inline img { height: 38px; width: auto; object-fit: contain; opacity: 0.8; transition: opacity var(--transition); }
.footer-rg--inline img:hover { opacity: 1; }

/* RG Logos — chaos flex (betwarrior) */
.footer-rg--chaos { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; margin-bottom: var(--space-md); }
.footer-rg--chaos img { object-fit: contain; opacity: 0.8; }
.footer-rg--chaos img:nth-child(odd)  { height: 48px; }
.footer-rg--chaos img:nth-child(even) { height: 34px; }
.footer-rg--chaos img:nth-child(3n)   { height: 40px; }

/* RG Logos — 2-row (bet365) */
.footer-rg--rows { margin-bottom: var(--space-md); }
.footer-rg--rows__row1 { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.footer-rg--rows__row1 img { height: 36px; width: auto; object-fit: contain; opacity: 0.8; }
.footer-rg--rows__row2 { font-size: 0.78rem; color: var(--tx2); line-height: 1.6; }
.footer-rg--rows__row2 a { color: var(--acc); }

/* Footer grid */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--tx1);
  margin-bottom: 10px;
  text-decoration: none;
}
.footer__brand-name span { color: var(--acc); }
.footer__brand p { font-size: 0.82rem; max-width: 270px; }
.footer__col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx3); margin-bottom: 12px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.83rem; color: var(--tx2); }
.footer__links a:hover { color: var(--tx1); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}
.footer__copyright { font-size: 0.76rem; color: var(--tx3); }
.footer-rg__title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx3); margin-bottom: 12px; }

/* ---------------------------------------------------
   31. OVERLAYS: AGE MODAL + COOKIE BANNER
--------------------------------------------------- */
.age-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-modal {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.32s ease;
}
.theme-dark-green .age-modal {
  background: #1a2235;
  border-color: rgba(0,200,150,0.25);
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.93) translateY(18px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.age-modal__icon { font-size: 2.8rem; margin-bottom: 14px; }
.age-modal__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}
.theme-dark-green .age-modal__logo { color: #f0f2f5; }
.age-modal__logo span { color: #1d6cc8; }
.theme-dark-green .age-modal__logo span { color: #00c896; }
.age-modal h2 { font-size: 1.4rem; margin-bottom: 8px; color: #111827; }
.theme-dark-green .age-modal h2 { color: #f0f2f5; }
.age-modal p { font-size: 0.86rem; margin-bottom: 24px; color: #6b7280; }
.theme-dark-green .age-modal p { color: #8fa3b8; }
.age-modal__buttons { display: flex; gap: 10px; justify-content: center; }
.age-modal__buttons .btn { flex: 1; max-width: 144px; justify-content: center; }
.age-modal__legal { font-size: 0.7rem; margin-top: 16px; color: #9ca3af; }
.age-modal__legal a { color: #1d6cc8; }
.theme-dark-green .age-modal__legal a { color: #00c896; }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 5000;
  background: #1f2937;
  border-top: 1px solid #374151;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.theme-light ~ .cookie-banner,
.cookie-banner {
  background: #1f2937;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 0.84rem; color: #d1d5db; max-width: 660px; }
.cookie-banner__text a { color: #60a5fa; }
.cookie-banner__actions { display: flex; gap: 7px; flex-shrink: 0; }

/* ---------------------------------------------------
   32. POLICY PAGES
--------------------------------------------------- */
.policy-hero {
  padding: 48px 20px 32px;
  background: var(--acc-dim);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.policy-hero h1 { margin-bottom: 7px; }
.policy-hero p { color: var(--tx3); font-size: 0.83rem; }
.policy-content { max-width: 800px; margin: 0 auto; padding: 0 20px 72px; }
.policy-content h2 { font-size: 1.15rem; margin: 32px 0 9px; color: var(--acc); }
.policy-content h3 { font-size: 0.92rem; margin: 18px 0 5px; }
.policy-content p { margin-bottom: 11px; font-size: 0.91rem; }
.policy-content ul { padding-left: 16px; margin-bottom: 11px; list-style: disc; }
.policy-content ul li { font-size: 0.91rem; color: var(--tx2); margin-bottom: 4px; }
.policy-content a { color: var(--acc); }

.jr-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 16px; margin-bottom: 32px; }
.jr-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px; }
.jr-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.jr-card h3 { margin-bottom: 5px; font-size: 0.92rem; }
.jr-card p { font-size: 0.83rem; }
.hotline-box { background: var(--acc-dim); border: 1px solid var(--acc-border); border-radius: var(--radius); padding: 28px; text-align: center; margin-bottom: 32px; }
.hotline-number { font-size: 1.8rem; font-weight: 900; color: var(--acc); margin: 9px 0; letter-spacing: 0.04em; }
.cookie-table { width:100%; border-collapse:collapse; margin:16px 0; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.cookie-table th { background:var(--acc-dim); color:var(--acc); font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:10px 14px; text-align:left; border-bottom:1px solid var(--border); }
.cookie-table td { padding:10px 14px; font-size:0.84rem; border-bottom:1px solid var(--border); color:var(--tx2); vertical-align:top; }
.cookie-table tr:last-child td { border-bottom:none; }
.cookie-table td:first-child { font-weight:600; color:var(--tx1); white-space:nowrap; }

/* ---------------------------------------------------
   33. RESPONSIVE
--------------------------------------------------- */
@media (max-width: 900px) {
  .hero-split__inner  { grid-template-columns: 1fr; }
  .hero-banner__inner { flex-direction: column; align-items: flex-start; }
  .stat-grid          { grid-template-columns: repeat(2,1fr); }
  .footer__grid       { grid-template-columns: 1fr 1fr; }
  .pros-cons          { grid-template-columns: 1fr; }
  .layout-split       { grid-template-columns: 1fr; }
  .articles-grid      { grid-template-columns: 1fr; }
  .ranking-card       { grid-template-columns: 40px 120px 1fr auto; }
  .ranking-card__cta  { display: none; }
}
@media (max-width: 680px) {
  .card-inline        { grid-template-columns: 28px 90px 1fr; }
  .card-inline__actions { grid-column: 2/-1; }
  .inline-score       { display: none; }
  .navbar__nav        { display: none; }
  .navbar__hamburger  { display: flex; }
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    gap: 3px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }
  .theme-light .navbar__nav.open { background: #fff; }
  .ranking-card       { grid-template-columns: 32px 90px 1fr; }
  .ranking-card__more { display: none; }
  .ranking-card__cta  { display: none; }
  .score-circle       { width: 42px; height: 42px; font-size: 0.9rem; margin: 0 8px; }
  .footer__grid       { grid-template-columns: 1fr; }
  .stat-grid          { grid-template-columns: 1fr 1fr; }
  .footer-rg--grid    { gap: 10px; }
  .age-modal          { padding: 28px 18px; }
  .age-modal__buttons { flex-direction: column; align-items: center; }
  .age-modal__buttons .btn { max-width: 190px; width: 100%; }
  .cta-block          { padding: 30px 18px; }
  .index-hero         { padding: 28px 20px 20px; }
}
