/* ============================================================
   ATHLAZON — Global Design System
   Rivals: YouTube + ESPN
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --color-bg-nav:        #0b0c10;
  --color-bg-footer:     #0b0c10;
  --color-bg-page:       #f4f4f4;
  --color-bg-white:      #ffffff;
  --color-bg-section:    #f8f8f8;
  --color-bg-dark:       #141520;
  --color-bg-card:       #ffffff;

  --color-green:         #00c853;
  --color-green-dark:    #00a040;
  --color-red:           #e53935;
  --color-blue:          #1565c0;
  --color-orange:        #f57c00;
  --color-yellow:        #f9a825;

  --color-text-primary:  #111111;
  --color-text-secondary:#555555;
  --color-text-muted:    #888888;
  --color-text-white:    #ffffff;
  --color-text-nav:      #cccccc;

  --color-border:        #e0e0e0;
  --color-border-dark:   #2a2a3a;
  --color-ticker-bg:     #111320;

  --font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Roboto Mono', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.18);
  --shadow-card:0 2px 8px rgba(0,0,0,.10);

  --nav-height: 70px;
  --ticker-height: 52px;
  --sidebar-width: 320px;
  --content-max: 1400px;
  --page-pad: 40px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #1a1a2e; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--color-bg-nav);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border-dark);
  overflow: visible;
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--page-pad);
  gap: 32px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.nav-logo span { color: var(--color-green); }
.nav-logo-img {
  height: 130px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  position: relative;
  z-index: 1001;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-nav);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--color-green); }
.nav-links a[href="live.html"] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a[href="live.html"]::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #e53935;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  gap: 7px;
}
.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 12.5px;
  width: 120px;
}
.nav-search input::placeholder { color: #777; }
.nav-search svg { color: #888; }
.btn-signin {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  transition: border-color .2s, background .2s;
}
.btn-signin:hover { border-color: var(--color-green); color: var(--color-green); }
.btn-signup {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  background: var(--color-green);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  transition: background .2s;
}
.btn-signup:hover { background: var(--color-green-dark); }
.btn-upload {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #000;
  background: var(--color-green);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  transition: background .2s;
}
.btn-upload:hover { background: var(--color-green-dark); }
.nav-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-green);
  cursor: pointer;
}
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SCORE TICKER
   ============================================================ */
