/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f4f5f7;
  --white:    #ffffff;
  --dark:     #111111;
  --nav:      #0f0f0f;
  --card:     #ffffff;
  --border:   #e5e7eb;
  --border2:  #d1d5db;
  --green:    #16a34a;
  --green2:   #15803d;
  --green-bg: #dcfce7;
  --green-lt: #f0fdf4;
  --red:      #dc2626;
  --red-bg:   #fee2e2;
  --blue:     #2563eb;
  --gold:     #d97706;
  --text:     #111827;
  --text2:    #374151;
  --muted:    #6b7280;
  --dim:      #9ca3af;
  --font:     'Inter', sans-serif;
  --font-alt: 'Space Grotesk', sans-serif;
  --radius:   8px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow2:  0 4px 12px rgba(0,0,0,.1);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green2); }
img { max-width: 100%; display: block; }

/* ── Top Nav ──────────────────────────────────────────────────────────────── */
.nav {
  background: var(--nav);
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 200;
  height: 56px;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  font-family: var(--font-alt);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand-dot { color: var(--green); }
.nav-logo { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav-link {
  color: #aaa;
  font-size: .88rem;
  font-weight: 500;
  padding: .35rem .75rem;
  border-radius: 6px;
  transition: all .15s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.active { color: #fff; }
.nav-right { display: flex; align-items: center; gap: .75rem; margin-left: auto; flex-shrink: 0; }

/* ── Announcement Bar ────────────────────────────────────────────────────── */
.announce-bar {
  background: var(--green);
  text-align: center;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
}
.announce-bar a { color: #fff; text-decoration: underline; }

/* ── Page Shell ──────────────────────────────────────────────────────────── */
.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 1rem;
  align-items: start;
}
.page-shell.no-right { grid-template-columns: 260px 1fr; }
.page-shell.full { grid-template-columns: 1fr; max-width: 900px; }

/* ── Left Sidebar (sport nav + widgets) ──────────────────────────────────── */
.sport-sidebar {
  position: sticky;
  top: 68px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.sport-sidebar::-webkit-scrollbar { width: 4px; }
.sport-sidebar::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

.sport-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  border: none;
  background: transparent;
  width: 100%;
}
.sport-btn:hover { background: var(--white); color: var(--text); box-shadow: var(--shadow); }
.sport-btn.active { background: var(--white); color: var(--green); box-shadow: var(--shadow); border-left: 3px solid var(--green); }
.sport-btn-icon { font-size: 1.15rem; line-height: 1; flex-shrink: 0; }

/* Left sidebar widget blocks */
.left-sidebar-widgets { margin-top: .75rem; display: flex; flex-direction: column; gap: .75rem; }

/* ── Main Content ────────────────────────────────────────────────────────── */
.main-content { min-width: 0; }

/* ── Sub-tabs ────────────────────────────────────────────────────────────── */
.sub-tabs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.sub-tabs::-webkit-scrollbar { display: none; }
.sub-tab {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .15s;
  text-decoration: none;
  cursor: pointer;
}
.sub-tab:hover { color: var(--text); }
.sub-tab.active { color: var(--green); border-bottom-color: var(--green); }

/* ── Section Header ──────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .2rem;
}

/* ── Play Cards (Covers style) ───────────────────────────────────────────── */
.plays-list { display: flex; flex-direction: column; gap: .75rem; }

.play-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .15s;
}
.play-card:hover { box-shadow: var(--shadow2); }

.play-card-top {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.play-card-badges { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; flex: 1; }
.play-card-ts { font-size: .75rem; color: var(--muted); white-space: nowrap; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .18rem .55rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-sport  { background: var(--dark); color: #fff; }
.badge-plat   { background: #eff6ff; color: var(--blue); border: 1px solid #bfdbfe; }
.badge-high   { background: var(--green-bg); color: var(--green); border: 1px solid #86efac; }
.badge-lock   { background: #f3f4f6; color: var(--muted); border: 1px solid var(--border); }
.badge-new    { background: #fef9c3; color: #92400e; border: 1px solid #fde68a; }
.badge-pro    { background: #f0fdf4; color: var(--green); border: 1px solid #86efac; }
.badge-vip    { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* ── 3-Tier play classification system ───────────────────────────────────── */
.badge-tier { font-size: .72rem; font-weight: 800; letter-spacing: .06em; }
.badge-tier.tier-high  {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46; border: 1px solid #6ee7b7;
}
.badge-tier.tier-super {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #78350f; border: 1px solid #fbbf24;
  box-shadow: 0 0 6px rgba(251, 191, 36, .35);
}
.badge-tier.tier-max {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #7f1d1d; border: 1px solid #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, .5);
  animation: pulse-max 2.4s ease-in-out infinite;
}
@keyframes pulse-max {
  0%,100% { box-shadow: 0 0 6px rgba(239, 68, 68, .4); }
  50%     { box-shadow: 0 0 14px rgba(239, 68, 68, .8); }
}

/* Tier-colored card borders */
.play-card-tier-high  { border-left: 4px solid #10b981; }
.play-card-tier-super { border-left: 4px solid #f59e0b; }
.play-card-tier-max   { border-left: 4px solid #ef4444; background: linear-gradient(180deg, #fef2f2 0%, #fff 30%); }

/* Tier-colored edge values */
.tier-high-text  { color: #059669; }
.tier-super-text { color: #d97706; font-weight: 800; }
.tier-max-text   { color: #dc2626; font-weight: 800; text-shadow: 0 0 4px rgba(220, 38, 38, .25); }

/* Teaser blur — "looks like data, can't read it" */
.teaser-blur-text {
  color: rgba(0, 0, 0, .15);
  font-family: monospace;
  user-select: none;
  letter-spacing: .05em;
  filter: blur(0.5px);
}

/* Lock bars — tier-themed */
.play-lock-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .85rem 1rem; margin-top: .9rem;
  background: #f9fafb; border: 1px solid var(--border); border-radius: 8px;
  flex-wrap: wrap;
}
.lock-bar-content { flex: 1; min-width: 200px; }
.lock-bar-title   { font-weight: 800; font-size: .92rem; margin-bottom: .15rem; }
.lock-bar-sub     { font-size: .78rem; color: var(--muted); }
.lock-bar-super   {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fcd34d;
}
.lock-bar-super .lock-bar-title { color: #78350f; }
.lock-bar-max     {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid #f87171;
}
.lock-bar-max .lock-bar-title { color: #7f1d1d; }

.btn-max {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff; font-weight: 800; letter-spacing: .04em;
  border: none; padding: .55rem 1.1rem; border-radius: 6px;
  text-decoration: none; display: inline-block;
  box-shadow: 0 0 12px rgba(220, 38, 38, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-max:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(220, 38, 38, .6); }

/* Heat widget on homepage */
.heat-widget {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #fff; padding: .5rem 1rem; border-radius: 99px;
  font-size: .82rem; font-weight: 700;
  border: 1px solid #374151;
}
.heat-widget .flame { color: #fb923c; animation: flame-flicker 1.6s ease-in-out infinite; }
@keyframes flame-flicker { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

.play-card-body { padding: 1rem; }

.play-matchup {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
  line-height: 1.35;
}
.play-direction {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-lt);
  border: 1px solid #86efac;
  border-radius: 6px;
  padding: .3rem .75rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--green2);
  margin-bottom: .75rem;
}

.play-data-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: .75rem;
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: .75rem;
}
.play-data-cell { display: flex; flex-direction: column; gap: .1rem; }
.play-data-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.play-data-value { font-size: .95rem; font-weight: 700; color: var(--text); }
.play-data-value.green { color: var(--green); }
.play-data-value.red   { color: var(--red); }
.play-data-value.blur  { filter: blur(5px); user-select: none; }

.play-alts {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.play-alt-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .25rem .65rem;
  font-size: .8rem;
  color: var(--text2);
}

.play-reasoning {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  margin-top: .25rem;
}

.play-lock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f9fafb;
  border: 1px dashed var(--border2);
  border-radius: 6px;
  padding: .7rem 1rem;
  margin-top: .5rem;
}
.play-lock-text { font-size: .85rem; color: var(--muted); }
.play-lock-text strong { color: var(--text); }

/* ── Stats Ticker ────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.stat-item { display: flex; flex-direction: column; gap: .1rem; }
.stat-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.stat-value { font-size: 1.15rem; font-weight: 800; color: var(--text); font-family: var(--font-alt); }
.stat-value.green { color: var(--green); }
.stat-divider { width: 1px; background: var(--border); height: 36px; align-self: center; }

/* ── Platform Sign-up Cards ──────────────────────────────────────────────── */
.right-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 68px; }

.platform-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.platform-section-header {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  background: #fafafa;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background .12s;
  text-decoration: none;
}
.platform-card:last-child { border-bottom: none; }
.platform-card:hover { background: var(--green-lt); }
.platform-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  font-weight: 800;
  font-family: var(--font-alt);
}
.platform-info { flex: 1; min-width: 0; }
.platform-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.platform-bonus { font-size: .78rem; color: var(--green); font-weight: 600; }
.platform-rating { font-size: .75rem; color: var(--gold); white-space: nowrap; }
.platform-cta {
  background: var(--green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.platform-card:hover .platform-cta { background: var(--green2); }

/* ── Upgrade Box (sidebar) ───────────────────────────────────────────────── */
.upgrade-box {
  background: linear-gradient(135deg, #052e16, #14532d);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.upgrade-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.upgrade-box p { font-size: .82rem; color: #86efac; margin-bottom: 1rem; line-height: 1.5; }
.upgrade-box .btn-white { background: #fff; color: var(--green2); font-size: .85rem; font-weight: 700; padding: .55rem 1rem; border-radius: 6px; display: block; text-align: center; }
.upgrade-box .btn-white:hover { background: #f0fdf4; }

/* ── Hero (homepage top) ─────────────────────────────────────────────────── */
.hero-strip {
  background: linear-gradient(135deg, #052e16 0%, #0f172a 100%);
  padding: 2.5rem 0 2rem;
  margin-bottom: 0;
}
.hero-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-text h1 {
  font-family: var(--font-alt);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .6rem;
}
.hero-text h1 span { color: #4ade80; }
.hero-text p { color: #86efac; font-size: 1rem; max-width: 480px; margin-bottom: 1.25rem; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
}
.hero-stat { text-align: center; }
.hero-stat-val { font-family: var(--font-alt); font-size: 1.8rem; font-weight: 800; color: #4ade80; }
.hero-stat-lbl { font-size: .75rem; color: #86efac; text-transform: uppercase; letter-spacing: .06em; }

/* ── Pricing Cards ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  transition: border-color .15s, box-shadow .15s;
}
.pricing-card:hover { border-color: var(--green); box-shadow: var(--shadow2); }
.pricing-card.featured { border-color: var(--green); }
.pricing-badge-wrap {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-badge {
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .2rem .85rem;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.first-100-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #fef9c3;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}
.pricing-name { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.pricing-price { font-family: var(--font-alt); font-size: 2.25rem; font-weight: 800; color: var(--text); }
.pricing-price span { font-size: .95rem; font-weight: 400; color: var(--muted); }
.pricing-interval { color: var(--muted); font-size: .82rem; margin-bottom: 1.25rem; }
.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .4rem 0;
  font-size: .875rem;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: .05rem; }

/* ── Upgrade Prompt (inline) ─────────────────────────────────────────────── */
.upgrade-prompt {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  margin: 1rem 0;
}
.upgrade-prompt h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.upgrade-prompt p { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }

/* ── Auth Forms ──────────────────────────────────────────────────────────── */
.auth-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--bg); }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow2); }
.auth-title { font-family: var(--font-alt); font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.auth-sub { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.auth-error { background: var(--red-bg); border: 1px solid #fca5a5; color: var(--red); border-radius: 6px; padding: .75rem 1rem; font-size: .875rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .84rem; font-weight: 600; color: var(--text2); margin-bottom: .35rem; }
.form-input { width: 100%; background: var(--white); border: 1px solid var(--border2); border-radius: 6px; color: var(--text); font-size: .95rem; padding: .65rem .9rem; outline: none; transition: border-color .15s; }
.form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.1); }
.auth-footer { text-align: center; margin-top: 1.25rem; font-size: .875rem; color: var(--muted); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; transition: all .15s; text-decoration: none; white-space: nowrap; font-family: var(--font); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green2); color: #fff; }
.btn-dark   { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #222; color: #fff; }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-ghost  { background: transparent; color: var(--muted); border: 1px solid var(--border2); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-white  { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-white:hover { border-color: var(--green); color: var(--green); }
.btn-sm  { padding: .3rem .8rem; font-size: .82rem; }
.btn-md  { padding: .55rem 1.1rem; font-size: .875rem; }
.btn-lg  { padding: .7rem 1.75rem; font-size: .95rem; }
.btn-xl  { padding: .85rem 2rem; font-size: 1rem; border-radius: 8px; }
.btn-full { width: 100%; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; border-radius: 6px; font-size: .85rem; font-weight: 600; border: 1px solid var(--border); color: var(--muted); padding: 0 .5rem; }
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid #222; padding: 2.5rem 0 1.5rem; margin-top: 3rem; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.footer-top { display: flex; gap: 3rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-brand-col { flex: 0 0 220px; }
.footer-brand { font-family: var(--font-alt); font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: .5rem; }
.footer-brand-sub { color: #666; font-size: .82rem; line-height: 1.6; }
.footer-links-col h5 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: .75rem; }
.footer-links-col a { display: block; color: #888; font-size: .85rem; padding: .2rem 0; }
.footer-links-col a:hover { color: #ccc; }
.footer-bottom { border-top: 1px solid #222; padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; }
.footer-legal { color: #555; font-size: .75rem; line-height: 1.7; max-width: 700px; }
.footer-copy { color: #555; font-size: .78rem; white-space: nowrap; }

/* ── ROI Calculator ──────────────────────────────────────────────────────── */
.roi-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow2); }
.roi-slider { width: 100%; margin: .5rem 0; accent-color: var(--green); }
.roi-result { background: var(--green-lt); border: 1px solid #86efac; border-radius: 10px; padding: 1.25rem; margin-top: 1.5rem; text-align: center; }
.roi-result .big { font-family: var(--font-alt); font-size: 2.5rem; font-weight: 800; color: var(--green); }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.text-green { color: var(--green); }
.text-red   { color: var(--red); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-pad { padding: 1.25rem; }

/* ── Site Banner ─────────────────────────────────────────────────────────── */
.site-banner { width: 100%; background: #000; line-height: 0; }
.site-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Sport filter chips (horizontal row under platform tabs) ─────────────── */
.sport-chips {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-bottom: .75rem;
}
.sport-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .28rem .65rem; border-radius: 20px;
  font-size: .78rem; font-weight: 600;
  background: var(--white); border: 1px solid var(--border);
  color: var(--muted); transition: all .15s; white-space: nowrap;
}
.sport-chip:hover { border-color: var(--green); color: var(--text); }
.sport-chip.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── News Section ────────────────────────────────────────────────────────── */
.news-section { margin-bottom: 1.5rem; }
.news-section-hdr {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: .75rem;
}
.news-section-title {
  font-family: var(--font-alt); font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.news-section-sub { font-size: .72rem; color: var(--dim); }

/* ── Nav live link ───────────────────────────────────────────────────────── */
.nav-link-live { color: #ef4444 !important; font-weight: 600; }
.nav-link-live:hover { color: #f87171 !important; }

/* ── SportBusy Widgets ───────────────────────────────────────────────────── */
.sb-live-ribbon {
  margin-bottom: .75rem;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  min-height: 56px; background: var(--white);
}
.sb-widget-label {
  background: var(--nav); color: #fff;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: .45rem .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.sb-widget-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1.5rem;
}
.sb-widget-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 700px) { .sb-widget-row { grid-template-columns: 1fr; } }

/* ── Live Streams ─────────────────────────────────────────────────────────── */
.live-streams-section { margin-bottom: 1.5rem; }
.live-dot { color: #ef4444; font-size: .7rem; animation: blink 1.2s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }

.streams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.stream-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: #000;
}
.stream-label {
  padding: .35rem .6rem;
  font-size: .72rem; font-weight: 700; color: #fff;
  letter-spacing: .04em;
}
.stream-card iframe { display: block; }

@media (max-width: 900px) { .streams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .streams-grid { grid-template-columns: 1fr; } }

/* Top Stories horizontal strip (homepage, all categories) */
.top-news-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.top-news-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .15s;
  color: var(--text);
}
.top-news-card:hover { box-shadow: var(--shadow2); color: var(--text); }
.top-news-img {
  width: 100%; height: 110px;
  background-size: cover; background-position: center;
  background-color: var(--border);
}
.top-news-img-blank { background: linear-gradient(135deg, #1a3a1a, #0f2a1a); }
.top-news-body { padding: .6rem .75rem .75rem; display: flex; flex-direction: column; gap: .25rem; }
.top-news-title {
  font-weight: 600; font-size: .8rem; line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 900px) { .top-news-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .top-news-strip { grid-template-columns: 1fr; } }

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1rem;
}

/* Hero card */
.news-hero {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .15s;
  color: var(--text);
}
.news-hero:hover { box-shadow: var(--shadow2); color: var(--text); }
.news-hero-img {
  width: 100%; height: 180px;
  background-size: cover; background-position: center top;
  background-color: var(--border);
}
.news-hero .news-card-body { padding: .85rem 1rem; }
.news-hero-title {
  font-weight: 700; font-size: .95rem; line-height: 1.4;
  color: var(--text); margin: .35rem 0 .4rem;
}
.news-hero-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* Small cards grid */
.news-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.news-small {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .15s;
  color: var(--text);
}
.news-small:hover { box-shadow: var(--shadow2); color: var(--text); }
.news-small-img {
  width: 100%; height: 80px;
  background-size: cover; background-position: center;
  background-color: var(--border);
}
.news-small .news-card-body { padding: .5rem .65rem .6rem; }
.news-small-title {
  font-weight: 600; font-size: .78rem; line-height: 1.35;
  color: var(--text); margin-top: .25rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Shared meta row */
.news-card-meta {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.news-badge {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; padding: 1px 6px; border-radius: 4px;
  white-space: nowrap;
  background: var(--green-bg); color: var(--green2); /* default: sports */
}
/* Category-specific badge tints */
.news-badge-politics { background: #ede9fe; color: #6d28d9; }
.news-badge-crypto   { background: #fef3c7; color: #b45309; }
.news-badge-econ     { background: #dbeafe; color: #1d4ed8; }
.news-time { font-size: .68rem; color: var(--dim); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .page-shell { grid-template-columns: 200px 1fr 280px; }
}
@media (max-width: 900px) {
  .page-shell { grid-template-columns: 1fr; }
  .sport-sidebar { flex-direction: row; overflow-x: auto; position: static; max-height: none; padding-bottom: .25rem; }
  .sport-btn { flex-direction: column; padding: .5rem .4rem; font-size: .68rem; gap: .15rem; }
  .left-sidebar-widgets { display: none; }
  .right-sidebar { position: static; }
}
@media (max-width: 640px) {
  .nav { height: auto; }
  .nav-inner { flex-wrap: wrap; gap: 0; padding: 0 .75rem; min-height: 56px; }
  .nav-brand { height: 56px; flex-shrink: 0; }
  .nav-right { height: 56px; margin-left: auto; flex-shrink: 0; gap: .4rem; }
  .nav-right .btn-sm { padding: .25rem .55rem; font-size: .75rem; }
  .nav-links {
    order: 3;
    width: 100%;
    flex: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid #222;
    padding: .2rem 0;
    height: 38px;
    align-items: center;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links .nav-link { display: inline-flex; white-space: nowrap; flex-shrink: 0; padding: .3rem .65rem; font-size: .82rem; }
  .hero-strip-inner { flex-direction: column; }
  .hero-stats { justify-content: center; }
  .stats-bar { gap: 1rem; }
  .play-data-row { gap: 1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Polish pass (2026-06) — additive refinements, safe to remove ─────────── */
/* Consistent, smooth interaction feedback across cards & buttons */
.play-card, .platform-card, .news-card, .top-news-card, .card, .btn {
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.play-card:hover, .news-card:hover, .top-news-card:hover { transform: translateY(-2px); }
.platform-card:hover { transform: translateY(-1px); border-color: var(--green); }
.btn:hover { transform: translateY(-1px); }

/* Softened locked plays now show the matchup — keep the teaser text un-selectable
   so the hidden pick can't be copied, and read as an intentional preview. */
.teaser-blur-text { user-select: none; }
.upgrade-prompt { box-shadow: var(--shadow); }
.news-section-title { letter-spacing: .2px; }

/* Accessible keyboard focus rings */
a:focus-visible, .btn:focus-visible, .sport-chip:focus-visible,
.sub-tab:focus-visible, .nav-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile: a little more breathing room + tighter hero */
@media (max-width: 640px) {
  .main-content { padding-left: .15rem; padding-right: .15rem; }
  .hero-text h1 { font-size: 1.9rem; line-height: 1.15; }
  .upgrade-prompt { padding: 1.1rem; }
}
