/* ================================================================
   Bets.ng — Stylesheet
   ================================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  line-height: 1.7;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.25; letter-spacing: -0.02em; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
a, button, [role="button"], input {
  transition: color 200ms cubic-bezier(.16,1,.3,1),
              background 200ms cubic-bezier(.16,1,.3,1),
              border-color 200ms cubic-bezier(.16,1,.3,1),
              transform 200ms cubic-bezier(.16,1,.3,1);
}

/* ---------- Tokens ---------- */
:root, [data-theme="light"] {
  /* Typography 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.25rem);

  /* 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;

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

  /* Widths */
  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'General Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Light Colors */
  --color-bg: #F6FAF7;
  --color-surface: #ffffff;
  --color-surface-2: #F0F4F1;
  --color-surface-alt: #E9EFEA;
  --color-border: #DCE3DE;
  --color-border-light: rgba(0,0,0,0.06);
  --color-text: #0E1A12;
  --color-text-muted: #4D5C53;
  --color-text-faint: #7F8B84;
  --color-text-inverse: #ffffff;
  --color-primary: #008751;
  --color-primary-hover: #006B40;
  --color-primary-light: #E6F5EE;
  --color-primary-glow: rgba(0,135,81,0.25);
  --color-secondary: #F4B400;
  --color-success: #16a34a;
  --color-success-light: #f0fdf4;
  --color-success-border: rgba(22,163,74,0.3);
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

[data-theme="dark"] {
  --color-bg: #0B130F;
  --color-surface: #141D18;
  --color-surface-2: #1B2620;
  --color-surface-alt: #162019;
  --color-border: #28332C;
  --color-border-light: rgba(255,255,255,0.08);
  --color-text: #E4EDE7;
  --color-text-muted: #9BAAA1;
  --color-text-faint: #6E7A73;
  --color-text-inverse: #0E1A12;
  --color-primary: #22C57C;
  --color-primary-hover: #1AB56D;
  --color-primary-light: rgba(34,197,124,0.12);
  --color-primary-glow: rgba(34,197,124,0.3);
  --color-secondary: #FACC3C;
  --color-success: #4ade80;
  --color-success-light: rgba(74,222,128,0.08);
  --color-success-border: rgba(74,222,128,0.2);
  --color-error: #f87171;
  --color-warning: #fbbf24;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* System dark mode fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #0B130F;
    --color-surface: #141D18;
    --color-surface-2: #1B2620;
    --color-surface-alt: #162019;
    --color-border: #28332C;
    --color-border-light: rgba(255,255,255,0.08);
    --color-text: #E4EDE7;
    --color-text-muted: #9BAAA1;
    --color-text-faint: #6E7A73;
    --color-text-inverse: #0E1A12;
    --color-primary: #22C57C;
    --color-primary-hover: #1AB56D;
    --color-primary-light: rgba(34,197,124,0.12);
    --color-primary-glow: rgba(34,197,124,0.3);
    --color-success: #4ade80;
    --color-success-light: rgba(74,222,128,0.08);
    --color-error: #f87171;
    --color-warning: #fbbf24;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-5); }
.section { padding: var(--space-16) 0; }
@media (max-width: 767px) { .section { padding: var(--space-12) 0; } }

/* ---------- 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-border);
}
.disclosure-bar a { text-decoration: underline; margin-left: var(--space-1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  height: 64px;
  backdrop-filter: saturate(180%) blur(8px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--space-6);
}
.site-logo { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.site-logo img { height: 30px; width: auto; }
.site-logo__svg { display: block; height: 34px; width: 180px; max-width: 180px; }
@media (max-width: 768px) { .site-logo__svg { height: 30px; width: 140px; } }
.site-logo__svg .site-logo__word { fill: #0D1321; }
[data-theme="dark"] .site-logo__svg .site-logo__word { fill: #ffffff; }
[data-theme="dark"] .site-logo img.invertible { filter: none; }

.nav-desktop { display: none; align-items: center; gap: var(--space-1); flex: 1; }
.nav-desktop > a, .nav-desktop .nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text); border-radius: var(--radius-md);
  white-space: nowrap;
}
.nav-desktop > a:hover, .nav-desktop .nav-dropdown-trigger:hover {
  background: var(--color-primary-light); color: var(--color-primary);
}
.nav-desktop > a.active { color: var(--color-primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2); z-index: 50;
  opacity: 0; pointer-events: none;
  transform: translateY(4px);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm); color: var(--color-text);
  border-radius: var(--radius-sm);
}
.nav-dropdown-menu a:hover { background: var(--color-primary-light); color: var(--color-primary); }
.nav-dropdown-divider { height: 1px; background: var(--color-border); margin: var(--space-2) 0; }

.nav-actions { display: flex; align-items: center; gap: var(--space-2); }
.icon-btn {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); color: var(--color-text);
}
.icon-btn:hover { background: var(--color-surface-2); }
.icon-btn svg { width: 18px; height: 18px; }

.header-cta {
  display: none; align-items: center; gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary); color: #fff !important;
  border-radius: var(--radius-full); font-weight: 600;
  font-size: var(--text-sm);
}
.header-cta:hover { background: var(--color-primary-hover); color: #fff !important; }

.mobile-menu-btn { display: inline-flex; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .mobile-menu-btn { display: none; }
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--color-surface);
  z-index: 99;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(.16,1,.3,1);
  padding: var(--space-4);
}
/* legacy .open rule removed — canonical state is .is-open (see MOBILE DRAWER v2 below) */
.mobile-nav a {
  display: block; padding: var(--space-3) var(--space-4);
  color: var(--color-text); border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}
.mobile-nav-section {
  font-size: var(--text-xs); text-transform: uppercase;
  color: var(--color-text-faint); padding: var(--space-4) var(--space-4) var(--space-2);
  letter-spacing: 0.05em;
}
.nav-cta-mobile {
  background: var(--color-primary); color: #fff !important;
  text-align: center; border-radius: var(--radius-md);
  margin-top: var(--space-6); border: none !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600; font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-align: center; cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 30px var(--color-primary-glow); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary-light); }
.btn--ghost { background: var(--color-surface-2); color: var(--color-text); }
.btn--ghost:hover { background: var(--color-surface-alt); }
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(145deg, #002E1C 0%, #006B40 55%, #008751 100%);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0 var(--space-20);
}
[data-theme="dark"] .hero { background: linear-gradient(145deg, #001810 0%, #004A2C 55%, #006B40 100%); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(244,180,0,0.10), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600;
  margin-bottom: var(--space-5);
}
.hero h1 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-4); max-width: 22ch; }
.hero p.lede { font-size: var(--text-lg); color: rgba(255,255,255,0.85); max-width: 60ch; margin-bottom: var(--space-8); }
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero .btn--primary { background: #fff; color: var(--color-primary); }
.hero .btn--primary:hover { background: #f5fff9; color: var(--color-primary-hover); }
.hero .btn--outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn--outline:hover { background: rgba(255,255,255,0.1); }

.trust-bar {
  display: flex; flex-wrap: wrap; gap: var(--space-6) var(--space-8);
  margin-top: var(--space-10); padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: var(--text-xs); color: rgba(255,255,255,0.8);
}
.trust-bar > div { display: flex; align-items: center; gap: var(--space-2); }

/* ---------- Brand Cards (Homepage) ---------- */
.brand-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-top: var(--space-10);
}
@media (min-width: 720px) { .brand-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .brand-grid { grid-template-columns: 1.25fr 1fr 1fr; } }

.brand-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: var(--space-3);
  color: #fff;
}
.brand-card-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.brand-card-name { font-size: var(--text-lg); font-weight: 700; }
.brand-card-rating {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: rgba(0,0,0,0.2); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 700; color: var(--color-secondary);
}
.brand-card-bonus { font-size: var(--text-base); font-weight: 600; }
.brand-card-details { color: rgba(255,255,255,0.8); font-size: var(--text-sm); line-height: 1.55; }
.brand-card-code {
  font-family: var(--font-mono); background: rgba(0,0,0,0.25);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm);
  letter-spacing: 0.08em; color: var(--color-secondary); font-weight: 700; font-size: var(--text-sm);
}
.brand-card-ctas { display: flex; gap: var(--space-2); margin-top: auto; }
.brand-card-ctas .btn { flex: 1; }