.score-ticker {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  height: var(--ticker-height);
  background: var(--color-ticker-bg);
  border-bottom: 1px solid var(--color-border-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--color-green);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 60s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-game {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid var(--color-border-dark);
  color: #ccc;
  font-size: 12px;
  font-weight: 500;
}
.ticker-game .team { display: flex; align-items: center; gap: 6px; }
.ticker-game .team-abbr { font-weight: 700; color: #fff; font-size: 12px; letter-spacing: .5px; }
.ticker-game .score { font-weight: 900; font-size: 14px; color: #fff; }
.ticker-game .win .score { color: var(--color-green); }
.ticker-game .vs { color: #555; font-size: 11px; margin: 0 4px; }
.ticker-game .period { font-size: 10px; color: var(--color-green); font-weight: 700; letter-spacing: .5px; }
.ticker-game .final { font-size: 10px; color: #888; }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-top-offset {
  padding-top: calc(var(--nav-height) + var(--ticker-height));
}
.page-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--page-pad);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 28px;
  align-items: start;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}
.section-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--color-green);
  border-radius: 2px;
}
.view-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-green);
  transition: opacity .2s;
}
.view-all:hover { opacity: .7; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all .2s;
}
.btn-primary { background: var(--color-green); color: #000; }
.btn-primary:hover { background: var(--color-green-dark); }
.btn-secondary { background: transparent; color: var(--color-green); border: 1.5px solid var(--color-green); }
.btn-secondary:hover { background: var(--color-green); color: #000; }
.btn-dark { background: #1a1a2e; color: #fff; }
.btn-dark:hover { background: #252540; }
.btn-sm { padding: 6px 14px; font-size: 11px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Video Card */
.video-card { cursor: pointer; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.03); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  background: rgba(0,0,0,.72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.3);
  transition: background .2s, transform .2s;
}
.video-card:hover .play-btn { background: var(--color-green); transform: translate(-50%,-50%) scale(1.1); border-color: transparent; }
.play-btn svg { color: #fff; margin-left: 3px; }
.video-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}
.video-info { padding: 12px; }
.video-info .sport-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 5px;
}
.video-info h3 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta { font-size: 11.5px; color: var(--color-text-muted); }

/* Article Card */
.article-card { display: flex; gap: 0; }
.article-card .article-img {
  flex-shrink: 0;
  width: 140px;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.article-card .article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.article-card:hover .article-img img { transform: scale(1.05); }
.article-card .article-body { padding: 12px; flex: 1; }
.article-card.card-vertical { flex-direction: column; }
.article-card.card-vertical .article-img { width: 100%; aspect-ratio: 16/10; }

.sport-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}
.badge-nfl  { background: #1a3a6b; color: #fff; }
.badge-nba  { background: #c9243f; color: #fff; }
.badge-mlb  { background: #002d72; color: #fff; }
.badge-nhl  { background: #000; color: #fff; }
.badge-cfb  { background: #8b1a1a; color: #fff; }
.badge-soccer { background: #1a6b3a; color: #fff; }
.badge-mma  { background: #4a1a6b; color: #fff; }
.badge-general { background: var(--color-green); color: #000; }

.article-body h3 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-body p {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.article-meta { font-size: 11px; color: var(--color-text-muted); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-section {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.sidebar-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-nav);
}
.sidebar-section-header h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.sidebar-section-header .view-all { color: var(--color-green); font-size: 10px; }

.rank-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border);
  transition: background .15s;
}
.rank-list-item:last-child { border-bottom: none; }
.rank-list-item:hover { background: #fafafa; }
.rank-list-item:hover .rank-name { color: var(--color-green-dark); }
.rank-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-text-muted);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.rank-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e0e0e0;
}
.rank-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rank-info { flex: 1; min-width: 0; }
.rank-name { font-size: 13px; font-weight: 700; color: var(--color-text-primary); }
.rank-detail { font-size: 11px; color: var(--color-text-muted); }
.rank-school img { width: 30px; height: 30px; object-fit: contain; }

/* ============================================================
   HERO VIDEO
   ============================================================ */
.hero-video {
  position: relative;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.hero-video img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.hero-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: rgba(0,200,83,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}
.hero-video:hover .hero-video-play { transform: translate(-50%,-50%) scale(1.1); background: var(--color-green); }
.hero-video-play svg { color: #fff; margin-left: 4px; }
.hero-video-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.hero-video-meta .sport-badge { margin-bottom: 8px; }
.hero-video-meta h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-video-meta .meta-row {
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

/* ============================================================
   FEATURED ARTICLE HERO
   ============================================================ */
.feature-hero {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.feature-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.feature-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 100%);
}
.feature-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.feature-hero-content h2 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.feature-hero-content p {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-nav);
  border-top: 1px solid var(--color-border-dark);
  padding: 20px var(--page-pad);
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.footer-logo span { color: var(--color-green); }
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  transition: color .2s;
}
.footer-links a:hover { color: var(--color-green); }
.footer-copy {
  font-size: 11px;
  color: #555;
}

/* ============================================================
   AD PLACEHOLDER
   ============================================================ */
.ad-slot {
  background: #e8e8e8;
  border: 2px dashed #ccc;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 4px;
  padding: 16px;
}
.ad-slot-banner { height: 90px; }
.ad-slot-box { height: 250px; }
.ad-slot-leaderboard { height: 90px; width: 100%; }

/* ============================================================
   TABS
   ============================================================ */
.tab-bar {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 24px;
}
.tab-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  color: var(--color-text-muted);
  background: transparent;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.tab-btn:hover { color: var(--color-text-primary); }
.tab-btn.active { color: var(--color-green); border-bottom-color: var(--color-green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   FORMS & INPUTS
   ============================================================ */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}
.search-bar input::placeholder { color: #bbb; }
.search-bar svg { color: #999; flex-shrink: 0; }

.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-chip {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--color-green); color: var(--color-green); }
.filter-chip.active { background: var(--color-green); color: #000; border-color: var(--color-green); font-weight: 700; }

select.styled-select {
  appearance: none;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
  padding: 8px 36px 8px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  cursor: pointer;
  color: var(--color-text-secondary);
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ============================================================
   STAT BLOCKS
   ============================================================ */
.stat-box {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.stat-box .stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.stat-box .stat-change {
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}
.stat-change.up { color: var(--color-green); }
.stat-change.down { color: var(--color-red); }

/* ============================================================
   SCOREBOARD
   ============================================================ */
.score-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.score-card-header {
  background: var(--color-bg-nav);
  color: #fff;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.score-card-header .live-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-green);
}
.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.3); }
}
.score-card-body { padding: 14px; }
.score-matchup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.score-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.score-team-logo {
  width: 48px; height: 48px;
  object-fit: contain;
}
.score-team-name {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-primary);
}
.score-team-record {
  font-size: 10px;
  color: var(--color-text-muted);
}
.score-center { text-align: center; }
.score-nums {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.score-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text-primary);
}
.score-num.winner { color: var(--color-green); }
.score-divider { font-size: 20px; color: #ccc; font-weight: 300; }
.score-period {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: .5px;
  margin-top: 4px;
}
.score-period.final { color: var(--color-text-muted); }

/* ============================================================
   PROFILE PAGES
   ============================================================ */
.profile-hero {
  background: var(--color-bg-nav);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--nav-height) + var(--ticker-height));
}
.profile-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a2040 50%, #0d1520 100%);
}
.profile-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
}
.profile-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px var(--page-pad);
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-layout {
  display: flex;
  min-height: calc(100vh - var(--nav-height) - var(--ticker-height));
  padding-top: calc(var(--nav-height) + var(--ticker-height));
}
.dashboard-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--color-bg-nav);
  border-right: 1px solid var(--color-border-dark);
  padding: 24px 0;
  position: sticky;
  top: calc(var(--nav-height) + var(--ticker-height));
  height: calc(100vh - var(--nav-height) - var(--ticker-height));
  overflow-y: auto;
}
.dash-nav-section {
  margin-bottom: 8px;
}
.dash-nav-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  padding: 8px 20px 4px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  cursor: pointer;
  transition: color .2s, background .2s;
  border-left: 3px solid transparent;
}
.dash-nav-item svg { flex-shrink: 0; }
.dash-nav-item:hover { color: #fff; background: rgba(255,255,255,.05); }
.dash-nav-item.active { color: var(--color-green); background: rgba(0,200,83,.08); border-left-color: var(--color-green); }
.dashboard-main {
  flex: 1;
  background: #f0f0f5;
  padding: 32px;
  overflow-y: auto;
}
.dash-header {
  margin-bottom: 28px;
}
.dash-header h1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.dash-header p { font-size: 13px; color: var(--color-text-muted); }

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.data-table th {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: #f8f8f8;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table td {
  font-size: 13px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafafa; }

/* Progress Bar */
.progress-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--color-green);
  border-radius: 3px;
  transition: width .6s ease;
}

/* Chart Placeholder */
.chart-placeholder {
  background: linear-gradient(180deg, rgba(0,200,83,.06) 0%, transparent 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-top: 10px;
}
.chart-bar {
  flex: 1;
  background: var(--color-green);
  border-radius: 3px 3px 0 0;
  opacity: .7;
  min-height: 8px;
  transition: opacity .2s;
}
.chart-bar:hover { opacity: 1; }
.chart-bar.accent { background: #1565c0; opacity: .8; }
.chart-labels {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root { --sidebar-width: 280px; --page-pad: 24px; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .dashboard-sidebar { width: 60px; }
  .dash-nav-item span { display: none; }
  .dash-nav-label { display: none; }
}
@media (max-width: 600px) {
  :root { --page-pad: 16px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .feature-hero-content h2 { font-size: 18px; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.text-muted { color: var(--color-text-muted); }
.text-green { color: var(--color-green); }
.text-white { color: #fff; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.rounded { border-radius: var(--radius-md); }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.bg-white { background: var(--color-bg-white); }
.shadow { box-shadow: var(--shadow-card); }
.divider { border: none; border-top: 1px solid var(--color-border); margin: 20px 0; }
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(0,200,83,.12);
  color: var(--color-green);
}

/* ============================================================
   CREATOR MONETIZATION — bell, toast, modal, gift composer,
   content gate, status badges. (Additive; uses existing tokens.)
   ============================================================ */

/* ---- Notification bell ---- */
.nav-bell { position: relative; display: inline-flex; align-items: center; }
.nav-bell-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-pill);
  background: transparent; border: none; color: var(--color-text-nav); cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-bell-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
.bell-badge {
  position: absolute; top: 4px; right: 4px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: var(--radius-pill);
  background: var(--color-red); color: #fff; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.bell-dropdown {
  position: absolute; top: 48px; right: 0; width: 340px; max-width: 90vw;
  background: var(--color-bg-white); color: var(--color-text-primary);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; z-index: 1200;
}
.bell-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--color-border);
  font-weight: 800; font-size: 13px;
}
.bell-mark { background: none; border: none; color: var(--color-green); font-size: 12px; font-weight: 700; cursor: pointer; }
.bell-list { max-height: 380px; overflow-y: auto; }
.bell-item { padding: 12px 16px; border-bottom: 1px solid var(--color-border); }
.bell-item:last-child { border-bottom: none; }
.bell-item-text { font-size: 13px; line-height: 1.4; }
.bell-item-time { font-size: 11px; color: var(--color-text-muted); margin-top: 3px; }
.bell-empty { padding: 28px 16px; text-align: center; color: var(--color-text-muted); font-size: 13px; }

/* ---- Toasts ---- */
.az-toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 4000; display: flex; flex-direction: column; gap: 10px; }
.az-toast {
  min-width: 240px; max-width: 360px; padding: 13px 16px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transform: translateY(12px); transition: opacity .2s, transform .2s;
}
.az-toast.show { opacity: 1; transform: translateY(0); }
.az-toast-success { background: #11324a; border-left: 4px solid var(--color-green); }
.az-toast-error   { background: #3a1414; border-left: 4px solid var(--color-red); }
.az-toast-info    { background: #1a1a2e; border-left: 4px solid var(--color-blue); }

/* ---- Modal ---- */
.az-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.az-modal {
  position: relative; background: var(--color-bg-white); color: var(--color-text-primary);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 420px; max-height: 92vh; overflow-y: auto;
}
.az-modal-close {
  position: absolute; top: 10px; right: 12px; background: none; border: none;
  font-size: 26px; line-height: 1; color: var(--color-text-muted); cursor: pointer; z-index: 2;
}
.az-modal-close:hover { color: var(--color-text-primary); }
.az-modal-body { padding: 28px 26px 26px; }
.az-modal-title { font-size: 19px; font-weight: 900; margin-bottom: 4px; }
.az-modal-sub { font-size: 13px; color: var(--color-text-muted); margin-bottom: 18px; }

/* creator identity row inside modals */
.az-creator-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.az-creator-row img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #eee; }
.az-creator-row .nm { font-weight: 800; font-size: 15px; }
.az-creator-row .pr { font-size: 13px; color: var(--color-green); font-weight: 700; }

.az-included { list-style: none; margin: 0 0 20px; padding: 0; }
.az-included li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; padding: 6px 0; color: var(--color-text-secondary); }
.az-included li::before { content: '✓'; color: var(--color-green); font-weight: 900; }

.az-note { font-size: 12px; color: var(--color-text-muted); margin-top: 12px; text-align: center; }
.az-note-warn { color: var(--color-orange); }

/* ---- Gift composer ---- */
.az-gift-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.az-gift-diamond {
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  background: #fff; padding: 12px 6px; text-align: center; cursor: pointer;
  font-weight: 800; font-size: 15px; transition: border-color .15s, background .15s, color .15s;
}
.az-gift-diamond:hover { border-color: var(--color-green); }
.az-gift-diamond.selected { border-color: var(--color-green); background: rgba(0,200,83,.08); color: var(--color-green-dark); }
.az-gift-diamond .dia { display: block; font-size: 16px; margin-bottom: 2px; }
.az-field-label { font-size: 12px; font-weight: 700; color: var(--color-text-secondary); margin: 0 0 6px; text-transform: uppercase; letter-spacing: .5px; }
.az-input {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); font-size: 14px; font-family: var(--font-primary); background: #fff;
}
.az-input:focus { outline: none; border-color: var(--color-green); }
.az-charcount { font-size: 11px; color: var(--color-text-muted); text-align: right; margin-top: 4px; }
.az-card-box { border: 1.5px solid var(--color-border); border-radius: var(--radius-md); padding: 12px 13px; margin: 4px 0 8px; }
.az-block-btn { width: 100%; margin-top: 8px; padding: 13px; font-size: 15px; }

/* ---- Subscriber-only content gate ---- */
.content-gate {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 24px; border-radius: var(--radius-lg);
  background: rgba(11,12,16,.72); color: #fff; overflow: hidden;
}
.content-gate.has-blur { backdrop-filter: blur(14px); }
.content-gate .gate-lock { font-size: 30px; margin-bottom: 10px; }
.content-gate .gate-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.content-gate .gate-sub { font-size: 13px; color: #cfcfcf; margin-bottom: 16px; max-width: 380px; }
.gate-blur-thumb { filter: blur(18px); transform: scale(1.06); }

/* ---- Status badges (subscriber table) ---- */
.status-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .4px;
  text-transform: capitalize; padding: 3px 10px; border-radius: var(--radius-pill);
}
.status-active    { background: rgba(0,200,83,.14);  color: var(--color-green-dark); }
.status-cancelled,
.status-canceled  { background: rgba(136,136,136,.18); color: var(--color-text-secondary); }
.status-past_due  { background: rgba(245,124,0,.16);  color: var(--color-orange); }
.status-expired,
.status-incomplete{ background: rgba(229,57,53,.14);  color: var(--color-red); }

/* ---- Live-stream gift overlay (5s flash) ---- */
.gift-flash-overlay { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 50; pointer-events: none; }
.gift-flash {
  background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
  color: #1a1a1a; font-weight: 900; font-size: 15px; padding: 10px 18px;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-lg);
  animation: giftPop .4s ease-out;
}
@keyframes giftPop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
