/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Fonts */
  --font-body: 'General Sans', 'Inter', sans-serif;
  --font-display: 'Cabinet Grotesk', 'General Sans', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 720px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ── Light Mode (default) ──────────────────────────────────────── */
:root, [data-theme="light"] {
  --color-bg:             #F8F9FC;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F1F3F9;
  --color-surface-offset: #E8EBF2;
  --color-border:         #D5D9E2;
  --color-divider:        #E2E5ED;
  --color-text:           #111827;
  --color-text-muted:     #6B7280;
  --color-text-faint:     #9CA3AF;
  --color-text-inverse:   #FFFFFF;

  /* Primary - Uzbekistan Blue */
  --color-primary:        #0072CE;
  --color-primary-hover:  #005BA6;
  --color-primary-light:  #E0F0FF;

  /* Accent - Uzbekistan Green */
  --color-accent:         #43B02A;
  --color-accent-hover:   #369022;

  /* Success/Verified */
  --color-success:        #43B02A;
  --color-success-light:  #E2F5DD;

  /* Error - Uzbekistan Red */
  --color-error:          #DA291C;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

/* ── Dark Mode ─────────────────────────────────────────────────── */
[data-theme="dark"] {
  --color-bg:             #0F1117;
  --color-surface:        #1A1D27;
  --color-surface-2:      #232733;
  --color-surface-offset: #1E2230;
  --color-border:         #2E3345;
  --color-divider:        #262A38;
  --color-text:           #E5E7EB;
  --color-text-muted:     #9CA3AF;
  --color-text-faint:     #6B7280;
  --color-text-inverse:   #111827;

  --color-primary:        #4DA3E8;
  --color-primary-hover:  #6DB8F0;
  --color-primary-light:  #0F1E2E;

  --color-accent:         #5CC948;
  --color-accent-hover:   #43B02A;

  --color-success:        #5CC948;
  --color-success-light:  #152A12;

  --color-error:          #F06560;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0F1117;
    --color-surface:        #1A1D27;
    --color-surface-2:      #232733;
    --color-surface-offset: #1E2230;
    --color-border:         #2E3345;
    --color-divider:        #262A38;
    --color-text:           #E5E7EB;
    --color-text-muted:     #9CA3AF;
    --color-text-faint:     #6B7280;
    --color-text-inverse:   #111827;
    --color-primary:        #4DA3E8;
    --color-primary-hover:  #6DB8F0;
    --color-primary-light:  #0F1E2E;
    --color-accent:         #5CC948;
    --color-accent-hover:   #43B02A;
    --color-success:        #5CC948;
    --color-success-light:  #152A12;
    --color-error:          #F06560;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  }
}

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.content-narrow {
  max-width: var(--content-narrow);
}

/* ── Disclosure Bar ────────────────────────────────────────────── */
.disclosure-bar {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}

/* ── Navigation ────────────────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  gap: var(--space-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 200px;
  list-style: none;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.theme-btn {
  color: var(--color-text-muted);
  padding: var(--space-2);
  border-radius: var(--radius-md);
}
.theme-btn:hover { color: var(--color-text); background: var(--color-surface-2); }

.mobile-menu-btn {
  display: none;
  color: var(--color-text);
  padding: var(--space-2);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-2);
    align-items: stretch;
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: var(--space-4);
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D1B3E 100%);
  color: var(--color-text-inverse);
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  text-align: center;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0D1B3E 0%, #060A14 100%);
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: #FFFFFF;
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-inline: auto;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  max-width: 1100px;
  margin-inline: auto;
  text-align: left;
}

/* ── Brand Cards ───────────────────────────────────────────────── */
.brand-card {
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.rank-badge {
  position: absolute;
  top: calc(-1 * var(--space-2));
  right: var(--space-4);
  background: var(--color-accent);
  color: #000;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.brand-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.brand-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}

.brand-score {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: auto;
}

[data-theme="dark"] .brand-score {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.brand-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.brand-bonus {
  background: var(--color-surface-2);
  padding: var(--space-3);
  border-radius: var(--radius-md);
}

.bonus-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.bonus-value {
  font-weight: 700;
  font-size: var(--text-sm);
}

.promo-code-pill {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-primary-light);
  border: 1px dashed var(--color-primary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.code-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-value {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.brand-card-links {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-divider);
}
.brand-card-links a {
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.brand-card-links a:hover { text-decoration: underline; }

/* ── Trust Strip ───────────────────────────────────────────────── */
.trust-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-4) 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-item svg { color: var(--color-success); flex-shrink: 0; }

/* ── Sections ──────────────────────────────────────────────────── */
.section {
  padding: clamp(var(--space-10), 6vw, var(--space-20)) 0;
}

.section-alt {
  background: var(--color-surface-2);
}

.section h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.section-text {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

/* ── Comparison Table ──────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.comparison-table {
  min-width: 600px;
}

.comparison-table thead {
  background: var(--color-primary);
  color: #fff;
}

.comparison-table th {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.comparison-table td {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover td {
  background: var(--color-surface-2);
}

.code-inline {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: var(--text-xs);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.code-lg {
  font-size: var(--text-sm);
  padding: 4px 12px;
}

.table-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.table-cta:hover { background: var(--color-primary-hover); }

.table-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
}
.table-link:hover { text-decoration: underline; }

/* ── Stats Grid ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.stat-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ── Steps ─────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.steps-compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.step {
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.step h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  background: var(--color-surface);
}

.faq-item summary {
  padding: var(--space-4);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 var(--space-4) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Content Layout (Review/Promo) ─────────────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-8) var(--space-4);
}

@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
}

.content-main h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.content-main h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.content-main h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.content-main p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

/* ── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-primary); }

/* ── Review Score Bar ──────────────────────────────────────────── */
.review-score-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
}

.score-big {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.score-big span {
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0.8;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.score-verdict {
  font-weight: 700;
  font-size: var(--text-base);
}

.score-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-intro {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

/* ── Pros / Cons ───────────────────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros, .cons {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
}

.pros {
  background: var(--color-success-light);
  border: 1px solid var(--color-success);
}

.cons {
  background: #FEF2F2;
  border: 1px solid var(--color-error);
}

[data-theme="dark"] .cons {
  background: #2D1F1F;
}

.pros h3, .cons h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  font-size: var(--text-sm);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
  color: var(--color-text);
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--color-error);
  font-weight: 700;
}

/* ── Info Box ──────────────────────────────────────────────────── */
.info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}

.info-row:last-child { border-bottom: none; }

.info-label {
  font-weight: 600;
  color: var(--color-text);
}

/* ── Sidebar ───────────────────────────────────────────────────── */
.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}

.sticky-sidebar {
  position: sticky;
  top: 5rem;
}

.sidebar-code-box {
  text-align: center;
  padding: var(--space-4);
  background: var(--color-primary-light);
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.sidebar-code-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.sidebar-code-value {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.sidebar-verified {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-success);
  font-weight: 500;
}

.sidebar-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-4);
}

.sidebar-checklist li {
  font-size: var(--text-xs);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text-muted);
}

.sidebar-checklist li:last-child { border-bottom: none; }

.sidebar-cta {
  width: 100%;
  margin-bottom: var(--space-4);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sidebar-links a {
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-decoration: none;
}
.sidebar-links a:hover { text-decoration: underline; }

/* ── Code Display Box ──────────────────────────────────────────── */
.code-display-box {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-xl);
  margin: var(--space-6) 0;
}

.code-display-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.code-display-value {
  font-family: 'Courier New', monospace;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3);
}

.code-display-instruction {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.copy-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ── Trust Badges Inline ───────────────────────────────────────── */
.trust-badges-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--color-success-light);
  color: var(--color-success);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.badge-time {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ── Page Hero ─────────────────────────────────────────────────── */
.page-hero {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-10) 0 var(--space-8);
}

.page-hero-sm {
  padding: var(--space-8) 0 var(--space-6);
}

.page-hero .breadcrumb { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #FFFFFF;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  margin-top: var(--space-2);
}

/* ── Listings (Betting Sites Page) ─────────────────────────────── */
.listings {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.listing-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 700px) {
  .listing-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}

.listing-rank {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.listing-info { flex: 1; }

.listing-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}

.listing-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

.listing-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.listing-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.listing-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  flex-shrink: 0;
}

.text-link {
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* ── Page Disclaimer ───────────────────────────────────────────── */
.page-disclaimer {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-8);
}

.page-disclaimer p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.sources-block {
  margin-top: var(--space-4);
}

.sources-block p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ── Responsible Gambling ──────────────────────────────────────── */
.responsible-gambling {
  background: var(--color-surface-offset);
  padding: var(--space-6) 0;
  text-align: center;
}

.responsible-gambling p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 600px;
  margin-inline: auto;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: var(--space-12) 0 var(--space-8);
}

[data-theme="dark"] .site-footer {
  background: #0A0D14;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: var(--space-2);
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-6);
}

