/* OddPicks — Premium Sports Handicapper Site | International Standard UI */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --navy:    #0b1628;
  --navy2:   #162237;
  --navy3:   #1e3050;
  --blue:    #1565c0;
  --blue2:   #1976d2;
  --blue3:   #42a5f5;
  --gold:    #f59e0b;
  --gold2:   #fbbf24;
  --gold3:   #fde68a;
  --green:   #059669;
  --green2:  #10b981;
  --red:     #dc2626;
  --red2:    #ef4444;
  /* Ink */
  --ink:     #0f172a;
  --ink2:    #334155;
  --ink3:    #64748b;
  --ink4:    #94a3b8;
  /* Surface */
  --surface: #ffffff;
  --bg:      #f1f5f9;
  --bg2:     #e2e8f0;
  --border:  #e2e8f0;
  --border2: #cbd5e1;
  /* Gradients */
  --grad-navy: linear-gradient(135deg, #0b1628 0%, #162237 50%, #1e3050 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --grad-green: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --grad-blue: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  --grad-hero: linear-gradient(135deg, #0b1628 0%, #0d1f3c 40%, #1a3050 70%, #0f2644 100%);
  /* Effects */
  --radius:  8px;
  --radius2: 12px;
  --radius3: 16px;
  --shadow:  0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.07);
  --shadow2: 0 4px 16px rgba(0,0,0,0.1), 0 12px 40px rgba(0,0,0,0.12);
  --shadow3: 0 8px 32px rgba(0,0,0,0.15), 0 20px 60px rgba(0,0,0,0.15);
  --glow-gold: 0 0 20px rgba(245,158,11,0.25);
  --glow-blue: 0 0 20px rgba(21,101,192,0.2);
  /* Layout */
  --max-w: 1200px;
  --font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--blue); text-decoration: none; transition: color 0.15s; }
a:hover { text-decoration: underline; color: var(--blue2); }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  border-bottom: 2px solid rgba(245,158,11,0.6);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 64px; gap: 0;
}
.logo {
  color: #fff; font-size: 22px; font-weight: 900;
  letter-spacing: -0.8px; flex-shrink: 0; margin-right: 36px;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo:hover { text-decoration: none; opacity: 0.9; }
.logo-accent { color: var(--gold); }
.logo-tag {
  font-size: 10px; font-weight: 700; background: var(--blue2);
  color: #fff; padding: 2px 7px; border-radius: 4px;
  letter-spacing: 0.8px; vertical-align: 3px; text-transform: uppercase;
}

/* Main nav */
.main-nav { display: flex; align-items: stretch; flex: 1; height: 64px; }
.main-nav > a, .nav-item > a {
  display: flex; align-items: center; padding: 0 16px;
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap; height: 64px;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.1px;
}
.main-nav > a:hover, .nav-item > a:hover {
  color: #fff; border-color: var(--gold); text-decoration: none;
}
.main-nav > a.active { color: var(--gold); border-color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 2px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius2); box-shadow: var(--shadow3);
  min-width: 220px; display: none; z-index: 300;
  padding: 8px 0; overflow: hidden;
}
.nav-item:hover .nav-dropdown { display: block; animation: dropIn 0.15s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.nav-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; color: var(--ink2);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background 0.1s, color 0.1s;
}
.nav-dropdown a:hover { background: var(--bg); color: var(--blue); text-decoration: none; }
.nav-dropdown .dd-divider { border-top: 1px solid var(--border); margin: 5px 0; }
.nav-dropdown .dd-label {
  padding: 8px 18px 4px; font-size: 10px; font-weight: 800;
  color: var(--ink4); text-transform: uppercase; letter-spacing: 0.8px;
}

/* Header CTA */
.header-cta { margin-left: auto; }
.btn-header-cta {
  background: var(--grad-gold); color: var(--navy);
  font-weight: 700; font-size: 13px; padding: 9px 22px;
  border-radius: var(--radius); white-space: nowrap; text-decoration: none;
  display: inline-block; transition: all 0.2s; letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.btn-header-cta:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-1px); box-shadow: var(--glow-gold);
  text-decoration: none;
}

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 5px 0; border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ════════════════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.breadcrumb .container {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; flex-wrap: wrap;
}
.bc-link { color: var(--blue); font-weight: 500; }
.bc-link:hover { text-decoration: underline; }
.bc-sep { color: var(--ink4); font-size: 10px; }
.bc-current { color: var(--ink3); font-weight: 500; }