/* On brand detail pages we need non-hero cards too */
.brand-card--light {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.brand-card--light .brand-card-details { color: var(--color-text-muted); }
.brand-card--light .brand-card-rating { background: var(--color-primary-light); color: var(--color-primary); }
.brand-card--light .brand-card-code { background: var(--color-surface-2); color: var(--color-primary); }

/* ---------- Sections ---------- */
.eyebrow { color: var(--color-primary); font-weight: 700; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.section-head { text-align: center; margin-bottom: var(--space-10); }
.section-head h2 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.section-head p { max-width: 60ch; margin: 0 auto; color: var(--color-text-muted); }
.section-head--left { text-align: left; }

/* ---------- Page Hero (inner) ---------- */
.page-hero {
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(var(--space-8), 5vw, var(--space-12)) 0;
  position: relative; overflow: hidden;
}
.page-hero h1 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.page-hero p { color: var(--color-text-muted); max-width: 70ch; }
.breadcrumb { font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-3); }
.breadcrumb a { color: var(--color-text-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { margin: 0 var(--space-2); }

/* ---------- Content Layout ---------- */
.content-layout { display: grid; gap: var(--space-8); padding: var(--space-12) 0; }
.content-layout--sidebar { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .content-layout--sidebar { grid-template-columns: 1fr 300px; } }

.prose { max-width: var(--content-default); }
.prose > * + * { margin-top: var(--space-4); }
.prose h2 { font-size: var(--text-lg); margin-top: var(--space-10); margin-bottom: var(--space-3); }
.prose h3 { font-size: var(--text-base); font-weight: 700; margin-top: var(--space-6); margin-bottom: var(--space-2); }
.prose p, .prose li { color: var(--color-text); font-size: var(--text-base); line-height: 1.75; }
.prose ul, .prose ol { padding-left: var(--space-6); }
.prose li { margin-bottom: var(--space-2); }
.prose a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--color-primary);
  padding: var(--space-2) var(--space-5);
  color: var(--color-text-muted); font-style: italic;
  background: var(--color-surface-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: var(--space-6); }
.sidebar-box {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.sidebar-box h3 { font-size: var(--text-base); margin-bottom: var(--space-3); }
.sidebar-box .bonus-big { font-size: var(--text-lg); font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-3); }
.sidebar-box .link-list { display: flex; flex-direction: column; gap: var(--space-2); }
.sidebar-box .link-list a { color: var(--color-text-muted); font-size: var(--text-sm); padding: var(--space-2) 0; border-bottom: 1px solid var(--color-border-light); }
.sidebar-box .link-list a:last-child { border: none; }
.sidebar-box .link-list a:hover { color: var(--color-primary); }

/* ---------- Promo Code Cutout ---------- */
.promo-code-cutout {
  position: relative;
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  text-align: center;
  background: var(--color-primary-light);
  margin: var(--space-6) 0;
}
.promo-code-cutout::before, .promo-code-cutout::after {
  content: ''; position: absolute;
  width: 28px; height: 28px;
  background: var(--color-bg);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.promo-code-cutout::before { left: -15px; }
.promo-code-cutout::after { right: -15px; }
.promo-code-cutout .label { font-size: var(--text-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-2); }
.promo-code-cutout .code {
  font-family: var(--font-mono); font-weight: 800;
  font-size: var(--text-xl); letter-spacing: 0.08em;
  color: var(--color-primary); margin-bottom: var(--space-4);
}

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); font-weight: 600; color: var(--color-text); font-size: var(--text-base);
}
.faq-chevron { width: 16px; height: 16px; transition: transform 200ms; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 250ms cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-4);
  color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.7;
}

/* ---------- Score Bars ---------- */
.score-list { display: flex; flex-direction: column; gap: var(--space-3); }
.score-row { display: grid; grid-template-columns: 150px 1fr 60px; gap: var(--space-4); align-items: center; }
.score-label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.score-bar-track { height: 8px; background: var(--color-surface-2); border-radius: var(--radius-full); overflow: hidden; }
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  transition: width 900ms cubic-bezier(.16,1,.3,1);
}
.score-value { font-size: var(--text-sm); font-weight: 700; color: var(--color-primary); text-align: right; }
@media (max-width: 600px) { .score-row { grid-template-columns: 1fr 40px; grid-template-rows: auto auto; } .score-label { grid-column: 1 / -1; } .score-bar-track { grid-column: 1; } .score-value { grid-column: 2; } }

/* ---------- Pros/Cons ---------- */
.pros-cons { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros-cons-col {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.pros-cons-col h3 { font-size: var(--text-base); margin-bottom: var(--space-3); display: flex; align-items: center; gap: var(--space-2); }
.pros-cons-col.pros h3 { color: var(--color-success); }
.pros-cons-col.cons h3 { color: var(--color-error); }
.pros-cons-col ul { list-style: none; padding: 0; }
.pros-cons-col li { padding: var(--space-2) 0; padding-left: var(--space-6); position: relative; font-size: var(--text-sm); color: var(--color-text); border-bottom: 1px solid var(--color-border-light); }
.pros-cons-col li:last-child { border: none; }
.pros-cons-col.pros li::before { content: "+"; position: absolute; left: 0; color: var(--color-success); font-weight: 800; }
.pros-cons-col.cons li::before { content: "−"; position: absolute; left: 0; color: var(--color-error); font-weight: 800; }

/* ---------- Compare Table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--color-surface); min-width: 900px; }
.compare-table th, .compare-table td {
  padding: var(--space-4); text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm); color: var(--color-text);
}
.compare-table th { background: var(--color-surface-2); font-weight: 700; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.highlight-row { background: var(--color-primary-light); }
.compare-table .rating-pill {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 700; font-size: var(--text-xs);
}

/* ---------- Tips Cards ---------- */
.tips-day {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.tips-day-head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-4); margin-bottom: var(--space-3); flex-wrap: wrap; }
.tips-day-date { font-size: var(--text-sm); color: var(--color-text-faint); font-weight: 600; }
.tips-day h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.tips-day-summary { color: var(--color-text-muted); margin-bottom: var(--space-5); }
.tip-picks { display: flex; flex-direction: column; gap: var(--space-3); }
.tip-pick {
  padding: var(--space-4);
  border-left: 3px solid var(--color-primary);
  background: var(--color-surface-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.tip-pick-head { display: flex; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-2); flex-wrap: wrap; }
.tip-pick-match { font-weight: 700; font-size: var(--text-base); }
.tip-pick-odds { font-family: var(--font-mono); background: var(--color-primary); color: #fff; padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm); font-weight: 700; font-size: var(--text-sm); }
.tip-pick-meta { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-2); }
.tip-pick-take { font-size: var(--text-sm); color: var(--color-text); }
.tip-byline { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-5); }

/* ---------- Author Card ---------- */
.author-card {
  display: flex; gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); margin-bottom: var(--space-4);
}
.author-card img { width: 80px; height: 80px; border-radius: var(--radius-full); object-fit: cover; background: var(--color-surface-2); }
.author-card h4 { font-size: var(--text-base); margin-bottom: var(--space-1); }
.author-card .role { font-size: var(--text-sm); color: var(--color-primary); font-weight: 600; margin-bottom: var(--space-2); }
.author-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

.author-hero { display: flex; gap: var(--space-6); align-items: center; flex-wrap: wrap; }
.author-hero img { width: 120px; height: 120px; border-radius: var(--radius-full); object-fit: cover; }

/* ---------- Quiz / Feature Steps ---------- */
.step-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; margin-top: var(--space-8); }
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  padding: var(--space-6);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-primary); color: #fff;
  border-radius: var(--radius-full);
  font-weight: 800; margin-bottom: var(--space-3);
}
.step-card h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.step-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--color-primary); color: #fff;
  padding: var(--space-3) var(--space-5);
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.sticky-cta-text { font-weight: 600; }
.sticky-cta .btn { background: #fff; color: var(--color-primary); }
.sticky-cta .btn:hover { background: #f5fff9; }
@media (max-width: 600px) { .sticky-cta-text { font-size: var(--text-sm); } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-12) 0 var(--space-6);
  margin-top: var(--space-20);
}
.footer-rg {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.footer-rg svg { width: 32px; height: 32px; color: var(--color-warning); flex-shrink: 0; }
.footer-rg p { font-size: var(--text-sm); flex: 1; min-width: 200px; }
.footer-rg a { flex-shrink: 0; }

.footer-brand { margin-bottom: var(--space-8); max-width: 560px; }
.footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-3); }
.footer-brand .contact { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-2); }