.footer-ftc {
  margin-bottom: var(--space-4);
}

.footer-ftc p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-2);
  max-width: 100%;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.pplx-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.pplx-link:hover { color: rgba(255,255,255,0.7); }

/* ── Static page content ───────────────────────────────────────── */
.content-narrow h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.content-narrow p,
.content-narrow li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.content-narrow ul {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.content-narrow a {
  color: var(--color-primary);
}

/* ── Payment Badges ────────────────────────────────────────────── */
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.pay-yes {
  background: var(--color-success-light);
  color: var(--color-success);
}

.pay-no {
  background: #FEF2F2;
  color: var(--color-error);
}

[data-theme="dark"] .pay-no {
  background: #2D1F1F;
}

.payment-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}

/* ── Listing Card v2 ───────────────────────────────────────────── */
.listing-rank-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.listing-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-text);
}

.listing-score span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
}

.listing-since {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.listing-bonuses {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-2) 0;
}

.listing-bonus {
  font-size: var(--text-sm);
}

.listing-payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-2) 0;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* ── Hero CTA ──────────────────────────────────────────────────── */
.hero-cta-wrap {
  text-align: center;
  margin-top: var(--space-8);
}

.cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  opacity: 1;
}

/* ── Nav primary link ──────────────────────────────────────────── */
.nav-link-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-link-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse) !important;
}