/* ════════════════════════════════════════════════════════
   SPORT TICKER
════════════════════════════════════════════════════════ */
.sport-ticker {
  background: var(--navy2); padding: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sport-ticker::-webkit-scrollbar { display: none; }
.sport-ticker-inner { display: flex; white-space: nowrap; }
.sport-ticker a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 18px; color: rgba(255,255,255,0.55);
  font-size: 13px; font-weight: 600; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.2px;
}
.sport-ticker a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.sport-ticker a.active { color: var(--gold); border-color: var(--gold); }

/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  border-radius: var(--radius); text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none; text-align: center;
  letter-spacing: 0.2px; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-blue); color: #fff; padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(21,101,192,0.25);
}
.btn-primary:hover { box-shadow: var(--glow-blue); color: #fff; }
.btn-gold {
  background: var(--grad-gold); color: var(--navy); padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.btn-gold:hover { box-shadow: var(--glow-gold); }
.btn-outline {
  background: transparent; color: var(--blue); padding: 11px 22px;
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-dark {
  background: rgba(255,255,255,0.1); color: #fff; padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px);
}
.btn-dark:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-full { display: flex; width: 100%; }
.btn-picks {
  background: var(--blue); color: #fff; padding: 7px 14px;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  white-space: nowrap; text-decoration: none;
}
.btn-picks:hover { background: var(--blue2); text-decoration: none; color: #fff; }
.btn-buy {
  background: var(--gold); color: var(--navy); padding: 8px 16px;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  white-space: nowrap; text-decoration: none;
}
.btn-buy:hover { background: var(--gold2); text-decoration: none; }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  background: var(--grad-hero);
  padding: 64px 0 56px; color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(21,101,192,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.35);
  color: var(--gold); font-size: 11px; font-weight: 800; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 20px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 900;
  line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 580px; margin-bottom: 36px; line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
}
.hero-stat { padding: 0 40px 0 0; }
.hero-stat strong {
  display: block; font-size: 30px; font-weight: 900;
  color: var(--gold); letter-spacing: -1px; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600;
}

/* ════════════════════════════════════════════════════════
   SECTION LAYOUT
════════════════════════════════════════════════════════ */
.section { padding: 52px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy); color: #fff; }
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; flex-wrap: wrap; gap: 10px;
}
.section-title {
  font-size: 22px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: ""; display: block; width: 4px; height: 22px;
  background: var(--grad-gold); border-radius: 2px; flex-shrink: 0;
}
.section-link {
  color: var(--blue); font-size: 13px; font-weight: 700;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.section-link:hover { text-decoration: underline; }
.page-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 900;
  margin: 32px 0 10px; letter-spacing: -0.8px;
}
.page-sub { color: var(--ink3); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   LEADERBOARD TABLE — Premium
════════════════════════════════════════════════════════ */
.lb-table-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden; box-shadow: var(--shadow);
}
.lb-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lb-table thead tr { background: var(--grad-navy); }
.lb-table th {
  padding: 14px 18px; text-align: left;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; color: rgba(255,255,255,0.55); white-space: nowrap;
}
.lb-table th:first-child { color: rgba(255,255,255,0.3); width: 52px; text-align: center; }
.lb-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.lb-table tr:last-child td { border-bottom: none; }
.lb-table tbody tr { transition: background 0.12s; }
.lb-table tbody tr:nth-child(even) td { background: rgba(241,245,249,0.5); }
.lb-table tbody tr:hover td { background: #eff6ff; }
/* Gold/Silver/Bronze rows */
.lb-table tbody tr:nth-child(1) td { background: rgba(245,158,11,0.06); }
.lb-table tbody tr:nth-child(2) td { background: rgba(148,163,184,0.06); }
.lb-table tbody tr:nth-child(3) td { background: rgba(180,120,60,0.05); }
.lb-table tbody tr:nth-child(1):hover td,
.lb-table tbody tr:nth-child(2):hover td,
.lb-table tbody tr:nth-child(3):hover td { background: #eff6ff; }

.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  font-weight: 800; font-size: 12px; margin: 0 auto;
}
.rank-1 { background: linear-gradient(135deg, #ffd700, #f59e0b); color: #7a4f00; box-shadow: 0 2px 8px rgba(245,158,11,0.4); }
.rank-2 { background: linear-gradient(135deg, #e2e8f0, #94a3b8); color: #334155; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #b45309); color: #fff; }
.rank-n { background: var(--bg2); color: var(--ink4); font-size: 11px; }
.capper-link {
  font-weight: 700; color: var(--ink); text-decoration: none;
  display: block; font-size: 14px; transition: color 0.15s;
}
.capper-link:hover { color: var(--blue); text-decoration: none; }
.capper-sport-tag {
  display: inline-block; font-size: 11px; color: var(--ink4);
  margin-top: 3px; font-weight: 500;
}
.stat-green { color: var(--green); font-weight: 700; }
.stat-gold { color: var(--gold); font-weight: 700; }
.stat-red { color: var(--red); font-weight: 700; }
.profit-positive { color: var(--green); font-weight: 700; }

/* ════════════════════════════════════════════════════════
   CAPPER CARDS (homepage grid)
════════════════════════════════════════════════════════ */
.capper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.capper-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.capper-card:hover {
  box-shadow: var(--shadow2); transform: translateY(-2px);
  border-color: var(--border2);
}
.capper-card-rank { font-size: 18px; width: 28px; text-align: center; flex-shrink: 0; }
.capper-card-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 2px 8px rgba(11,22,40,0.3);
}
.capper-card-info { flex: 1; min-width: 0; }
.capper-card-name {
  font-weight: 700; font-size: 14px; color: var(--ink);
  text-decoration: none; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.15s;
}
.capper-card-name:hover { color: var(--blue); text-decoration: none; }
.capper-card-sport { font-size: 12px; color: var(--ink4); margin-top: 2px; }
.capper-card-stats { text-align: right; flex-shrink: 0; }
.capper-card-pct {
  font-size: 20px; font-weight: 900; color: var(--green);
  display: block; letter-spacing: -0.5px;
}
.capper-card-rec { font-size: 11px; color: var(--ink4); font-weight: 500; }

/* ════════════════════════════════════════════════════════
   SPORT PILLS (filter nav)
════════════════════════════════════════════════════════ */
.sport-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 32px; }
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.15s; white-space: nowrap;
}
.pill:hover { text-decoration: none; }
.pill-default {
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--ink2);
}
.pill-default:hover {
  background: #eff6ff; border-color: var(--blue);
  color: var(--blue); transform: translateY(-1px);
}
.pill-active {
  background: var(--grad-navy); border: 1px solid transparent;
  color: #fff; box-shadow: var(--shadow);
}

/* ════════════════════════════════════════════════════════
   CAPPER PAGE — Hero Card
════════════════════════════════════════════════════════ */
.capper-hero-card {
  background: var(--grad-hero);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius3); padding: 32px;
  margin: 28px 0; display: flex; gap: 28px; align-items: flex-start;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow3);
}
.capper-hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(245,158,11,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.capper-hero-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue3) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,0.4), 0 0 0 3px rgba(255,255,255,0.1);
  position: relative; z-index: 1;
}
.capper-hero-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.capper-hero-name {
  font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #fff;
  margin-bottom: 8px; letter-spacing: -0.5px; line-height: 1.1;
}
.capper-hero-tagline { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 18px; }
.capper-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 12px;
  font-weight: 700; padding: 5px 11px; border-radius: 6px;
  letter-spacing: 0.1px;
}
.badge-win { background: rgba(5,150,105,0.2); color: #34d399; border: 1px solid rgba(52,211,153,0.25); }
.badge-roi { background: rgba(21,101,192,0.25); color: #93c5fd; border: 1px solid rgba(147,197,253,0.25); }
.badge-sport { background: rgba(245,158,11,0.2); color: var(--gold2); border: 1px solid rgba(251,191,36,0.25); }
.badge-live { background: rgba(220,38,38,0.2); color: #fca5a5; border: 1px solid rgba(252,165,165,0.2); }
.badge-rank { background: rgba(245,158,11,0.25); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }
.capper-hero-cta {
  flex-shrink: 0; display: flex; flex-direction: column;
  gap: 10px; align-items: flex-end; position: relative; z-index: 1;
}

/* Stat blocks row */
.stat-blocks {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; margin: 0 0 28px;
}
.stat-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 20px 16px;
  text-align: center; box-shadow: var(--shadow);
  transition: all 0.2s; position: relative; overflow: hidden;
}
.stat-block::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold); border-radius: 3px 3px 0 0;
}
.stat-block:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.stat-block-value {
  font-size: 24px; font-weight: 900; color: var(--ink);
  display: block; letter-spacing: -0.5px; line-height: 1;
}
.stat-block-label {
  font-size: 11px; color: var(--ink4); text-transform: uppercase;
  letter-spacing: 0.8px; margin-top: 6px; display: block; font-weight: 600;
}
.stat-block-value.green { color: var(--green); }
.stat-block-value.gold { color: var(--gold); }
.stat-block-value.blue { color: var(--blue2); }