.footer-columns {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) { .footer-columns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-columns { grid-template-columns: repeat(5, 1fr); } }

.footer-col h4 {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-text-faint);
  margin-bottom: var(--space-3);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
}
.footer-col h4 .chevron { display: inline-block; width: 10px; height: 10px; transition: transform 200ms; }
@media (min-width: 768px) { .footer-col h4 { cursor: default; pointer-events: none; } .footer-col h4 .chevron { display: none; } }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a { font-size: var(--text-sm); color: var(--color-text-muted); }
.footer-col a:hover { color: var(--color-primary); }

@media (max-width: 767px) {
  .footer-col ul { max-height: 0; overflow: hidden; transition: max-height 200ms; }
  .footer-col.open ul { max-height: 500px; }
  .footer-col.open .chevron { transform: rotate(180deg); }
}

.ftc-footer { padding: var(--space-5) 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); margin-bottom: var(--space-5); }
.ftc-footer p { font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-2); }
.footer-bottom { text-align: center; font-size: var(--text-xs); color: var(--color-text-faint); }

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 200; align-items: flex-start; justify-content: center;
  padding: var(--space-12) var(--space-5);
}
.search-overlay.open { display: flex; }
.search-box {
  width: 100%; max-width: 600px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-input-wrap { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-border); }
.search-input-wrap svg { width: 20px; height: 20px; color: var(--color-text-muted); flex-shrink: 0; }
.search-input { flex: 1; border: none; background: transparent; font-size: var(--text-base); color: var(--color-text); outline: none; padding: var(--space-2) 0; }
.search-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); color: var(--color-text-muted); }
.search-close:hover { background: var(--color-surface-2); }
.search-results { max-height: 400px; overflow-y: auto; padding: var(--space-2); }
.search-result { display: block; padding: var(--space-3); border-radius: var(--radius-md); color: var(--color-text); }
.search-result:hover, .search-result.highlighted { background: var(--color-primary-light); color: var(--color-primary); }
.search-result .title { font-weight: 600; font-size: var(--text-sm); }
.search-result .desc { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms, transform 600ms; will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: initial; } .hidden-desktop { display: none; } }
.muted { color: var(--color-text-muted); }
.small { font-size: var(--text-sm); }
.xs { font-size: var(--text-xs); }

/* Feature highlights on homepage */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-10); }
@media (min-width: 640px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(4, 1fr); } }
.feat-card { padding: var(--space-5); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); }
.feat-card .ico { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--color-primary-light); color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3); }
.feat-card h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.feat-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ================================================================
   Cellars-flow + tipping portal additions
   ================================================================ */

/* ---------- Utility Bar ---------- */
.utility-bar {
  background: #0E1A12;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
[data-theme="dark"] .utility-bar { background: #060B08; }
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding: var(--space-2) var(--space-5);
  flex-wrap: wrap;
}
.utility-bar__left, .utility-bar__right {
  display: flex; align-items: center; gap: var(--space-5);
  flex-wrap: wrap;
}
.utility-bar__item, .utility-bar__link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.utility-bar__link:hover { color: #fff; text-decoration: underline; }
.utility-bar__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 2px 10px;
  background: rgba(34,197,124,0.18); color: #22C57C;
  border-radius: var(--radius-full); font-weight: 600;
}
.utility-bar__badge svg { color: #22C57C; }
@media (max-width: 767px) {
  .utility-bar__inner { padding: var(--space-2) var(--space-4); gap: var(--space-3); }
  .utility-bar__left, .utility-bar__right { gap: var(--space-3); font-size: 0.72rem; }
  .utility-bar__badge { display: none; }
}

/* ---------- Consumer-brand buttons ---------- */
.btn--ghost-dark {
  background: rgba(255,255,255,0.14); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ---------- Hero Split (Cellars-style) ---------- */
.hero-split {
  background:
    radial-gradient(circle at 15% 10%, rgba(0,135,81,0.08), transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(244,180,0,0.08), transparent 50%),
    var(--color-bg);
  padding: var(--space-16) 0 var(--space-12);
  border-bottom: 1px solid var(--color-border);
  position: relative; overflow: hidden;
}
.hero-split__inner {
  display: grid; gap: var(--space-10);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-split__inner { grid-template-columns: 1.1fr 1fr; gap: var(--space-16); }
  .hero-split { padding: var(--space-20) 0 var(--space-16); }
}
.hero-split__eyebrow {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.hero-split__copy h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: var(--space-5);
  color: var(--color-text);
  max-width: 18ch;
}
.hero-split__copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
}
.hero-split__lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.55;
}
.hero-split__ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-8); }
.hero-split__ctas .btn--ghost-dark {
  background: var(--color-surface); color: var(--color-text);
  border: 1px solid var(--color-border);
}
.hero-split__ctas .btn--ghost-dark:hover { background: var(--color-surface-2); }
.hero-split__fineprint {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  letter-spacing: 0.01em;
}
.hero-split__figure {
  position: relative; margin: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-split__figure img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-split__figure figcaption {
  position: absolute; bottom: var(--space-4); left: var(--space-4);
  background: rgba(14,26,18,0.88);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}
@media (max-width: 899px) {
  .hero-split__figure { aspect-ratio: 16 / 11; order: -1; margin-bottom: var(--space-6); }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-5);
}
.trust-strip__item {
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
}
.trust-strip__item svg {
  width: 22px; height: 22px;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.trust-strip__item strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.trust-strip__item span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ---------- Tips Section (Tolu's Desk) ---------- */
.tips-section { padding: var(--space-20) 0 var(--space-16); }
.tips-section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--space-6); margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.tips-section__head h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  letter-spacing: -0.03em; font-weight: 800;
  margin-top: var(--space-2); margin-bottom: var(--space-2);
}
.tips-section__date { color: var(--color-text-faint); font-size: 0.88rem; }
.tips-section__intro {
  color: var(--color-text-muted); font-size: var(--text-base);
  max-width: 65ch; margin-bottom: var(--space-8);
}
.tips-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
@media (min-width: 900px) { .tips-board { grid-template-columns: 1.3fr 1fr; } }

.best-bet {
  background: linear-gradient(155deg, #0E1A12 0%, #122A1E 60%, #1A4230 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.best-bet::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at center, rgba(244,180,0,0.22), transparent 70%);
  pointer-events: none;
}
.best-bet__tag {
  display: inline-block;
  background: rgba(244,180,0,0.18); color: #F4B400;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.best-bet__match {
  font-size: 0.92rem; color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2); font-weight: 600;
  letter-spacing: 0.01em;
}
.best-bet__market {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: var(--space-5); line-height: 1.15;
}
.best-bet__odds-row {
  display: flex; align-items: center; gap: var(--space-4);
  flex-wrap: wrap; margin-bottom: var(--space-5);
}
.odds-pill {
  display: inline-block;
  background: #F4B400; color: #0E1A12;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.35rem;
  padding: 6px 18px;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
}
.best-bet__meta {
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
}
.best-bet__take {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 55ch;
}
.best-bet__footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.tip-byline {
  display: flex; align-items: center; gap: var(--space-3);
}
.tip-byline__img {
  width: 42px; height: 42px; border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.25);
}
.tip-byline div { display: flex; flex-direction: column; line-height: 1.3; }
.tip-byline strong { font-size: 0.92rem; color: #fff; }
.tip-byline span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.best-bet .btn--primary { background: #fff; color: #0E1A12; }
.best-bet .btn--primary:hover { background: #f5fff9; color: var(--color-primary-hover); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }

/* Acca card */
.acca-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex; flex-direction: column;
}
.acca-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-4); margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.acca-card__tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-primary);
}
.acca-card__total {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end;
}
.acca-card__total span { font-size: 0.72rem; color: var(--color-text-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.acca-card__total strong {
  font-family: var(--font-mono);
  font-size: 2rem; font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 2px;
}
.acca-legs {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex: 1;
}
.acca-legs li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--color-border);
  align-items: center;
}
.acca-legs li:last-child { border-bottom: none; }
.acca-leg__match {
  font-size: 0.88rem; font-weight: 600; color: var(--color-text);
}
.acca-leg__market {
  grid-column: 1;
  font-size: 0.78rem; color: var(--color-text-muted);
}
.acca-leg__odds {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: var(--font-mono);
  font-weight: 700; font-size: 0.95rem;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  min-width: 56px; text-align: center;
}
.acca-card__footer {
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.acca-card__stake {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--color-text); margin-bottom: var(--space-2);
}
.acca-card__note { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.55; }