/* ── Market context ────────────────────────────────────────────── */
.market-context p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: 72ch;
}

/* ── Table footnote ────────────────────────────────────────────── */
.table-footnote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  text-align: center;
}

.table-footnote a {
  color: var(--color-primary);
}

/* ── Content list ──────────────────────────────────────────────── */
.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ── Disclosure bar link ───────────────────────────────────────── */
.disclosure-bar a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ── Extra Brands Grid ──────────────────────────────────────── */
.extra-brands { padding: var(--space-12) 0; }
.extra-brands h2 { margin-bottom: var(--space-2); }
.extra-brands > .container > p { color: var(--color-text-muted); margin-bottom: var(--space-6); }
.extra-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}
.extra-brand-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  transition: box-shadow var(--transition-interactive);
}
.extra-brand-card:hover { box-shadow: var(--shadow-md); }
.extra-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.extra-brand-logo img { width: 36px; height: 36px; object-fit: contain; }
.extra-brand-info { flex: 1; min-width: 0; }
.extra-brand-info strong { display: block; font-size: var(--text-sm); color: var(--color-text); }
.extra-brand-bonus { font-size: var(--text-xs); color: var(--color-text-muted); }
.extra-brand-cta {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-interactive);
}
.extra-brand-cta:hover { background: var(--color-primary); color: #fff; }

/* Brand logo in avatar */
.brand-avatar img { width: 32px; height: 32px; object-fit: contain; }
