/* ==========================================================================
   secret-bet.info — Independent Secret Bet Nigeria informational site
   style.css — design tokens + page styles in one file.
   Editorial system: Ink + Paper + Gold. Mobile-first (360px), 8pt baseline,
   WCAG 2.2 AA. Self-hosted Roboto / Roboto Condensed / Righteous.
   ========================================================================== */

/* ---------- Brand fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-VariableFont_wdth_wght.ttf') format('truetype-variations'),
       url('fonts/Roboto-VariableFont_wdth_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Italic-VariableFont_wdth_wght.ttf') format('truetype-variations'),
       url('fonts/Roboto-Italic-VariableFont_wdth_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Righteous';
  src: url('fonts/Righteous-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Script flourish — Google Fonts (matches the "bet" hand-drawn signature) */
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ====== COLOR — INK & PAPER ================================== */
  --ink-900: #0A0A0A;
  --ink-800: #141414;
  --ink-700: #1E1E1E;
  --ink-600: #2A2A2A;
  --ink-500: #3D3D3D;
  --ink-400: #5A5A5A;
  --ink-300: #8A8A8A;
  --ink-200: #B5B5B5;
  --ink-100: #E5E5E5;

  --paper-50:  #FAFAFA;
  --paper-100: #F4F4F4;
  --paper-200: #ECECEC;
  --paper-300: #D9D9D9;
  --paper-400: #BDBDBD;

  /* ====== COLOR — GOLD (single accent) ========================= */
  --gold-500: #F5B82E;
  --gold-600: #E0A622;
  --gold-400: #F8C95B;
  --gold-100: #FBEABE;
  --gold-ink: #0A0A0A;

  /* ====== COLOR — SEMANTIC (muted) ============================ */
  --signal-up:   #2F8F4E;
  --signal-down: #B23A3A;
  --signal-info: #486B8E;

  /* ====== SEMANTIC TOKENS — LIGHT MODE ======================== */
  --bg:          var(--paper-50);
  --bg-alt:      var(--paper-100);
  --surface:     #FFFFFF;
  --surface-alt: var(--paper-100);
  --fg:          var(--ink-900);
  --fg-muted:    var(--ink-400);
  --fg-subtle:   var(--ink-300);
  --fg-inverse:  var(--paper-50);
  --border:      var(--paper-200);
  --border-strong: var(--paper-300);
  --accent:      var(--gold-500);
  --accent-hover: var(--gold-600);
  --accent-ink:  var(--gold-ink);
  --focus-ring:  var(--gold-500);

  /* ====== TYPE FAMILIES ======================================= */
  --font-display:   'Righteous', 'Roboto', system-ui, sans-serif;
  --font-sans:      'Roboto', system-ui, -apple-system, sans-serif;
  --font-condensed: 'Roboto Condensed', 'Roboto', system-ui, sans-serif;
  --font-script:    'Caveat Brush', cursive;
  --font-mono:      'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* ====== TYPE SCALE ========================================== */
  --t-12: 0.75rem;
  --t-14: 0.875rem;
  --t-16: 1rem;
  --t-18: 1.125rem;
  --t-24: 1.5rem;
  --t-32: 2rem;
  --t-48: 3rem;
  --t-64: 4rem;

  --lh-tight:  1.05;
  --lh-snug:   1.2;
  --lh-normal: 1.5;
  --lh-loose:  1.65;

  --tr-tight:  -0.02em;
  --tr-snug:   -0.01em;
  --tr-normal: 0;
  --tr-wide:   0.04em;
  --tr-eyebrow: 0.12em;

  --w-regular: 400;
  --w-medium:  500;
  --w-semi:    600;
  --w-bold:    700;
  --w-heavy:   800;
  --w-black:   900;

  /* ====== SPACING — 8pt BASELINE ============================== */
  --s-0:  0;
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;

  /* ====== RADIUS ============================================== */
  --r-0:    0;
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-pill: 999px;

  /* ====== BORDERS ============================================ */
  --hairline: 1px solid var(--border);
  --rule:     1px solid var(--border-strong);
  --rule-ink: 1px solid var(--ink-900);
  --rule-thick: 2px solid var(--ink-900);

  /* ====== SHADOWS (editorial — minimal) ====================== */
  --shadow-none: none;
  --shadow-1: 0 1px 0 0 var(--border);
  --shadow-2: 0 2px 6px -2px rgb(0 0 0 / 0.08);
  --shadow-focus: 0 0 0 3px rgb(245 184 46 / 0.40);

  /* ====== MOTION ============================================ */
  --ease-out:  cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in:   cubic-bezier(0.5, 0, 0.75, 0);
  --dur-fast:  120ms;
  --dur-base:  180ms;
  --dur-slow:  260ms;

  /* ====== LAYOUT =========================================== */
  --container-narrow: 640px;
  --container:        960px;
  --container-wide:   1200px;
  --tap-target:       44px;
}

