/* ===================================================================
   COMENOWSPORTS — TEAL SCOREBOARD NEWSROOM
   Dark-first editorial sports newsroom. Magazine grid layout, premium
   broadcast / scoreboard aesthetic. Typography: DM Sans + Noto Sans Devanagari.
   =================================================================== */

/* -------- TOKENS -------- */
:root {
  /* Color */
  --primary: #3BD7C3;
  --primary-dark: #2EA898;
  --primary-glow: rgba(59, 215, 195, 0.35);
  --accent: #F97B23;
  --accent-soft: rgba(249, 123, 35, 0.15);
  --live-red: #E2334B;

  --background: #041C1F;
  --surface: #082D2F;
  --surface-2: #12464B;
  --surface-3: #0B3538;

  --text: #F8FAFC;
  --text-2: #CBD5E1;
  --muted: #8FA0AB;
  --muted-2: #6B7A85;

  --border: rgba(255, 255, 255, 0.14);
  --border-2: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.22);

  --gradient: linear-gradient(135deg, #041C1F 0%, #082D2F 48%, #12464B 100%);
  --gradient-card: linear-gradient(160deg, #082D2F 0%, #0B3538 100%);
  --gradient-hero: linear-gradient(180deg, rgba(4, 28, 31, 0.4) 0%, rgba(4, 28, 31, 0.92) 70%, #041C1F 100%);
  --gradient-accent: linear-gradient(135deg, #3BD7C3 0%, #2EA898 100%);

  /* Type scale */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 17px;
  --fs-md: 18px;
  --fs-lg: 22px;
  --fs-h4: clamp(18px, 2vw, 22px);
  --fs-h3: clamp(22px, 2.6vw, 28px);
  --fs-h2: clamp(26px, 3vw, 34px);
  --fs-h1: clamp(34px, 5.2vw, 60px);

  /* Spacing & rhythm */
  --gap-1: 8px;
  --gap-2: 12px;
  --gap-3: 16px;
  --gap-4: 24px;
  --gap-5: 32px;
  --gap-6: 48px;
  --gap-7: 72px;
  --max-w: 1320px;
  --pad-x: clamp(16px, 4vw, 48px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Header & speed */
  --header-h: 76px;
  --ticker-h: 40px;

  /* Shadow */
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg, video, picture { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
ul, ol { padding-left: 1.2em; }
li { margin: 4px 0; }
hr { border: 0; border-top: 1px solid var(--border-2); margin: 32px 0; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* -------- LAYOUT PRIMITIVES -------- */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: clamp(40px, 6vw, 80px); }
.section-tight { padding-block: clamp(24px, 3vw, 40px); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
}
.section-head h2 .tick {
  color: var(--primary);
}
.section-head .link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.section-head .link::after { content: " →"; transition: transform 0.2s; }
.section-head .link:hover::after { transform: translateX(3px); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.eyebrow::before { content: "■ "; color: var(--accent); }

/* Skinny eyebrow — alternate (used at most 1 in 3 sections) */
.eyebrow-thin {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}

/* -------- HEADER / NAV -------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(4, 28, 31, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-2);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041C1F;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-tag {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}
.main-nav {
  display: none;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-2);
  transition: 0.15s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.main-nav a.is-live {
  color: var(--accent);
}
.main-nav a.is-live::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live-red);
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse-live 1.6s infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}
.header-ctas { display: none; gap: 8px; align-items: center; }
.header-search {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: 0.15s;
}
.header-search:hover { background: rgba(255, 255, 255, 0.12); color: var(--text); }

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  position: relative;
  z-index: 220;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100dvh;
  background: var(--surface);
  z-index: 210;
  transform: translateY(-100%);
  transition: transform 0.32s ease;
  padding: calc(var(--header-h) + 24px) var(--pad-x) 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-drawer[aria-hidden="false"] {
  transform: translateY(0);
}
.drawer-close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: var(--r-md);
  background: var(--surface-2);
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
  box-shadow: var(--shadow-card);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  touch-action: manipulation;
}
.drawer-close:hover,
.drawer-close:focus-visible {
  background: var(--primary);
  color: var(--background);
}
.drawer-close:active { transform: scale(0.98); }
.drawer-close span { transform: translateY(-1px); }
.mobile-drawer a {
  padding: 14px 12px;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-2);
  display: block;
}
.mobile-drawer a:hover { color: var(--primary); }
.mobile-drawer .drawer-ctas {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: 0.18s;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #041C1F;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: #041C1F;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff;
}
.btn-block { width: 100%; }

/* -------- BREAKING TICKER -------- */
.ticker {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  height: var(--ticker-h);
  background: linear-gradient(90deg, #062022 0%, #082D2F 100%);
  border-bottom: 1px solid var(--border-2);
  z-index: 150;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  height: 100%;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--live-red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.ticker-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-live 1.4s infinite;
}
.ticker-label::after {
  content: "";
  position: absolute;
  right: -22px; top: 0;
  border-left: 22px solid var(--live-red);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  z-index: -1;
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  padding-left: 32px;
  animation: ticker-move 50s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track a {
  font-size: 14px;
  color: var(--text-2);
  display: inline-flex;
  gap: 10px;
}
.ticker-track a strong { color: var(--text); font-weight: 600; }
.ticker-track .sep { color: var(--primary); }
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Page padding top for fixed header + ticker */
main { padding-top: calc(var(--header-h) + var(--ticker-h)); }

/* -------- HERO (LEAD-STORY MAGAZINE GRID) -------- */
.hero {
  background: var(--background);
  padding: clamp(28px, 4vw, 48px) 0 clamp(36px, 5vw, 64px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-4);
}
.hero-lead { position: relative; }
.hero-lead a.lead-img {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
}
.hero-lead a.lead-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-lead a.lead-img:hover img { transform: scale(1.03); }
.hero-lead .lead-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,28,31,0) 50%, rgba(4,28,31,0.85) 100%);
}
.hero-lead .lead-img .live-pill {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  padding: 6px 12px;
  background: var(--live-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-lead .lead-img .live-pill::before {
  content: ""; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: pulse-live 1.4s infinite;
}
.lead-body { padding-top: 18px; }
.lead-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lead-meta .cat { color: var(--primary); font-weight: 600; }
.lead-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.lead-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
}
.lead-title a:hover { color: var(--primary); }
.lead-dek {
  font-size: var(--fs-md);
  color: var(--text-2);
  margin: 0 0 18px;
  max-width: 60ch;
}
.lead-foot {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.lead-foot .by {
  color: var(--muted);
  font-size: 13px;
}
.lead-foot .by strong { color: var(--text); font-weight: 600; }

/* Live score module inside hero (asymmetric grid rhythm) */
.score-module {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.score-head {
  background: var(--gradient-card);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-2);
}
.score-head h3 { margin: 0; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.score-head .link { font-size: 12px; color: var(--text-2); }
.score-head .live-pill {
  font-size: 11px;
  background: var(--live-red);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.score-row {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-2);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.score-row:last-child { border-bottom: 0; }
.score-row .team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.score-row .team.home { justify-content: flex-end; text-align: right; }
.score-row .crest {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; color: var(--text);
  border: 1px solid var(--border-2);
}
.score-row .score {
  font-size: 22px; font-weight: 800;
  background: var(--surface-2);
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: -0.02em;
  min-width: 70px;
  text-align: center;
}
.score-row .time {
  text-align: center;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.score-row .vs { color: var(--muted); font-size: 13px; }
.score-foot {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(0,0,0,0.18);
  text-align: center;
}

/* Hero supporting-stack (right column) */
.hero-stack {
  display: grid;
  gap: var(--gap-4);
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: stretch;
  transition: 0.2s;
}
.hero-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.hero-card .img {
  background: var(--surface-2);
  height: 100%;
  min-height: 90px;
  position: relative;
  overflow: hidden;
}
.hero-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card .body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.hero-card .cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.hero-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.hero-card .time {
  font-size: 11px;
  color: var(--muted);
}

/* -------- TRUST STRIP (ED STANDARDS) -------- */
.trust-strip {
  background: var(--surface);
  border-block: 1px solid var(--border-2);
  padding: 18px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust-item .icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(59, 215, 195, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.trust-item .text {
  flex: 1;
  min-width: 0;
}
.trust-item .text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.trust-item .text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* -------- HUB GRID -------- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hub-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-2);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: 0.2s;
}
.hub-tile:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.hub-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hub-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: 0.4s;
}
.hub-tile:hover img { transform: scale(1.05); opacity: 0.85; }
.hub-tile .body {
  position: relative;
  z-index: 2;
}
.hub-tile .body small {
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.hub-tile .body h3 {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Featured hero tiles - larger */
.hub-tile.is-feature {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}
.hub-tile.is-feature .body h3 { font-size: clamp(22px, 3vw, 32px); }

/* -------- NEWS LIST (carousels / latest) -------- */
.news-list {
  display: grid;
  gap: var(--gap-3);
}
.news-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-2);
  align-items: start;
  transition: 0.15s;
}
.news-row:hover { padding-left: 6px; }
.news-row .img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}
.news-row .img img { width: 100%; height: 100%; object-fit: cover; }
.news-row .body { min-width: 0; }
.news-row .meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.news-row .meta .cat { color: var(--primary); font-weight: 600; }
.news-row h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.news-row p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-row .time {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* News card (3-up grid variant) */
.news-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.news-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.news-card .img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.news-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.news-card:hover .img img { transform: scale(1.04); }
.news-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card .meta { display: flex; gap: 10px; align-items: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.news-card .meta .cat { color: var(--primary); font-weight: 600; }
.news-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.news-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.news-card .time { margin-top: auto; font-size: 11px; color: var(--muted); padding-top: 8px; border-top: 1px solid var(--border-2); }

.news-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--gap-4);
}

/* -------- TEAM ROSTER -------- */
.team-table {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.team-row {
  display: grid;
  grid-template-columns: 1fr 70px 70px 70px 90px;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-2);
  align-items: center;
  font-size: 14px;
}
.team-row.head {
  background: var(--surface-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.team-row .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.team-row .name .crest {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px;
  border: 1px solid var(--border-2);
}
.team-row .num, .team-row .pts { text-align: center; font-weight: 700; color: var(--text); }
.team-row .form {
  display: flex;
  gap: 3px;
  justify-content: center;
  font-size: 11px;
}
.team-row .form span {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #041C1F;
}
.team-row .form .W { background: #3BD7C3; }
.team-row .form .D { background: #8FA0AB; color: #041C1F; }
.team-row .form .L { background: #E2334B; color: #fff; }
.team-row:last-child { border-bottom: 0; }

/* -------- PLAYER SPOTLIGHT -------- */
.player-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-4);
}
.player-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: 0.2s;
}
.player-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.player-card .img {
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.player-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.player-card:hover .img img { transform: scale(1.04); }
.player-card .img .num {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #041C1F;
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
}
.player-card .body {
  padding: 16px;
}
.player-card .team {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.player-card h3 {
  margin: 6px 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.player-card .pos {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(59, 215, 195, 0.14);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.player-card .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-2);
}
.player-card .stats div {
  text-align: center;
}
.player-card .stats b {
  display: block;
  font-size: 18px;
  color: var(--text);
  font-weight: 800;
}
.player-card .stats small {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------- TRENDING / WINNERS -------- */
.trending-row {
  display: grid;
  gap: var(--gap-3);
}
.trend-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trend-card .rank {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #041C1F;
  flex-shrink: 0;
}
.trend-card .info { flex: 1; min-width: 0; }
.trend-card .info h4 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.trend-card .info p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.trend-card .delta {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
}
.trend-card .delta.down { color: var(--live-red); }

/* -------- FAQ -------- */
.faq {
  display: grid;
  gap: var(--gap-3);
  max-width: 860px;
  margin-inline: auto;
}
.faq details {
  background: var(--gradient-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: 0.18s;
}
.faq details[open] {
  border-color: var(--primary);
}
.faq summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.faq summary::after {
  content: "+";
  color: var(--primary);
  font-size: 24px;
  font-weight: 300;
  transition: 0.2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary::-webkit-details-marker { display: none; }
.faq .answer {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq .answer p { margin: 0 0 10px; }

/* -------- NEWSLETTER -------- */
.newsletter {
  background: var(--gradient);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(59, 215, 195, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  position: relative;
}
.newsletter p {
  max-width: 60ch;
  margin: 0 auto 24px;
  color: var(--text-2);
  position: relative;
}
.newsletter-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(4, 28, 31, 0.6);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { outline: 2px solid var(--primary); }
.newsletter small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  position: relative;
}

/* -------- FOOTER -------- */
.footer {
  background: #02171A;
  border-top: 1px solid var(--border-2);
  padding: clamp(40px, 5vw, 64px) 0 24px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.footer-brand .brand-name { font-size: 22px; }
.footer-brand p {
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-2);
  max-width: 38ch;
}
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin: 8px 0; }
.footer ul li a {
  color: var(--text-2);
  font-size: 14px;
  transition: 0.15s;
}
.footer ul li a:hover { color: var(--primary); padding-left: 4px; }
.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: 0.15s;
}
.socials a:hover {
  background: var(--primary);
  color: #041C1F;
}
.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* -------- PAGE-SPECIFIC: ARTICLE BANNER -------- */
.page-banner {
  position: relative;
  height: clamp(280px, 38vw, 460px);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.page-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,28,31,0.2) 0%, rgba(4,28,31,0.85) 100%);
}
.page-banner .text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px var(--pad-x);
  z-index: 2;
}
.page-banner .text small {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary);
  color: #041C1F;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 10px;
}
.page-banner .text h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 22ch;
}

/* -------- ARTICLE BODY (single content page) -------- */
.article {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.prose {
  max-width: 70ch;
  margin-inline: auto;
}
.prose h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 36px 0 14px;
  line-height: 1.2;
}
.prose h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.008em;
  margin: 26px 0 10px;
}
.prose p {
  margin: 0 0 18px;
  font-size: var(--fs-md);
  color: var(--text-2);
  line-height: 1.7;
}
.prose ul, .prose ol {
  margin: 14px 0;
  padding-left: 1.4em;
  color: var(--text-2);
  font-size: var(--fs-md);
  line-height: 1.7;
}
.prose li { margin: 6px 0; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.prose blockquote {
  margin: 24px 0;
  padding: 20px;
  border-left: 3px solid var(--primary);
  background: var(--surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
}
.prose blockquote p { color: var(--text); margin: 0; }
.prose figure {
  margin: 24px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-2);
}
.prose figure img { width: 100%; height: auto; }
.prose figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-2);
  border-top: 1px solid var(--border-2);
}
.prose .meta-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-2);
}
.prose .meta-bar strong { color: var(--text); }
.prose .meta-bar .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }

/* -------- INLINE IMAGE BAND -------- */
.inline-figure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px auto;
  max-width: 70ch;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-2);
}
.inline-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.inline-figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-2);
  border-top: 1px solid var(--border-2);
}

/* -------- PREDICTION / FIXTURES TABLE -------- */
.fixtures-table {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.fixtures-row {
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-2);
  align-items: center;
  font-size: 14px;
}
.fixtures-row.head {
  background: var(--surface-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.fixtures-row .team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.fixtures-row .team.away { justify-content: flex-end; text-align: right; }
.fixtures-row .crest {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px;
  border: 1px solid var(--border-2);
}
.fixtures-row .time {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}
.fixtures-row .venue { text-align: center; font-size: 12px; color: var(--muted); }
.fixtures-row:last-child { border-bottom: 0; }

/* -------- NEWSLETTER PILL (header bar acc) -------- */
.live-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(226, 51, 75, 0.15);
  border: 1px solid rgba(226, 51, 75, 0.4);
  color: #FF8FA0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}
.live-flag::before {
  content: ""; width: 6px; height: 6px;
  background: var(--live-red); border-radius: 50%;
  animation: pulse-live 1.4s infinite;
}

/* -------- HUB HERO (sport/team landing) -------- */
.hub-hero {
  background: var(--gradient);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 5vw, 60px) 0 clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.hub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59, 215, 195, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hub-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 22ch;
}
.hub-hero p.lede {
  font-size: var(--fs-md);
  color: var(--text-2);
  max-width: 60ch;
  margin: 0 0 20px;
}
.hub-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.hub-meta strong { color: var(--primary); font-weight: 700; }
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--text-2); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { color: var(--muted-2); }

/* -------- TOC (table of contents - article page) -------- */
.toc {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 16px;
  margin: 22px 0;
}
.toc h4 {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.toc ol {
  margin: 0; padding: 0 0 0 18px;
  font-size: 14px;
  color: var(--text-2);
}
.toc li { margin: 6px 0; }
.toc a { color: var(--text-2); }
.toc a:hover { color: var(--primary); }

/* -------- INFO BANNER / PULLOUT -------- */
.callout {
  background: linear-gradient(135deg, rgba(59, 215, 195, 0.10) 0%, rgba(59, 215, 195, 0.04) 100%);
  border: 1px solid rgba(59, 215, 195, 0.32);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 22px 0;
}
.callout h4 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--primary);
}
.callout p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
}

/* -------- RESPONSIVE -------- */
@media (min-width: 600px) {
  .trust-row { grid-template-columns: repeat(4, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { grid-template-columns: 160px 1fr; }
  .news-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .player-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-figure { grid-template-columns: 1fr 1fr; }
  .inline-figure img { grid-row: span 2; }
  .footer-bottom { flex-direction: row; align-items: center; }
}
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-ctas { display: inline-flex; }
  .hamburger { display: none; }
  .hero-grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
  .hero-stack { gap: var(--gap-5); }
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
  .hub-tile.is-feature { grid-column: span 2; }
  .news-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .player-grid { grid-template-columns: repeat(4, 1fr); }
  .article {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
  }
  .article .prose { min-width: 0; }
  .article aside.sticky-side {
    position: sticky;
    top: calc(var(--header-h) + var(--ticker-h) + 16px);
    align-self: start;
  }
  .team-row, .fixtures-row {
    grid-template-columns: 1fr 80px 80px 80px 110px;
  }
}
@media (min-width: 1100px) {
  .hero-grid { grid-template-columns: 1.7fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
}

/* Selection */
::selection { background: var(--primary); color: #041C1F; }