/* Capper layout */
.capper-layout {
  display: grid; grid-template-columns: 1fr 316px;
  gap: 28px; align-items: start; padding-bottom: 80px;
}
.capper-main { display: flex; flex-direction: column; gap: 24px; }
.capper-sidebar { position: sticky; top: 82px; display: flex; flex-direction: column; gap: 18px; }

/* Panels */
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); box-shadow: var(--shadow); overflow: hidden;
}
.panel-header {
  background: var(--grad-navy); color: #fff; padding: 15px 22px;
  display: flex; align-items: center; gap: 10px;
}
.panel-header h2, .panel-header h3 {
  font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.1px;
}
.panel-badge {
  font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 4px;
  margin-left: auto; letter-spacing: 0.6px; text-transform: uppercase;
}
.panel-badge-ai { background: var(--blue2); color: #fff; }
.panel-badge-sc { background: var(--gold); color: var(--navy); }
.panel-body { padding: 22px; }

/* AI report */
.ai-report p {
  font-size: 14px; line-height: 1.8; color: var(--ink2);
  margin-bottom: 14px;
}
.ai-report p:last-child { margin-bottom: 0; }

/* Stat bars */
.stat-bars { display: flex; flex-direction: column; gap: 14px; }
.stat-bar-row {
  display: grid; grid-template-columns: 130px 1fr 70px;
  align-items: center; gap: 12px;
}
.stat-bar-label { font-size: 13px; color: var(--ink2); font-weight: 600; }
.stat-bar-track {
  height: 9px; background: var(--bg2); border-radius: 5px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%; border-radius: 5px;
  transition: width 0.9s cubic-bezier(0.4,0,0.2,1);
}
.stat-bar-value { font-size: 13px; font-weight: 700; color: var(--ink); text-align: right; }

/* Charts */
.chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.chart-block {}
.chart-label {
  font-size: 12px; font-weight: 700; color: var(--ink4);
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.6px;
}
.chart-canvas-wrap { position: relative; height: 168px; }

/* Gauge row */
.gauge-row {
  display: flex; align-items: center; gap: 24px;
  padding-top: 20px; border-top: 1px solid var(--border); margin-top: 20px;
}
.gauge-block { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.gauge-block span {
  font-size: 11px; color: var(--ink4); text-transform: uppercase;
  letter-spacing: 0.5px; font-weight: 700;
}
.gauge-stats { flex: 1; }
.gauge-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.gauge-stat-row:last-child { border-bottom: none; }
.gauge-stat-row dt { color: var(--ink3); font-weight: 500; }
.gauge-stat-row dd { color: var(--ink); font-weight: 700; }

/* Sportscapping native widget */
.sc-widget {
  border: 1px solid var(--border); border-radius: var(--radius2);
  overflow: hidden; box-shadow: var(--shadow);
}
.sc-widget-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 2px solid var(--border); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
}
.sc-widget-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--ink2);
}
.sc-powered { font-size: 12px; color: var(--ink4); margin-left: auto; }
.sc-powered a { color: var(--blue); font-weight: 600; }
.sc-widget-body {
  padding: 0; background: var(--surface);
  max-height: 600px; overflow-y: auto;
}
.sc-widget-body * { max-width: 100%; }
.sc-widget-body table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sc-widget-body td, .sc-widget-body th {
  padding: 9px 14px; border-bottom: 1px solid var(--border);
}
.sc-widget-body th {
  background: var(--bg); font-weight: 700; font-size: 11px;
  text-transform: uppercase; color: var(--ink3); letter-spacing: 0.5px;
}
.sc-widget-body tr:hover td { background: var(--bg); }
.sc-widget-empty { text-align: center; padding: 40px 20px; }