/* ================================================================
   ELEMENT DEFAULTS
   ================================================================ */
* { box-sizing: border-box; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: var(--t-16);
  line-height: var(--lh-normal);
  font-weight: var(--w-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--w-regular);
  line-height: var(--lh-snug);
  letter-spacing: var(--tr-snug);
  color: var(--fg);
  margin: 0 0 var(--s-4) 0;
  text-wrap: balance;
}

p {
  margin: 0 0 var(--s-4) 0;
  font-size: var(--t-16);
  line-height: var(--lh-loose);
  text-wrap: pretty;
}

a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--accent); }
a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 2px;
}

hr {
  border: 0;
  border-top: var(--hairline);
  margin: var(--s-6) 0;
}

::selection {
  background: var(--gold-500);
  color: var(--gold-ink);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====== Container =================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
.container--narrow { max-width: 720px; }

/* ====== Top compliance bar ========================================== */
.top-bar {
  background: var(--ink-900);
  color: var(--ink-200);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 480px) { .top-bar { font-size: 12px; } }
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 32px;
  gap: 8px;
  padding-top: 4px; padding-bottom: 4px;
}
.top-bar .age-badge {
  display: inline-flex; align-items: center; gap: 8px;
}
.top-bar .age-badge::before {
  content: "18+";
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 18px;
  background: var(--gold-500);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 11px;
  border-radius: 3px;
  letter-spacing: 0;
}
.top-bar a { color: var(--ink-200); text-decoration: none; }
.top-bar a:hover { color: var(--gold-500); }

/* ====== Header ====================================================== */
.site-header {
  background: var(--paper-50);
  border-bottom: 1px solid var(--paper-200);
  position: sticky; top: 0;
  z-index: 20;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
  gap: 16px;
}
@media (min-width: 480px) { .site-header .container { height: 64px; } }
@media (min-width: 768px) { .site-header .container { height: 80px; } }

.site-header .brand { text-decoration: none; display: inline-flex; }
.site-header .brand img { height: 24px; flex: none; }
@media (min-width: 480px) { .site-header .brand img { height: 28px; } }
@media (min-width: 768px) { .site-header .brand img { height: 36px; } }

.nav {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px) { .nav { display: flex; } }
.nav a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-900);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink-900);
}
.nav a:hover { color: var(--gold-600); }

.header-right { display: flex; gap: 8px; align-items: center; }
@media (min-width: 480px) { .header-right { gap: 12px; } }

.header-cta {
  display: none;
}
@media (min-width: 960px) { .header-cta { display: inline-flex; } }

/* Mobile menu button */
.mobile-menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--paper-300);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex: none;
}
@media (min-width: 480px) { .mobile-menu-btn { width: 44px; height: 44px; } }
.mobile-menu-btn span {
  width: 18px; height: 1.5px; background: var(--ink-900);
  position: relative; display: block;
}
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--ink-900);
  transition: transform var(--dur-fast) var(--ease-out);
}
.mobile-menu-btn span::before { top: -6px; }
.mobile-menu-btn span::after  { top: 6px; }
.mobile-menu-btn[aria-expanded="true"] span { background: transparent; }
.mobile-menu-btn[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }
@media (min-width: 960px) { .mobile-menu-btn { display: none; } }