/* Hot takes */
.hot-takes-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-5); flex-wrap: wrap; gap: var(--space-3);
}
.tips-section__more {
  font-size: 0.88rem; font-weight: 600; color: var(--color-primary);
}
.hot-takes-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-3);
}
@media (min-width: 720px) { .hot-takes-grid { grid-template-columns: repeat(3, 1fr); } }
.hot-take {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
  color: var(--color-text);
  transition: transform 200ms, box-shadow 200ms;
}
.hot-take:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-text); }
.hot-take__title { font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; }
.hot-take__line { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.55; }
.hot-take__author { font-size: 0.72rem; color: var(--color-text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: auto; }

/* ---------- Why Cards (3-up with lifestyle photos) ---------- */
.why-section { padding: var(--space-20) 0; }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6);
  margin-top: var(--space-10);
}
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); } }
.why-card {
  display: flex; flex-direction: column;
}
.why-card figure {
  margin: 0 0 var(--space-5);
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-2);
}
.why-card figure img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.why-card:hover figure img { transform: scale(1.03); }
.why-card h3 {
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.why-card p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.65; }

/* ---------- Deals Section (This week's best) ---------- */
.deals-section { padding: var(--space-20) 0; }
.deals-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 900px) { .deals-grid { grid-template-columns: 1fr 1fr; } }
.deal-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.deal-card__tag {
  display: inline-block;
  background: var(--color-primary-light); color: var(--color-primary);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: var(--space-4);
  align-self: flex-start;
}
.deal-card h3 {
  font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: var(--space-3);
}
.deal-card__sub {
  font-size: 0.92rem; color: var(--color-text-muted);
  margin-bottom: var(--space-5); line-height: 1.6;
}
.deal-card__meta {
  display: flex; align-items: center; gap: var(--space-5);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-5);
}
.deal-card__rating {
  font-weight: 700; color: var(--color-primary);
  font-size: 0.95rem;
}
.deal-card__code {
  font-size: 0.82rem; color: var(--color-text-muted);
}
.deal-card__code strong {
  font-family: var(--font-mono);
  background: var(--color-surface-2);
  padding: 2px 10px; border-radius: var(--radius-sm);
  letter-spacing: 0.08em; color: var(--color-primary);
  margin-left: 4px;
}
.deal-card__explainer {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  font-size: 0.86rem; line-height: 1.6;
  color: var(--color-text-muted);
}
.deal-card__explainer strong { color: var(--color-text); display: block; margin-bottom: 4px; }
.deal-card__ctas {
  display: flex; flex-direction: column; gap: var(--space-2);
  margin-top: auto;
}

/* ---------- Preview Cards (weekend portal) ---------- */
.previews-section { padding: var(--space-16) 0; }
.preview-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (min-width: 720px) { .preview-grid { grid-template-columns: repeat(3, 1fr); } }
.preview-card {
  display: flex; flex-direction: column;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  color: var(--color-text);
}
.preview-card__league {
  display: inline-block; align-self: flex-start;
  background: var(--color-primary); color: #fff;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.preview-card h3 {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: var(--space-3); line-height: 1.25;
}
.preview-card__teaser {
  font-size: 0.9rem; color: var(--color-text-muted);
  line-height: 1.6; margin-bottom: var(--space-5); flex: 1;
}
.preview-card__foot {
  display: flex; align-items: center; gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem; color: var(--color-text-muted);
}
.preview-card__avatar {
  width: 28px; height: 28px; border-radius: var(--radius-full);
  object-fit: cover;
}
.preview-card__foot strong { color: var(--color-text); }

/* ---------- Shop tiles ---------- */
.shop-section { padding: var(--space-16) 0; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}
@media (min-width: 720px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .shop-grid { grid-template-columns: repeat(6, 1fr); } }
.shop-tile {
  display: flex; flex-direction: column;
  padding: var(--space-5) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  min-height: 110px; justify-content: flex-end;
  transition: transform 200ms, border-color 200ms, background 200ms;
}
.shop-tile:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-text);
  transform: translateY(-2px);
}
.shop-tile__name {
  font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.shop-tile__count { font-size: 0.76rem; color: var(--color-text-faint); }

/* ---------- Scoreboard ---------- */
.scoreboard-section { padding: var(--space-16) 0; }
.scoreboard-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  margin-top: var(--space-6);
}
@media (min-width: 720px) { .scoreboard-stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 2px;
}
.stat__label {
  font-size: 0.72rem; color: var(--color-text-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.stat strong {
  font-family: var(--font-mono);
  font-size: 1.6rem; font-weight: 800;
  color: var(--color-text); letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat__sub { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 2px; }
.stat--hero {
  background: linear-gradient(155deg, #0E1A12, #14281D);
  border-color: #1A4230;
  color: #fff;
}
.stat--hero .stat__label { color: rgba(255,255,255,0.65); }
.stat--hero strong { color: #F4B400; }
.stat--hero .stat__sub { color: rgba(255,255,255,0.75); }
.stat--hero.neg strong { color: #f87171; }

.scoreboard-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.scoreboard-table {
  width: 100%; border-collapse: collapse;
  background: var(--color-surface);
  min-width: 540px;
}
.scoreboard-table th, .scoreboard-table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
}
.scoreboard-table tr:last-child td { border-bottom: none; }
.scoreboard-table th {
  background: var(--color-surface-2);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-text-muted); font-weight: 700;
}
.board-avatar {
  display: inline-block; vertical-align: middle;
  width: 28px; height: 28px; border-radius: var(--radius-full);
  object-fit: cover; margin-right: var(--space-2);
}
.roi-cell { font-family: var(--font-mono); font-weight: 700; color: var(--color-primary); }
.roi-cell.neg { color: #f87171; }
.muted-cell { color: var(--color-text-muted); font-size: 0.82rem; }
.scoreboard-foot {
  margin-top: var(--space-5);
  font-size: 0.86rem; color: var(--color-text-muted);
  padding: var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-warning);
}
.scoreboard-foot strong { color: var(--color-text); }

/* ---------- Reviews (Cellars style) ---------- */
.reviews-section { padding: var(--space-16) 0; }
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.review-stars { display: flex; gap: 3px; color: #F4B400; }
.review-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  color: var(--color-text);
  line-height: 1.65;
  font-style: normal;
  border: none; padding: 0; background: none;
  flex: 1;
}
.review-card figcaption {
  font-size: 0.82rem; color: var(--color-text-muted);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.review-card figcaption strong { color: var(--color-text); }

/* ---------- Press Row ---------- */
.press-section { padding: var(--space-12) 0; border-top: 1px solid var(--color-border); }
.press-head {
  text-align: center;
  font-size: 0.82rem; color: var(--color-text-faint);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: var(--space-5);
}
.press-row {
  display: flex; justify-content: center; align-items: center;
  gap: var(--space-4) var(--space-8); flex-wrap: wrap;
}
.press-logo {
  font-family: 'Times New Roman', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  letter-spacing: 0.02em;
  transition: opacity 200ms, color 200ms;
}
.press-logo:hover { opacity: 1; color: var(--color-text); }
.press-logo--member {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  opacity: 0.9;
}

/* ---------- Story Section ---------- */
.story-section { padding: var(--space-20) 0; }
.story-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-10); align-items: center;
}
@media (min-width: 900px) { .story-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-16); } }
.story-figure {
  margin: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: var(--shadow-md);
}
.story-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-figure figcaption {
  position: absolute; bottom: var(--space-4); left: var(--space-4);
  background: rgba(14,26,18,0.88); color: #fff;
  padding: 8px 14px; border-radius: var(--radius-full);
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}
.story-copy h2 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}
.story-copy p {
  font-size: 1.02rem; color: var(--color-text-muted);
  line-height: 1.7; margin-bottom: var(--space-4);
  max-width: 58ch;
}
.story-credentials {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin: var(--space-6) 0 var(--space-6);
}
.story-credentials span {
  font-size: 0.78rem;
  padding: 4px 12px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  font-weight: 600;
}
.story-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- Footer extras ---------- */
.footer-rc {
  font-size: 0.78rem;
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  line-height: 1.6;
}
.footer-brand address {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-3);
}
.footer-brand address a { color: var(--color-text-muted); }
.footer-brand address a:hover { color: var(--color-primary); }