/* Sidebar */
.sidebar-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden; box-shadow: var(--shadow);
}
.sidebar-box-header {
  background: var(--navy2); color: #fff;
  padding: 13px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.1px;
}
.sidebar-box-body { padding: 18px; }
.sidebar-stat-list { list-style: none; }
.sidebar-stat-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.sidebar-stat-list li:last-child { border-bottom: none; }
.sidebar-stat-list span { color: var(--ink3); font-weight: 500; }
.sidebar-stat-list strong { color: var(--ink); font-weight: 700; }
.sidebar-cta-box {
  background: var(--grad-hero); border-radius: var(--radius2);
  padding: 24px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow3);
}
.sidebar-cta-box::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(245,158,11,0.15) 0%, transparent 60%);
}
.sidebar-cta-box h2, .sidebar-cta-box h3 {
  color: #fff; font-size: 16px; font-weight: 800;
  margin-bottom: 6px; position: relative; z-index: 1;
}
.sidebar-cta-box p {
  color: rgba(255,255,255,0.55); font-size: 12px;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.sidebar-cta-stack {
  display: flex; flex-direction: column; gap: 9px; position: relative; z-index: 1;
}
.related-capper-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.related-capper-row:last-child { border-bottom: none; }
.related-capper-row a {
  color: var(--ink); font-weight: 600; text-decoration: none; transition: color 0.15s;
}
.related-capper-row a:hover { color: var(--blue); }
.related-pct { color: var(--green); font-weight: 700; font-size: 13px; }

/* Inline CTA */
.inline-cta {
  background: var(--grad-hero); border-radius: var(--radius2);
  padding: 32px 36px; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; position: relative; overflow: hidden;
  box-shadow: var(--shadow3);
}
.inline-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(21,101,192,0.15) 0%, transparent 60%);
}
.inline-cta h2 {
  color: #fff; font-size: 20px; font-weight: 800;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.inline-cta p {
  color: rgba(255,255,255,0.6); font-size: 14px;
  position: relative; z-index: 1;
}
.inline-cta-actions {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════════════════════
   PICK ITEMS & TREND ITEMS
════════════════════════════════════════════════════════ */
.pick-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 18px;
  margin-bottom: 14px; box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.pick-item:hover { box-shadow: var(--shadow2); }
.pick-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sport-tag {
  display: inline-block; background: var(--navy); color: var(--gold);
  font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 4px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.pick-native { font-size: 13px; color: var(--ink2); line-height: 1.7; }
.pick-ai-note {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--ink2); display: flex; gap: 8px; align-items: flex-start;
}
.ai-tag {
  background: var(--blue2); color: #fff; font-size: 10px;
  font-weight: 800; padding: 2px 7px; border-radius: 4px;
  flex-shrink: 0; margin-top: 1px; letter-spacing: 0.5px;
}
.trend-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 18px; margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.trend-native { font-size: 13px; color: var(--ink2); line-height: 1.7; }
.trend-ai-note {
  font-size: 13px; color: var(--ink3); margin-top: 10px;
  padding-top: 10px; border-top: 1px solid var(--border); line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   CTA BOX (page-level)
════════════════════════════════════════════════════════ */
.cta-box {
  background: var(--grad-hero); border-radius: var(--radius2);
  padding: 40px; margin: 40px 0; display: flex;
  justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap; box-shadow: var(--shadow3);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.08) 0%, transparent 60%);
}
.cta-box-text { position: relative; z-index: 1; }
.cta-box-text h2 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.cta-box-text p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; }
.cta-box-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }

/* Social proof bar */
.social-proof {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.6); margin: 0 0 14px;
}
.sp-dot {
  width: 8px; height: 8px; background: var(--green2); border-radius: 50%;
  display: inline-block; box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ════════════════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius2); padding: 28px;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.why-card:hover {
  background: rgba(255,255,255,0.08); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.why-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.why-card h3 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; }

/* Sport grid */
.sport-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sport-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.sport-card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); border-color: var(--border2); }
.sport-card-header {
  background: var(--grad-navy); padding: 18px 16px;
  display: flex; align-items: center; gap: 10px;
}
.sport-card-icon { font-size: 24px; }
.sport-card-header h3 { color: #fff; font-size: 15px; font-weight: 800; }
.sport-card-body { padding: 16px; }
.sport-card-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.sport-card-links a {
  color: var(--blue); font-size: 13px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.15s;
}
.sport-card-links a:hover { text-decoration: underline; }
.sport-card-links a::before { content: "→"; font-size: 11px; opacity: 0.7; }
.sport-card-top-capper {
  font-size: 12px; color: var(--ink4); margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.sport-card-top-capper strong { color: var(--ink); font-weight: 700; }

/* ════════════════════════════════════════════════════════
   SCHEDULE
════════════════════════════════════════════════════════ */
.schedule-date-header {
  background: var(--navy); color: var(--gold); font-size: 13px;
  font-weight: 800; padding: 12px 18px;
  border-radius: var(--radius2) var(--radius2) 0 0;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.schedule-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); margin-bottom: 22px;
  overflow: hidden; box-shadow: var(--shadow);
}
.schedule-body { padding: 0; overflow-x: auto; }
.schedule-body table { width: 100%; border-collapse: collapse; font-size: 13px; }
.schedule-body td, .schedule-body th { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.schedule-body th { background: var(--bg); font-weight: 700; color: var(--ink3); font-size: 11px; text-transform: uppercase; }

/* ════════════════════════════════════════════════════════
   MODAL (exit intent)
════════════════════════════════════════════════════════ */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(11,22,40,0.75); z-index: 1000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.modal.visible { display: flex; animation: modalIn 0.25s ease; }
@keyframes modalIn {
  from { opacity:0; transform: scale(0.95); }
  to   { opacity:1; transform: scale(1); }
}
.modal-inner {
  background: var(--surface); border-radius: var(--radius3);
  padding: 40px; max-width: 460px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--ink4); transition: color 0.15s;
  font-family: var(--font);
}
.modal-close:hover { color: var(--ink); }
.modal-icon { font-size: 48px; margin-bottom: 16px; }
/* Both h2 and h3 inside modal work */
.modal-inner h2, .modal-inner h3 {
  font-size: 22px; font-weight: 900; margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.modal-inner p { color: var(--ink3); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }

/* ════════════════════════════════════════════════════════
   FOOTER — Premium
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px; margin-top: 80px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 56px; margin-bottom: 40px;
}
.footer-brand .logo {
  font-size: 21px; margin-bottom: 14px; display: inline-block;
}
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.38);
  line-height: 1.75; max-width: 260px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
/* Both h3 and h4 in footer columns */
.footer-cols h3, .footer-cols h4 {
  color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px;
}
.footer-cols a {
  display: block; color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 13px; margin-bottom: 8px; transition: color 0.15s;
}
.footer-cols a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-legal {
  font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.7;
}
.footer-legal a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.no-data {
  color: var(--ink4); font-size: 14px; padding: 32px 0;
  font-style: italic; text-align: center;
}
.section-divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .sport-grid { grid-template-columns: repeat(2,1fr); }
  .capper-grid { grid-template-columns: 1fr; }
  .stat-blocks { grid-template-columns: repeat(2,1fr); }
  .capper-layout { grid-template-columns: 1fr 280px; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy); height: auto; padding: 8px 0; z-index: 300;
    border-bottom: 2px solid rgba(245,158,11,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .main-nav.open > a, .main-nav.open .nav-item > a {
    height: auto; padding: 13px 20px; border-bottom: none;
    border-left: 3px solid transparent;
  }
  .main-nav.open > a:hover, .main-nav.open .nav-item > a:hover {
    border-left-color: var(--gold);
  }
  .nav-dropdown {
    position: static; display: none; box-shadow: none;
    border: none; background: rgba(0,0,0,0.25); border-radius: 0; padding: 0;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 11px 36px; color: rgba(255,255,255,0.6); }
  .mobile-toggle { display: block; }
  .capper-layout { grid-template-columns: 1fr; }
  .capper-sidebar { position: static; }
  .capper-hero-card { flex-direction: column; }
  .capper-hero-cta { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .chart-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .hero { padding: 40px 0 36px; }
  .hero-stats { gap: 24px; }
  .hero-stat { padding-right: 0; }
  .cta-box { flex-direction: column; text-align: center; padding: 32px 24px; }
  .inline-cta { flex-direction: column; padding: 28px 24px; }
  .inline-cta-actions { width: 100%; justify-content: center; }
  .lb-table { font-size: 12px; }
  .lb-table th, .lb-table td { padding: 11px 12px; }
  .stat-blocks { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .sport-grid { grid-template-columns: 1fr 1fr; }
  .capper-badges { gap: 6px; }
}
@media (max-width: 480px) {
  .sport-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .stat-blocks { grid-template-columns: repeat(2,1fr); }
  .gauge-row { flex-wrap: wrap; }
  .stat-bar-row { grid-template-columns: 100px 1fr 55px; }
  .capper-grid { grid-template-columns: 1fr; }
  .capper-hero-card { padding: 22px; }
  .panel-body { padding: 16px; }
}
. s c - w i d g e t - b o d y   i m g . s i n g l e - c a p p e r - i m a g e   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   }  
 