/* ====== Mobile drawer ============================================== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
}
.drawer[hidden] { display: none; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.55);
  animation: drawer-fade var(--dur-base) var(--ease-out);
}
.drawer-panel {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: min(360px, 88vw);
  background: var(--paper-50);
  border-left: 1px solid var(--paper-200);
  display: flex; flex-direction: column;
  padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
  animation: drawer-slide var(--dur-slow) var(--ease-out);
  overflow-y: auto;
  gap: 16px;
}
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--paper-200);
}
.drawer-head img.logo { height: 24px; }
.drawer-close {
  width: 44px; height: 44px;
  border: 0; background: transparent;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px; line-height: 1;
  color: var(--ink-900);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.drawer-close:hover { background: var(--paper-100); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 17px;
  border-bottom: 1px solid var(--paper-200);
  color: var(--ink-900); text-decoration: none;
  min-height: 56px;
}
.drawer-nav a:hover { color: var(--gold-600); }
.drawer-nav a.active { color: var(--gold-600); }
.drawer-nav a::after {
  content: "›"; font-family: var(--font-display); color: var(--ink-300); font-size: 20px;
}
.drawer-cta {
  margin-top: auto;
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.drawer-cta .btn { width: 100%; }
.drawer-foot {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.drawer-foot strong { color: var(--ink-900); font-weight: 600; }

@keyframes drawer-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes drawer-slide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .drawer-panel, .drawer-backdrop { animation: none; }
}
.body-locked { overflow: hidden; }

/* ====== Breadcrumb ================================================== */
.breadcrumb {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 16px 0;
}
.breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink-900); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb .current { color: var(--ink-900); }

/* ====== Hero ======================================================== */
.hero {
  padding: 16px 0 48px;
}
@media (min-width: 768px) { .hero { padding: 24px 0 64px; } }

.hero-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 48px; }
}

.hero .eyebrow {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.hero .eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--ink-900);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(40px, 8vw, 84px);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .script {
  font-family: var(--font-script);
  color: var(--gold-500);
  text-transform: none;
  font-size: 0.75em;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(-0.05em) rotate(-4deg);
  margin-left: 0.05em;
  white-space: nowrap;
}

.hero .lead {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-900);
  margin: 0 0 24px;
  max-width: 560px;
}
@media (min-width: 768px) { .hero .lead { font-size: 20px; } }

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--paper-200);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-meta strong { color: var(--ink-900); font-weight: 600; }
.hero-meta .avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, #3D3D3D, #0A0A0A);
  color: var(--paper-50);
  font-family: var(--font-display);
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Hero card (right-side facts panel) */
.hero-card {
  background: var(--ink-900);
  color: var(--paper-50);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-card .card-eyebrow {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.hero-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--paper-50);
  margin: 0;
}
.hero-card .big-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold-500);
  letter-spacing: -0.02em;
}
.hero-card .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--ink-700);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-200);
  gap: 12px;
}
.hero-card .row strong { color: var(--paper-50); font-weight: 600; text-align: right; }

/* ====== Buttons ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 22px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(245,184,46,0.40); }
.btn[hidden] { display: none; }

.btn-primary { background: var(--gold-500); color: var(--ink-900); }
.btn-primary:hover { background: var(--gold-600); color: var(--ink-900); }

.btn-secondary { background: var(--ink-900); color: var(--paper-50); }
.btn-secondary:hover { background: var(--ink-700); color: var(--paper-50); }

.btn-outline {
  background: transparent; color: var(--ink-900);
  border: 1.5px solid var(--ink-900);
}
.btn-outline:hover { background: var(--ink-900); color: var(--paper-50); }

.btn-small { height: 40px; padding: 0 14px; font-size: 13px; border-radius: 8px; }

.btn-link {
  height: auto; padding: 0;
  background: transparent; color: var(--ink-900);
  text-decoration: underline; text-underline-offset: 4px;
  border-radius: 2px;
}
.btn-link:hover { color: var(--gold-600); }

.btn .arrow {
  font-family: var(--font-display);
  display: inline-block;
  transform: translateY(-1px);
}

/* ====== Section ===================================================== */
main { display: block; }
.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.section--alt { background: var(--paper-100); }
.section--ink { background: var(--ink-900); color: var(--paper-50); }
.section--ink h2 { color: var(--paper-50); }
.section--ink p { color: var(--ink-200); }
.section--ink a { color: var(--paper-50); }
.section--ink a:hover { color: var(--gold-500); }