/* ---------- Dark theme polish ---------- */
[data-theme="dark"] .best-bet {
  background: linear-gradient(155deg, #050a07 0%, #0c1b12 60%, #133522 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
[data-theme="dark"] .story-figure figcaption,
[data-theme="dark"] .hero-split__figure figcaption {
  background: rgba(0,0,0,0.78);
}
[data-theme="dark"] .press-logo { color: var(--color-text-faint); }
[data-theme="dark"] .stat--hero { background: linear-gradient(155deg, #000, #0a1610); }


/* ============================================================
   EXPANSION: Payments · Promo Codes · Calculators · Illustrations
   ============================================================ */

/* ---- Page hero with luxe gradient variant ---- */
.page-hero--lux {
  background: linear-gradient(145deg, #002E1C 0%, #006B40 55%, #008751 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero--lux::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 80% 120%, rgba(244,180,0,.25), transparent 70%);
  pointer-events: none;
}
.page-hero--lux h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  max-width: 22ch;
  margin-bottom: 1rem;
  position: relative;
}
.page-hero--lux h1 em {
  font-style: italic;
  color: #FCD34D;
  font-weight: 700;
}
.page-hero--lux .lede,
.page-hero--lux p.lede {
  color: rgba(255,255,255,.88);
  font-size: 1.2rem;
  max-width: 62ch;
  position: relative;
  line-height: 1.55;
}
.page-hero--lux .breadcrumb,
.page-hero--lux .breadcrumb a,
.page-hero--lux .breadcrumb span {
  color: rgba(255,255,255,.75);
}
.page-hero--lux .breadcrumb a:hover { color: #FCD34D; }

/* ---- PAY HERO (split with illustration) ---- */
.pay-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}
.pay-hero__copy h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: .75rem;
  line-height: 1.15;
  color: var(--color-text);
}
.pay-hero__copy .lede {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 56ch;
}
.pay-hero__badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.pay-hero__figure {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
  aspect-ratio: 4/3;
}
.pay-hero__figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 900px) {
  .pay-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .pay-hero__figure { order: -1; max-width: 500px; }
}

/* ---- PAY-GRID tiles ---- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pay-tile {
  display: flex; flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pay-tile:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.pay-tile__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-2);
}
.pay-tile__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pay-tile__body { padding: 1.25rem 1.25rem 1.5rem; }
.pay-tile__type {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.pay-tile__body h3 {
  font-size: 1.2rem;
  margin-bottom: .4rem;
}
.pay-tile__body p {
  font-size: .92rem;
  color: var(--color-text-muted);
  margin-bottom: .9rem;
  line-height: 1.5;
}
.pay-tile__meta {
  display: flex; flex-direction: column; gap: .25rem;
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--color-border);
}
.pay-tile__meta strong { color: var(--color-text); }
.pay-tile__cta {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---- PAY SPEC strip ---- */
.pay-spec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.pay-spec__item {
  background: var(--color-surface);
  padding: 1rem 1.2rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.pay-spec__item span {
  font-size: .75rem;
  text-transform: uppercase;
  color: var(--color-text-faint);
  letter-spacing: .06em;
  font-weight: 600;
}
.pay-spec__item strong {
  font-size: .95rem;
  color: var(--color-text);
  line-height: 1.3;
}

/* ---- Step list ---- */
.step-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 1.5rem 0;
}
.step-list li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: .75rem;
  background: var(--color-surface-2);
  border-radius: .75rem;
  position: relative;
  font-size: .98rem;
  line-height: 1.55;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem; top: 1rem;
  width: 1.75rem; height: 1.75rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}

/* ---- Matrix table ---- */
.matrix-wrap { overflow-x: auto; border-radius: 1rem; border: 1px solid var(--color-border); }
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  min-width: 700px;
}
.matrix-table th, .matrix-table td {
  padding: .9rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: .9rem;
}
.matrix-table th {
  background: var(--color-surface-2);
  font-weight: 700;
  color: var(--color-text);
}
.matrix-method, .matrix-method-head {
  text-align: left !important;
  border-right: 1px solid var(--color-border);
}
.matrix-method { padding: .9rem 1rem; }
.matrix-method strong { display: block; color: var(--color-text); font-size: .95rem; }
.matrix-method span { display: block; font-size: .75rem; color: var(--color-text-faint); }
.matrix-yes { color: var(--color-primary); font-weight: 800; font-size: 1.1rem; }
.matrix-no  { color: var(--color-text-faint); }

/* ---- Brand cards row of 3 ---- */
.brand-cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