.section-head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
}
.section-head .heading-block { max-width: 720px; }
.section-head .section-eyebrow {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 12px;
}
.section-head .section-eyebrow::before {
  content: ""; width: 24px; height: 2px; background: currentColor;
}
.section--ink .section-head .section-eyebrow { color: var(--gold-500); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 8px;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px; line-height: 1.55; margin: 0;
  color: var(--fg-muted);
  max-width: 60ch;
}
.section--ink .section-head p { color: var(--ink-200); }

/* ====== At-a-glance facts table ===================================== */
.facts {
  border: 1px solid var(--paper-200);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.facts dl { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .facts dl { grid-template-columns: 1fr 1fr; } }
.facts > dl > div {
  display: grid; grid-template-columns: 100px 1fr; gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--paper-200);
  font-family: var(--font-sans);
  font-size: 14px;
  align-items: baseline;
}
@media (min-width: 480px) {
  .facts > dl > div { grid-template-columns: 120px 1fr; gap: 18px; padding: 16px 20px; }
}
@media (min-width: 768px) {
  .facts > dl > div { grid-template-columns: 140px 1fr; padding: 18px 24px; font-size: 15px; }
}
.facts dt {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
}
.facts dd { margin: 0; color: var(--ink-900); }
.facts dd strong { font-weight: 700; }

/* ====== Sports/feature grid ========================================= */
.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .sports-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (min-width: 900px) { .sports-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.sport-card {
  background: #fff;
  border: 1px solid var(--paper-200);
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.sport-card:hover { border-color: var(--paper-300); background: var(--paper-100); }
.sport-card .index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.sport-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}
.sport-card .leagues {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* ====== Payment badges ============================================== */
.payments {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.pay-badge {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 18px;
  background: #fff; border: 1px solid var(--paper-300);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  white-space: nowrap;
}
.section--ink .pay-badge {
  background: var(--ink-800); border-color: var(--ink-700); color: var(--paper-50);
}
.pay-badge .dot {
  width: 22px; height: 22px; border-radius: 4px; flex: none;
}

/* ====== Steps (numbered) ============================================ */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 12px;
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.steps li {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--paper-200);
  border-radius: 12px;
}
.section--ink .steps li { background: var(--ink-800); border-color: var(--ink-700); }
.steps .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-500); color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}
.steps h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.1;
}
.section--ink .steps h3 { color: var(--paper-50); }
.steps p {
  margin: 0; font-size: 14px; line-height: 1.55; color: var(--fg-muted);
}
.section--ink .steps p { color: var(--ink-200); }

/* ====== Numbered article steps (login/app/payment pages) ============ */
.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.numbered-steps > li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.numbered-steps > li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--gold-500);
  padding-top: 2px;
}
.numbered-steps h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.1;
}
.numbered-steps p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
}
.numbered-steps p:last-child { margin-bottom: 0; }
.numbered-steps ul {
  margin: 6px 0 0; padding-left: 18px; font-size: 15px; line-height: 1.6; color: var(--ink-900);
}
.numbered-steps ul li { margin-bottom: 4px; }

/* ====== Article prose =============================================== */
.prose {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  max-width: 680px;
}
.prose p { margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--ink-900); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-600); }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}
.prose ul { padding-left: 1.2em; margin: 0 0 18px; }
.prose ul li { margin-bottom: 6px; }
.prose ol { padding-left: 1.2em; margin: 0 0 18px; }
.prose ol li { margin-bottom: 6px; }
.prose blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold-500);
  background: var(--paper-100);
  font-style: italic;
}
.prose strong { font-weight: 700; }

/* ====== FAQ accordion =============================================== */
.faq {
  border-top: 1px solid var(--paper-200);
}
.section--ink .faq { border-color: var(--ink-700); }
.faq details {
  border-bottom: 1px solid var(--paper-200);
}
.section--ink .faq details { border-color: var(--ink-700); }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px;
  cursor: pointer; min-height: 56px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .glyph {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  width: 24px;
  flex: none;
  text-align: center;
}
.faq details[open] .glyph::before { content: "−"; }
.faq details:not([open]) .glyph::before { content: "+"; }
.faq .answer {
  padding: 0 4px 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  max-width: 720px;
}
.faq .answer p { margin: 0 0 12px; }
.faq .answer p:last-child { margin-bottom: 0; }
.section--ink .faq .answer { color: var(--ink-100); }

/* ====== Tables ======================================================= */
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--paper-200);
  border-radius: 12px;
  background: #fff;
}
.tbl {
  width: 100%; min-width: 480px; border-collapse: collapse;
  font-family: var(--font-sans);
}
.tbl thead { border-bottom: 2px solid var(--ink-900); }
.tbl th {
  text-align: left; padding: 14px 16px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  background: var(--paper-100);
}
.tbl td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--paper-200);
  color: var(--ink-900);
  vertical-align: top;
}
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr.pick { background: rgba(245, 184, 46, 0.10); }
.tbl td.num { font-family: var(--font-mono); text-align: right; }
.tbl th.num { text-align: right; }

/* ====== Author / byline card ======================================== */
.author-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--paper-200);
  border-radius: 12px;
  background: #fff;
  max-width: 680px;
}
.author-card .avatar {
  width: 56px; height: 56px; border-radius: 999px;
  background: linear-gradient(135deg, #3D3D3D, #0A0A0A);
  color: var(--paper-50);
  font-family: var(--font-display);
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.author-card .name {
  font-family: var(--font-sans);
  font-weight: 700; font-size: 16px;
  margin: 0;
}
.author-card .role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-muted);
  margin: 2px 0 8px;
}
.author-card .bio {
  font-size: 14px; line-height: 1.55; color: var(--ink-900); margin: 0 0 8px;
}
.author-card .stamps {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-muted);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.author-card .stamps strong { color: var(--ink-900); font-weight: 600; }

/* ====== Callout / methodology ====================================== */
.callout {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--paper-200);
  border-radius: 12px;
  display: flex; gap: 16px;
  max-width: 720px;
}
.callout .badge {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--ink-900);
  color: var(--paper-50);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  display: inline-flex; align-items: center; justify-content: center;
}
.callout .title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-900);
}
.callout .body {
  font-family: var(--font-sans);
  font-size: 14px; line-height: 1.55;
  color: var(--ink-900);
  margin: 0;
}

/* ====== Disclaimer block ============================================ */
.disclaimer {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--paper-300);
  border-radius: 12px;
  background: #fff;
  display: grid; gap: 16px;
}
@media (min-width: 768px) {
  .disclaimer { grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 32px; }
}
.disclaimer .age {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: var(--ink-900); color: var(--paper-50);
  font-family: var(--font-display);
  font-size: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.disclaimer h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink-900);
  line-height: 1.4;
}
.disclaimer p {
  font-family: var(--font-sans);
  font-size: 14px; line-height: 1.6; color: var(--ink-900);
  margin: 0 0 10px; max-width: 720px;
}
.disclaimer a { color: var(--ink-900); text-underline-offset: 3px; }
.disclaimer .links {
  display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px;
  margin-top: 4px;
}