/* ---- Editor quote block ---- */
.editor-quote {
  background: var(--color-surface-2);
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 .75rem .75rem 0;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.editor-quote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ---- Section muted background ---- */
.section--muted {
  background: var(--color-surface-2);
}

/* ---- PROMO GRID ---- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.promo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #F4B400);
}
.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.promo-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.promo-card__logo { height: 32px; width: auto; }
.promo-card__rating {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: .85rem;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.promo-card__bonus {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.promo-card__detail {
  font-size: .88rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex: 1;
}
.promo-card__code {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--color-surface-2);
  padding: .75rem 1rem;
  border-radius: .5rem;
  border: 1px dashed var(--color-primary);
  margin-bottom: .6rem;
}
.promo-card__code span {
  font-size: .75rem;
  text-transform: uppercase;
  color: var(--color-text-faint);
  letter-spacing: .08em;
  font-weight: 600;
}
.promo-card__code strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: .05em;
}
.promo-card__meta {
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.promo-card__meta strong { color: var(--color-text); }
.promo-card__ctas {
  display: flex; flex-direction: column; gap: .5rem;
}

/* ---- CALCULATORS ---- */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.calc-tile {
  display: flex; flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.calc-tile:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.calc-tile__img { aspect-ratio: 4/3; overflow: hidden; background: var(--color-surface-2); }
.calc-tile__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.calc-tile__body { padding: 1.25rem 1.25rem 1.4rem; }
.calc-tile__body h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.calc-tile__body p { font-size: .9rem; color: var(--color-text-muted); margin-bottom: .8rem; line-height: 1.5; }
.calc-tile__cta { font-size: .88rem; font-weight: 700; color: var(--color-primary); }

/* ---- Calculator card (interactive) ---- */
.calc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem 1.75rem;
  margin: 0 0 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.calc-card__head { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.calc-card__head h2 { font-size: 1.35rem; margin-bottom: .35rem; }
.calc-card__head p { font-size: .9rem; color: var(--color-text-muted); margin: 0; }

.calc-field {
  margin-bottom: 1rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.calc-field label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calc-field input,
.calc-field select {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--color-border);
  border-radius: .5rem;
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s ease;
}
.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}
.calc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .calc-grid-2 { grid-template-columns: 1fr; } }

.calc-legs {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: .75rem;
}
.calc-leg {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .55rem .75rem;
  background: var(--color-surface-2);
  border-radius: .5rem;
  border: 1px solid var(--color-border);
}
.calc-leg__n {
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.calc-leg input {
  width: 100%;
  padding: .45rem .65rem;
  border: 1px solid var(--color-border);
  border-radius: .35rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.calc-leg input:focus { outline: none; border-color: var(--color-primary); }

.calc-actions {
  display: flex; gap: .5rem; margin-bottom: 1rem;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: .75rem;
  overflow: hidden;
  margin-top: 1.25rem;
}
.calc-result {
  background: linear-gradient(180deg, var(--color-surface-2) 0%, var(--color-surface) 100%);
  padding: .85rem 1rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.calc-result span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-faint);
  font-weight: 600;
}
.calc-result strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -.01em;
}

/* Dark-mode tweaks */
[data-theme="dark"] .page-hero--lux {
  background: linear-gradient(145deg, #001810 0%, #004A2C 55%, #006B40 100%);
}
[data-theme="dark"] .promo-card::before {
  background: linear-gradient(90deg, var(--color-primary), #FCD34D);
}
[data-theme="dark"] .pay-spec__item strong,
[data-theme="dark"] .matrix-method strong {
  color: var(--color-text);
}

/* ============================================================
   v2: QUIZ, NEWSLETTER, TICKER, MOBILE DRAWER
   ============================================================ */

/* BRAND-PICKER QUIZ */
.quiz-section { padding: 4rem 0; background: var(--color-surface-2); }
.quiz-card { max-width: 760px; margin: 0 auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 1.25rem; padding: 2.5rem 2rem 1.5rem; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.quiz-card__head { text-align: center; margin-bottom: 2rem; }
.quiz-card__head h2 { font-size: 1.9rem; margin: .5rem 0 .75rem; }
.quiz-card__head p { color: var(--color-text-muted); max-width: 48ch; margin: 0 auto; }
.quiz-steps { min-height: 280px; position: relative; }
.quiz-step { display: none; animation: fadein .3s ease; }
.quiz-step.is-active { display: block; }
.quiz-step__label { font-size: .8rem; font-weight: 700; color: var(--color-primary); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; text-align: center; }
.quiz-step h3 { font-size: 1.5rem; text-align: center; margin-bottom: 1.5rem; max-width: 24ch; margin-left: auto; margin-right: auto; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.quiz-options button { text-align: left; padding: 1rem 1.25rem; background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: .75rem; font-weight: 500; cursor: pointer; transition: all .15s; font-size: .95rem; color: var(--color-text); }
.quiz-options button:hover { border-color: var(--color-primary); background: var(--color-primary-light); transform: translateY(-1px); }
.quiz-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--color-border); }
.quiz-progress span { display: block; height: 100%; background: var(--color-primary); transition: width .3s ease; }
.quiz-result { text-align: left; }
.quiz-result__head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.quiz-result__logo { width: 64px; height: 64px; object-fit: contain; background: var(--color-surface-2); padding: .5rem; border-radius: .5rem; }
.quiz-result__head h3 { font-size: 1.4rem; margin-bottom: .25rem; text-align: left; }
.quiz-result__head p { color: var(--color-primary); font-weight: 600; margin: 0; }
.quiz-result__why { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 1rem; }
.quiz-result__ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.quiz-result__rg { font-size: .8rem; color: var(--color-text-faint); margin-top: 1rem; }
.quiz-restart { background: none; border: none; color: var(--color-primary); font-weight: 600; cursor: pointer; margin-top: 1rem; padding: .25rem 0; font-size: .9rem; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) {
  .quiz-card { padding: 2rem 1.25rem 1rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-step h3 { font-size: 1.2rem; }
}

/* NEWSLETTER */
.newsletter-section { padding: 4rem 0; background: linear-gradient(135deg, #002E1C 0%, #006B40 100%); color: #fff; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.newsletter-copy .eyebrow--white { color: #F4B400; }
.newsletter-copy h2 { font-size: 2rem; color: #fff; margin-bottom: .75rem; max-width: 16ch; }
.newsletter-copy p { color: rgba(255,255,255,.8); max-width: 40ch; }
.newsletter-form { display: grid; gap: .75rem; }
.newsletter-form input[type=email] { padding: 1rem 1.25rem; border-radius: .5rem; border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; }
.newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input[type=email]:focus { outline: none; border-color: #F4B400; background: rgba(255,255,255,.12); }
.newsletter-form .btn--primary { background: #F4B400; color: #002E1C; }
.newsletter-form .btn--primary:hover { background: #fff; }
.newsletter-form__note { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0; }
.newsletter-form__note a { color: #F4B400; text-decoration: underline; }
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .newsletter-copy h2 { font-size: 1.6rem; }
}

/* LIVE TICKER */
.live-ticker { display: flex; align-items: center; gap: .75rem; background: var(--color-surface); border: 1px solid var(--color-border); border-left: 3px solid var(--color-primary); border-radius: .5rem; padding: .7rem 1rem; font-size: .9rem; color: var(--color-text-muted); margin: 1.5rem 0; }
.live-ticker__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; animation: pulse 1.6s infinite; }
.live-ticker__text { transition: opacity .25s ease; flex: 1; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* MOBILE DRAWER v2 — slide in from right, full height */
@media (max-width: 960px) {
  .mobile-nav {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    background: var(--color-surface);
    box-shadow: -8px 0 40px rgba(0,0,0,.2);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 200;
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
    display: block;
  }
  .mobile-nav.is-open { transform: translateX(0); }
  .mobile-nav a { display: block; padding: .85rem 0; font-weight: 500; font-size: 1.05rem; color: var(--color-text); border-bottom: 1px solid var(--color-border); }
  .mobile-nav a:hover { color: var(--color-primary); }
  .mobile-nav-section { margin-top: 1.5rem; padding-top: .5rem; border-top: 1px solid var(--color-border); }
  .mobile-nav-section:first-child { border-top: none; margin-top: 0; }
  .mobile-nav-section span { font-size: .75rem; font-weight: 700; letter-spacing: .1em; color: var(--color-text-faint); text-transform: uppercase; display: block; padding-bottom: .25rem; }
  .nav-cta-mobile { background: var(--color-primary); color: #fff !important; margin-top: 1.5rem; padding: 1rem !important; text-align: center; border-radius: .5rem; border-bottom: none !important; font-weight: 700; }
  .mobile-menu-btn { display: flex !important; }
  .nav-desktop { display: none; }
}
@media (min-width: 961px) {
  .mobile-nav { display: none; }
  .mobile-menu-btn { display: none; }
}

/* Contextual sticky CTA — hide by default, show only on review/promo pages */
.sticky-cta { display: none; }
body.has-sticky-cta .sticky-cta { display: block; }

/* Dark mode tuning */
[data-theme="dark"] .quiz-options button { background: var(--color-surface-2); }
[data-theme="dark"] .quiz-options button:hover { background: var(--color-primary-light); border-color: var(--color-primary); }

/* === best-sportsbooks pillar & deep content === */
.hero-trust-row{display:flex;gap:2rem;flex-wrap:wrap;margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.15)}
.hero-trust-row > div{display:flex;flex-direction:column;gap:.25rem}
.hero-trust-row strong{font-size:1.5rem;font-weight:800;color:#fff}
.hero-trust-row span{font-size:.8rem;opacity:.85;text-transform:uppercase;letter-spacing:.05em}

.jump-nav{display:flex;flex-wrap:wrap;gap:.5rem;padding:.9rem 1.1rem;background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:.75rem;align-items:center;font-size:.9rem}
.jump-nav strong{margin-right:.5rem;color:var(--color-text-muted)}
.jump-nav a{color:var(--color-primary);text-decoration:none;padding:.3rem .7rem;border-radius:9999px;background:var(--color-surface);border:1px solid var(--color-border);transition:all .15s}
.jump-nav a:hover{background:var(--color-primary);color:#fff;border-color:var(--color-primary)}

.rank-block-list{display:flex;flex-direction:column;gap:2rem}
.rank-block{background:var(--color-surface);border:1px solid var(--color-border);border-radius:1rem;padding:1.75rem;box-shadow:0 1px 3px rgba(0,0,0,.05)}
.rank-block__head{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.rank-block__num{width:52px;height:52px;border-radius:50%;background:var(--color-primary);color:#fff;font-weight:800;font-size:1.35rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rank-block__meta{display:flex;align-items:center;gap:1rem;flex:1}
.rank-block__logo{height:36px;width:auto}
.rank-block__meta h3{margin:0;font-size:1.35rem}
.rank-block__rating{font-size:.85rem;color:var(--color-text-muted);margin-top:.1rem}
.rank-block__verdict{background:var(--color-accent-light, rgba(0,135,81,.08));padding:.9rem 1.1rem;border-radius:.6rem;border-left:4px solid var(--color-primary);margin:1rem 0 1.5rem}
.rank-block__body h4{margin:1.4rem 0 .5rem;font-size:1.05rem;color:var(--color-text)}
.rank-block__body h5{margin:0 0 .3rem;font-size:.9rem;font-weight:700;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.04em}
.rank-block__body p{margin:0 0 .9rem;line-height:1.65}
.rank-block__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin:1rem 0}
.rank-block__bonus-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;padding:1rem;background:var(--color-surface-2);border-radius:.6rem;margin:1.25rem 0}
.rank-block__bonus-strip > div{display:flex;flex-direction:column;gap:.2rem}
.rank-block__bonus-strip span{font-size:.75rem;text-transform:uppercase;color:var(--color-text-muted);letter-spacing:.04em}
.rank-block__bonus-strip strong{font-size:.95rem;font-weight:700}
.rank-block__ctas{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1rem}
@media(max-width:640px){
  .rank-block__grid{grid-template-columns:1fr}
  .rank-block__bonus-strip{grid-template-columns:1fr}
  .rank-block__ctas .btn{flex:1;min-width:calc(50% - .3rem)}
}

.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.2rem;margin-top:1.5rem}
.trust-item{padding:1.2rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.7rem}
.trust-item h4{margin:0 0 .5rem;font-size:1rem;color:var(--color-primary)}
.trust-item p{margin:0;font-size:.9rem;line-height:1.55;color:var(--color-text-muted)}

.choose-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem}
.choose-row{padding:1.1rem 1.2rem;background:var(--color-surface);border-left:3px solid var(--color-primary);border-radius:.5rem;border-top:1px solid var(--color-border);border-right:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}
.choose-row h4{margin:0 0 .4rem;font-size:1rem}
.choose-row p{margin:0;font-size:.9rem;line-height:1.5;color:var(--color-text-muted)}

.quick-compare-table{width:100%;border-collapse:collapse;font-size:.95rem}
.quick-compare-table th,.quick-compare-table td{padding:.9rem 1rem;text-align:left;border-bottom:1px solid var(--color-border-light)}
.quick-compare-table th{font-weight:600;color:var(--color-text-muted);width:40%}
.quick-compare-table tr:last-child td,.quick-compare-table tr:last-child th{border-bottom:0}

.factor-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:.8rem;margin-top:1rem}
.factor-list li{padding:1rem 1.2rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.5rem;line-height:1.55;font-size:.92rem}
.factor-list li strong{display:block;margin-bottom:.3rem;color:var(--color-primary)}

.check-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:.55rem;margin-top:1rem}
.check-list li{position:relative;padding:.7rem 1rem .7rem 2.4rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.45rem;font-size:.92rem;line-height:1.5}
.check-list li:before{content:"✓";position:absolute;left:.95rem;top:.7rem;width:1.3rem;height:1.3rem;border-radius:50%;background:var(--color-primary);color:#fff;font-size:.8rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.check-list--warning li:before{content:"!";background:#d23f3f}

.step-list--deep{counter-reset:step}
.step-list--deep li{list-style:none;padding:1.1rem 1.3rem 1.1rem 3.6rem;position:relative;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.5rem;margin-bottom:.7rem;line-height:1.55}
.step-list--deep li:before{counter-increment:step;content:counter(step);position:absolute;left:1rem;top:1rem;width:1.8rem;height:1.8rem;border-radius:50%;background:var(--color-primary);color:#fff;font-weight:700;display:flex;align-items:center;justify-content:center;font-size:.9rem}
.step-list--deep li strong{display:block;margin-bottom:.3rem;font-size:1rem}

.trouble-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem;margin-top:1rem}
.trouble-item{padding:1.1rem;background:var(--color-surface);border:1px solid var(--color-border);border-left:3px solid #F4B400;border-radius:.5rem}
.trouble-item h4{margin:0 0 .45rem;font-size:.98rem;color:var(--color-text)}
.trouble-item p{margin:0;font-size:.88rem;line-height:1.5;color:var(--color-text-muted)}

.rank-block__rating strong, .rank-block__rating em {font-style:normal}

/* Dark mode tweaks */
html[data-theme="dark"] .rank-block__verdict{background:rgba(34,197,124,.1)}
html[data-theme="dark"] .trouble-item{border-left-color:#F4B400}

/* ==================================================================
   PHASE 2/3 ADDITIONS
   ================================================================== */

/* Screenshot 2x2 grid */
.ss-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1.5rem 0}
.ss-cell{background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:.75rem;overflow:hidden}
.ss-cell img{width:100%;height:auto;display:block}
.ss-cell figcaption{font-size:.8rem;color:var(--color-text-faint);text-align:center;padding:.5rem;border-top:1px solid var(--color-border)}
@media(max-width:600px){.ss-grid{grid-template-columns:1fr}}

/* Sticky mobile CTA */
.sticky-cta{position:fixed;bottom:0;left:0;right:0;z-index:200;background:var(--color-primary);color:#fff;padding:.75rem 1rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;box-shadow:0 -2px 12px rgba(0,0,0,.18);transform:translateY(100%);transition:transform .3s ease}
.sticky-cta.is-visible{transform:translateY(0)}
.sticky-cta-text{font-size:.9rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1}
.sticky-cta .btn{background:#fff;color:var(--color-primary);font-weight:700;white-space:nowrap;flex-shrink:0}
.sticky-cta .btn:hover{background:var(--color-primary-light)}
@media(min-width:960px){.sticky-cta{display:none}}
.has-sticky-cta{padding-bottom:60px}

/* Compliance block */
.compliance-block{display:flex;gap:1rem;padding:1.2rem 1.4rem;background:var(--color-primary-light);border:1px solid rgba(0,135,81,.2);border-radius:.75rem;margin:2rem 0;align-items:flex-start}
.compliance-block svg{flex-shrink:0;width:20px;height:20px;color:var(--color-primary);margin-top:.2rem}
.compliance-block strong{display:block;font-size:.95rem;margin-bottom:.4rem;color:var(--color-primary)}
.compliance-block p{font-size:.87rem;line-height:1.55;color:var(--color-text-muted);margin:.35rem 0 0}

/* Brand inline calculator */
.brand-calc{background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:.75rem;padding:1.2rem 1.4rem;margin:1.5rem 0}
.calc-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.calc-field label{display:block;font-size:.82rem;font-weight:600;color:var(--color-text-muted);margin-bottom:.35rem;text-transform:uppercase;letter-spacing:.04em}
.calc-field input,.calc-field select{width:100%;padding:.65rem .85rem;border:1px solid var(--color-border);border-radius:.45rem;background:var(--color-surface);color:var(--color-text);font:inherit;font-size:.95rem}
.calc-field input:focus,.calc-field select:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 3px var(--color-primary-glow)}
.calc-results{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.75rem}
.calc-result{background:var(--color-surface);border:1px solid var(--color-border);border-radius:.5rem;padding:.75rem 1rem}
.calc-result span{display:block;font-size:.8rem;color:var(--color-text-faint);margin-bottom:.25rem}
.calc-result strong{font-size:1.1rem;font-weight:700;color:var(--color-primary)}
@media(max-width:520px){.calc-grid-2{grid-template-columns:1fr}}

/* League hub / preview grid */
.preview-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.25rem;margin-top:1.5rem}
.preview-grid--wide{grid-template-columns:repeat(auto-fill,minmax(320px,1fr))}
.preview-card{display:flex;flex-direction:column;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.75rem;padding:1.25rem;text-decoration:none;color:var(--color-text);transition:box-shadow .15s,transform .15s}
.preview-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);border-color:var(--color-primary)}
.preview-card__league{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--color-primary);margin-bottom:.5rem}
.preview-card__fixture{font-size:1.05rem;font-weight:700;margin-bottom:.35rem;line-height:1.3}
.preview-card__meta{font-size:.8rem;color:var(--color-text-faint);margin-bottom:.75rem}
.preview-card__teaser{font-size:.88rem;line-height:1.55;color:var(--color-text-muted);flex:1}

/* Glossary */
.glossary-list{display:flex;flex-direction:column;gap:0}
.glossary-term{padding:1.1rem 0;border-bottom:1px solid var(--color-border)}
.glossary-term dt{font-size:1rem;font-weight:700;color:var(--color-primary);margin-bottom:.4rem}
.glossary-term dd{margin:0;font-size:.92rem;line-height:1.6;color:var(--color-text-muted)}

/* VS pages */
.vs-header{display:flex;align-items:center;justify-content:center;gap:2.5rem;padding:2rem;background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:1rem;margin-bottom:2rem;flex-wrap:wrap}
.vs-brand{display:flex;flex-direction:column;align-items:center;gap:.5rem}
.vs-brand__score{font-size:1.5rem;font-weight:800;color:var(--color-primary)}
.vs-brand__label{font-size:.9rem;font-weight:600;color:var(--color-text-muted)}
.vs-badge{font-size:1.5rem;font-weight:900;color:var(--color-text-faint);flex-shrink:0}
.vs-winner{font-weight:700;color:var(--color-primary)}

/* City guide brands */
.city-brand-why{font-size:.87rem;color:var(--color-text-muted);margin:.35rem 0}

/* Preview hero */
.preview-hero__meta{font-size:.85rem;color:var(--color-text-muted);margin-bottom:.5rem}

/* Tipster record summary */
.tipster-summary{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1rem;margin-bottom:2rem}
.tipster-stat{background:var(--color-surface);border:1px solid var(--color-border);border-radius:.75rem;padding:1rem 1.25rem;text-align:center}
.tipster-stat span{display:block;font-size:.8rem;color:var(--color-text-faint);margin-bottom:.35rem}
.tipster-stat strong{font-size:1.35rem;font-weight:800;color:var(--color-primary)}
.result-win{color:#16a34a;font-weight:700}
.result-loss{color:#dc2626;font-weight:700}

/* RG Quiz */
.rg-question{margin-bottom:1.75rem;padding:1.25rem;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.75rem}
.rg-question__text{font-weight:600;margin-bottom:1rem;line-height:1.5}
.rg-options{display:flex;flex-direction:column;gap:.6rem}
.rg-opt{display:flex;align-items:center;gap:.75rem;padding:.6rem .9rem;background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:.5rem;cursor:pointer;font-size:.93rem;transition:border-color .15s}
.rg-opt:hover{border-color:var(--color-primary)}
.rg-opt input{accent-color:var(--color-primary)}
.rg-result-card{padding:2rem;background:var(--color-primary-light);border:2px solid var(--color-primary);border-radius:1rem;margin-top:1.5rem}

/* Odds snapshot widget */
.odds-snapshot{background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:.75rem;overflow:hidden;margin:1.5rem 0}
.odds-snapshot__head{padding:.75rem 1rem;background:var(--color-primary);color:#fff;display:flex;justify-content:space-between;align-items:center;font-size:.85rem;font-weight:600}
.odds-snapshot__row{display:grid;grid-template-columns:1fr auto auto auto;gap:.5rem;padding:.7rem 1rem;border-bottom:1px solid var(--color-border);align-items:center;font-size:.88rem}
.odds-snapshot__row:last-child{border-bottom:0}
.odds-snapshot__match{font-weight:600;color:var(--color-text)}
.odds-pill{background:var(--color-primary-light);color:var(--color-primary);padding:.25rem .6rem;border-radius:9999px;font-weight:700;font-size:.82rem}

/* Rank block for all 13 brands */
.rank-block-list .rank-block{margin-bottom:2rem}

/* Tip grid / news grid / article layout */
.tip-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.25rem;margin-top:1.5rem}
.tip-card{display:flex;flex-direction:column;background:var(--color-surface);border:1px solid var(--color-border);border-radius:.75rem;overflow:hidden;transition:transform .15s,box-shadow .15s;color:var(--color-text)}
.tip-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);color:var(--color-text)}
.tip-card img{width:100%;aspect-ratio:16/9;object-fit:cover;display:block}
.tip-card__body{padding:1rem 1.1rem 1.2rem;display:flex;flex-direction:column;gap:.45rem;flex:1}
.tip-card__meta{font-size:.78rem;color:var(--color-text-faint);text-transform:uppercase;letter-spacing:.03em;font-weight:600}
.tip-card__title{font-size:1.02rem;line-height:1.35;margin:0;font-weight:700}
.tip-card__dek{font-size:.88rem;color:var(--color-text-muted);line-height:1.45;margin:0}

.content-layout--sidebar{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:2.5rem;align-items:start}
@media(max-width:960px){.content-layout--sidebar{grid-template-columns:1fr;gap:1.75rem}}
.article-hero{margin:0 0 1.5rem 0}
.article-hero img{border-radius:.75rem;box-shadow:var(--shadow-md)}
.article-byline{font-size:.88rem;color:var(--color-text-faint)}
.key-points{background:var(--color-primary-light);border-left:4px solid var(--color-primary);padding:1rem 1.25rem 1rem 2.2rem;border-radius:.5rem;margin:1.25rem 0 1.5rem;color:var(--color-text)}
.key-points li{margin-bottom:.35rem;font-weight:500}
.sidebar{display:flex;flex-direction:column;gap:1.25rem;position:sticky;top:80px}
@media(max-width:960px){.sidebar{position:static}}
.sidebar-box{background:var(--color-surface);border:1px solid var(--color-border);border-radius:.75rem;padding:1.25rem}
.sidebar-box h3{font-size:1rem;margin:0 0 .75rem 0}
.sidebar-box .bonus-big{font-weight:700;color:var(--color-primary);margin-bottom:.75rem;font-size:1rem}
.sidebar-box .link-list{display:flex;flex-direction:column;gap:.4rem}
.sidebar-box .link-list a{font-size:.88rem;color:var(--color-text);padding:.35rem 0;border-bottom:1px solid var(--color-border);line-height:1.4}
.sidebar-box .link-list a:hover{color:var(--color-primary)}
.sidebar-box .link-list a:last-child{border-bottom:none}
.btn--block{display:block;width:100%;text-align:center}

/* Pillar hub grid (best-sportsbooks "Explore more" section) */
.pillar-hub-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}
.pillar-hub-col h3{font-size:1.05rem;margin:0 0 .9rem 0;color:var(--color-text);font-weight:700;border-bottom:2px solid var(--color-primary);padding-bottom:.5rem;display:inline-block}
.pillar-hub-list{list-style:none;padding:0;margin:0}
.pillar-hub-list li{margin-bottom:.55rem;line-height:1.45}
.pillar-hub-list a{color:var(--color-text);font-size:.92rem;border-bottom:1px solid transparent;padding-bottom:1px;transition:color .15s,border-color .15s}
.pillar-hub-list a:hover{color:var(--color-primary);border-bottom-color:var(--color-primary)}

/* Related articles / further reading block (for brand reviews & subdir pages) */
.related-links-block{background:var(--color-surface-2);border:1px solid var(--color-border);border-radius:.75rem;padding:1.5rem 1.75rem;margin:2rem 0}
.related-links-block h3{font-size:1.1rem;margin:0 0 1rem 0;color:var(--color-text);font-weight:700}
.related-links-block ul{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:.4rem .5rem}
.related-links-block li{padding:0}
.related-links-block a{color:var(--color-text);font-size:.9rem;display:block;padding:.3rem 0;border-bottom:1px dashed var(--color-border)}
.related-links-block a:hover{color:var(--color-primary)}

/* === Filter pills (best-sportsbooks) === */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--color-border, #e2e8f0);
  background: var(--color-surface, #ffffff);
  color: var(--color-text, #0f1720);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  line-height: 1;
  font-family: inherit;
}
.filter-pill:hover {
  border-color: #008751;
  color: #008751;
}
.filter-pill.is-active {
  background: #008751;
  border-color: #008751;
  color: #ffffff;
}
.filter-pill.is-active:hover {
  color: #ffffff;
}
.rank-block.is-hidden {
  display: none;
}