/* ====== Editorial disclosure (affiliate notice) ====================== */
.editorial-disclosure {
  background: var(--paper-100);
  border: 1px solid var(--paper-200);
  border-left: 3px solid var(--gold-500);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-900);
  max-width: 720px;
  margin: 0 auto 24px;
  font-family: var(--font-sans);
}
.editorial-disclosure strong {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: block;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

/* ====== Footer ====================================================== */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: 48px 0 24px;
}
.site-footer img.logo { height: 36px; margin-bottom: 24px; }
.site-footer .cols {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 640px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .site-footer .cols { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a {
  color: var(--ink-100); text-decoration: none; font-size: 14px;
}
.site-footer a:hover { color: var(--gold-500); }
.site-footer .legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-700);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 12px; line-height: 1.55; color: var(--ink-300);
}
@media (min-width: 900px) { .site-footer .legal { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.site-footer .legal strong { color: var(--paper-50); font-weight: 600; }
.site-footer .legal p { margin: 0; max-width: 680px; }

/* ====== Sticky bottom CTA (mobile only) ============================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--paper-50);
  border-top: 1px solid var(--paper-200);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; gap: 12px; align-items: center;
  z-index: 30;
  box-shadow: 0 -8px 16px -10px rgba(0,0,0,0.10);
}
.sticky-cta .offer {
  flex: 1; min-width: 0; line-height: 1.2;
}
.sticky-cta .label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
}
.sticky-cta .amount {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-top: 2px;
  line-height: 1.05;
}
.sticky-cta .amount .num { color: var(--gold-500); text-transform: none; }
.sticky-cta .btn { height: 48px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
@media (min-width: 960px) { .sticky-cta { display: none; } }

main { padding-bottom: 96px; }
@media (min-width: 960px) { main { padding-bottom: 0; } }

/* ====== Phone mockup (used on app page hero) ======================== */
.device {
  --device-w: 260px;
  width: var(--device-w);
  aspect-ratio: 9 / 19;
  background: #0A0A0A;
  border-radius: 36px;
  border: 1px solid #2A2A2A;
  padding: 10px;
  position: relative;
  box-shadow:
    0 24px 48px -16px rgba(0,0,0,0.35),
    0 0 0 1px #1c1c1c inset;
  margin: 0 auto;
}
.device::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #0A0A0A;
  border-radius: 14px;
  z-index: 5;
}
.device .screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--paper-50);
  border-radius: 26px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.device .status {
  flex: none;
  height: 36px;
  padding: 0 22px 8px;
  display: flex; align-items: flex-end; justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  color: var(--ink-900);
}
.device .status .dots { display: flex; gap: 3px; align-items: flex-end; }
.device .status .bar { width: 3px; background: var(--ink-900); border-radius: 1px; }
.device .status .b1 { height: 5px; }
.device .status .b2 { height: 7px; }
.device .status .b3 { height: 9px; }
.device .status .b4 { height: 11px; }
.device .app-bar {
  flex: none;
  padding: 8px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--paper-200);
}
.device .app-bar img { height: 18px; }
.device .app-bar .ham {
  width: 18px; height: 12px;
  background: linear-gradient(var(--ink-900), var(--ink-900)) top/100% 1.5px no-repeat,
              linear-gradient(var(--ink-900), var(--ink-900)) center/100% 1.5px no-repeat,
              linear-gradient(var(--ink-900), var(--ink-900)) bottom/100% 1.5px no-repeat;
}
.device .screen-body {
  flex: 1; overflow: hidden;
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.device .tile {
  background: var(--paper-100); border-radius: 8px;
  height: 60px;
  display: flex; align-items: center; padding: 0 12px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-900);
}
.device .tile.gold {
  background: var(--gold-500); color: var(--ink-900);
}
.device .tile.ink {
  background: var(--ink-900); color: var(--paper-50);
}
.device .home-ind {
  position: absolute;
  left: 50%; bottom: 8px; transform: translateX(-50%);
  width: 110px; height: 4px;
  background: var(--ink-900);
  border-radius: 4px;
  opacity: 0.85;
}

/* ====== Utility ===================================================== */
.hide-on-mobile { display: none; }
@media (min-width: 768px) { .hide-on-mobile { display: initial; } }
.row-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Floating bet-script signature, for in-line use */
.signature {
  font-family: var(--font-script);
  color: var(--gold-500);
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px) rotate(-3deg);
}

/* ====== Two-column intro layout for guide pages ===================== */
.guide-intro-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .guide-intro-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
    gap: 56px;
  }
}

/* ====== Bonus card grid (dark) ====================================== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
.bonus-card {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: 12px;
  padding: 24px;
  color: var(--paper-50);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-card .tag {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
}
.bonus-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper-50);
}
.bonus-card .desc {
  font-size: 14px; line-height: 1.55; color: var(--ink-200); margin: 0;
}
.bonus-card ul {
  margin: 8px 0 0; padding-left: 18px;
  font-size: 13px; line-height: 1.55; color: var(--ink-200);
}
.bonus-card ul li { margin-bottom: 4px; }
