/* ============================================================
   WHATCHAN DARTS - Design System
   Dark theme with Whatchan blue + gold accents
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,500;0,700;1,500&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  /* Base Backgrounds */
  --bg-darkest: #08080d;
  --bg-dark: #0f0f18;
  --bg-mid: #161625;
  --bg-raised: #1c1c30;
  --bg-surface: #22223a;
  --bg-hover: #2a2a48;

  /* Primary Accent - Whatchan Blue (visible on dark) */
  --red: #5ba3e8;
  --red-hover: #7cc4ff;
  --red-muted: rgba(91, 163, 232, 0.15);
  --red-glow: rgba(91, 163, 232, 0.15);

  /* Secondary Accent - Whatchan Gold */
  --gold: #ffd166;
  --gold-hover: #ffe08a;
  --gold-dim: rgba(255, 209, 102, 0.15);
  --gold-glow: rgba(255, 209, 102, 0.2);

  /* Tertiary - Teal (Positive) */
  --teal: #2a9d8f;
  --teal-hover: #3dbdad;
  --teal-dim: #0d3a34;

  /* Semantic Colors */
  --win: #3ddc84;
  --loss: #ff5c5c;
  --draw: #ffd166;
  --info: #5ba3e8;

  /* Text Colors */
  --text-primary: #e8e8f0;
  --text-secondary: #9898b0;
  --text-muted: #7a7a96;
  --text-white: #ffffff;

  /* Borders */
  --border: #2a2a42;
  --border-hover: #3a3a58;
  --border-accent: var(--red);

  /* Typography */
  --font-heading: 'Inter', 'DM Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Spacing */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 20px rgba(91, 163, 232, 0.2);
  --shadow-gold: 0 4px 20px rgba(255, 209, 102, 0.2);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(91, 163, 232, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 209, 102, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(42, 157, 143, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

/* --- Utility --- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mono { font-family: var(--font-mono); }

/* --- Top Bar --- */
.top-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__links a {
  color: var(--text-muted);
  margin-left: 16px;
  font-size: 0.78rem;
}
.top-bar__links a:hover { color: var(--text-primary); }

/* --- Header --- */
.site-header {
  background: rgba(15, 15, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1a3f6f 0%, #2b6cb0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.logo__text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-white);
  letter-spacing: -0.5px;
}
.logo__text span {
  color: var(--gold);
}

/* --- Navigation --- */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav__item { position: relative; }
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.main-nav__link:hover,
.main-nav__link--active {
  color: var(--text-white);
  background: var(--bg-raised);
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
/* Last two dropdowns (Tools, Guides) align right to prevent viewport overflow */
.main-nav__item:nth-last-child(-n+2) .nav-dropdown__menu {
  left: auto;
  right: 0;
}
.main-nav__item:hover .nav-dropdown__menu { display: block; }
.nav-dropdown__link {
  display: block;
  padding: 8px 12px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-dropdown__link:hover {
  background: var(--bg-hover);
  color: var(--text-white);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* --- Hero --- */
.hero {
  padding: 48px 0 36px;
  position: relative;
  z-index: 1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__headline {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.hero__headline em {
  font-style: italic;
  color: var(--red);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.hero__badge-icon { font-size: 1rem; }
.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quick-stat {
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all var(--transition-med);
}
.quick-stat:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quick-stat__value {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
}
.quick-stat__value--red { color: var(--red); }
.quick-stat__value--gold { color: var(--gold); }
.quick-stat__value--teal { color: var(--teal); }
.quick-stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- Section --- */
.section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.section--bordered { border-top: 1px solid var(--border); }
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1a3f6f, #ffd166);
  border-radius: 2px;
}
.section__link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* --- Cards (Generic) --- */
.card {
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-med);
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--red-accent { border-left: 3px solid var(--red); }
.card--gold-accent { border-left: 3px solid var(--gold); }
.card--teal-accent { border-left: 3px solid var(--teal); }

/* --- Player Cards --- */
.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.player-card {
  position: relative;
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-med);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.player-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
  color: inherit;
}
.player-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.player-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.player-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.player-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}
.player-card__nickname {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
}
.player-card__country {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.player-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.player-card__stat {
  text-align: center;
  padding: 8px 4px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
}
.player-card__stat-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}
.player-card__stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.player-card__rank {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- Tournament Cards --- */
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.tournament-card {
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
}
.tournament-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.tournament-card__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.tournament-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.tournament-card__tag--major { background: var(--red-muted); color: var(--red); }
.tournament-card__tag--premier { background: var(--gold-dim); color: var(--gold); }
.tournament-card__tag--european { background: var(--teal-dim); color: var(--teal); }
.tournament-card__tag--worldseries { background: rgba(88, 166, 255, 0.15); color: var(--info); }
.tournament-card__tag--protour { background: var(--bg-hover); color: var(--text-secondary); }
.tournament-card__tag--womens { background: rgba(200, 80, 200, 0.15); color: #d070d0; }
.tournament-card__tag--development { background: var(--bg-hover); color: var(--text-muted); }
.tournament-card__tag--modus { background: rgba(90, 68, 254, 0.2); color: #8b7fff; }
.tournament-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}
.tournament-card__venue {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.tournament-card__body {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tournament-card__detail {
  font-size: 0.82rem;
}
.tournament-card__detail-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tournament-card__detail-value {
  color: var(--text-primary);
  font-weight: 500;
}
.tournament-card__footer {
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Countdown --- */
.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.countdown__block {
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 72px;
}
.countdown__value {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}
.countdown__label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Predictor --- */
.predictor {
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.predictor__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.predictor__player-select {
  text-align: center;
}
.predictor__player-select label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.predictor__player-select select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239898b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.predictor__player-select select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-glow);
}
.predictor__divider {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
}
.predictor__btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 32px;
  padding: 14px 28px;
  background: var(--gold);
  color: #0f0f18;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-med);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.predictor__btn:hover {
  background: #ffe08a;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.predictor__result {
  display: none;
}
.predictor__result.active { display: block; }
.predictor__result-header {
  text-align: center;
  margin-bottom: 24px;
}
.predictor__winner-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.predictor__confidence {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}
.predictor__breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.predictor__player-stats {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.predictor__player-stats h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-white);
}
.predictor__stat-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(42,42,66,0.5);
  font-size: 0.85rem;
}
.predictor__stat-row:last-child { border-bottom: none; }
.predictor__stat-label { color: var(--text-secondary); }
.predictor__stat-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-white);
}
.predictor__stat-value--better { color: var(--win); }
.predictor__stat-value--worse { color: var(--loss); }
.predictor__h2h {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}
.predictor__h2h h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-white);
}
.predictor__h2h-score {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
}
.predictor__factors {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.predictor__factors h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.predictor__factors ul {
  list-style: disc;
  padding-left: 20px;
}
.predictor__factors li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 3px 0;
  list-style: disc;
}
.predictor__bar-container {
  margin-top: 20px;
}
.predictor__bar-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}
.predictor__bar {
  height: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  background: var(--bg-dark);
  border: 1px solid var(--border);
}
.predictor__bar-fill--p1 {
  background: linear-gradient(90deg, var(--red), var(--red-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  transition: width 0.8s ease;
}
.predictor__bar-fill--p2 {
  background: linear-gradient(90deg, var(--teal), var(--teal-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  transition: width 0.8s ease;
}

/* --- Rankings Table --- */
.rankings-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.rankings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.rankings-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.rankings-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.rankings-table tr:hover td {
  background: var(--bg-raised);
}
.rankings-table .rank-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  width: 40px;
}
.rankings-table .rank-1 .rank-num { color: var(--gold); }
.rankings-table .rank-2 .rank-num { color: #c0c0c0; }
.rankings-table .rank-3 .rank-num { color: #cd7f32; }
.rankings-table .player-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rankings-table .player-name-cell .mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.rankings-table .player-link {
  color: var(--text-white);
  font-weight: 600;
}
.rankings-table .player-link:hover { color: var(--red); }
.rankings-table .money {
  font-family: var(--font-mono);
  color: var(--gold);
}
.rankings-table .stat-cell {
  font-family: var(--font-mono);
}

/* --- Checkout Chart --- */
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.checkout-item {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}
.checkout-item:hover {
  border-color: var(--red);
  background: var(--bg-hover);
}
.checkout-item__score {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  min-width: 36px;
}
.checkout-item__darts {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: right;
}
.checkout-item--highlight {
  border-color: var(--gold);
  background: rgba(244, 162, 97, 0.05);
}

/* --- Stat Bars --- */
.stat-bar {
  margin-bottom: 12px;
}
.stat-bar__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.82rem;
}
.stat-bar__label { color: var(--text-secondary); }
.stat-bar__value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-white);
}
.stat-bar__track {
  height: 6px;
  background: var(--bg-dark);
  border-radius: 3px;
  overflow: hidden;
}
.stat-bar__fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}
.stat-bar__fill--red { background: linear-gradient(90deg, var(--red), var(--red-hover)); }
.stat-bar__fill--gold { background: linear-gradient(90deg, var(--gold), var(--gold-hover)); }
.stat-bar__fill--teal { background: linear-gradient(90deg, var(--teal), var(--teal-hover)); }

/* --- Forms & Inputs --- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-glow);
}
.form-group .hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-med);
}
.btn--red {
  background: linear-gradient(135deg, var(--red) 0%, #3a7bc8 100%);
  color: var(--text-white);
}
.btn--red:hover {
  background: linear-gradient(135deg, var(--red-hover) 0%, var(--red) 100%);
  box-shadow: var(--shadow-red);
}
.btn--gold {
  background: var(--gold);
  color: #0f0f18;
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-hover);
  box-shadow: var(--shadow-gold);
}
.btn--primary, .btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #3a7bc8 100%);
  color: var(--text-white);
}
.btn--primary:hover, .btn-primary:hover {
  background: linear-gradient(135deg, var(--red-hover) 0%, var(--red) 100%);
  box-shadow: var(--shadow-red);
}
.btn--secondary, .btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn--secondary:hover, .btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-white);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn--outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-white);
}

/* --- Guide Cards --- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.guide-card {
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-med);
  display: block;
  color: inherit;
  text-decoration: none;
}
.guide-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: inherit;
}
.guide-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}
.guide-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.guide-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.guide-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.breadcrumb a {
  color: var(--text-secondary);
}
.breadcrumb a:hover {
  color: var(--text-white);
}
.breadcrumb-sep {
  margin: 0 6px;
  color: var(--text-muted);
}
.breadcrumb [aria-current="page"] {
  color: var(--text-secondary);
}

/* --- Content Pages --- */
.page-hero {
  padding: 40px 0 32px;
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.page-hero__sub {
  font-size: 1rem;
  color: var(--text-secondary);
}
.content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.content .subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}
.content h2 {
  font-size: 1.4rem;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--gold);
}
.content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.content ul, .content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.content li {
  margin-bottom: 6px;
  color: var(--text-secondary);
  line-height: 1.6;
  list-style: disc;
}
.content ol li { list-style: decimal; }
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}
.content table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bg-raised);
  border-bottom: 2px solid var(--border);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.content blockquote {
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  margin: 20px 0;
  background: var(--bg-raised);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* --- Player Profile --- */
.profile-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: rgba(22, 22, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
}
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid var(--border);
  overflow: hidden;
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.profile-info .nickname {
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 8px;
}
.profile-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.profile-stat-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.profile-stat-card__value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
}
.profile-stat-card__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* --- Form Table (Recent Results) --- */
.form-indicator {
  display: inline-flex;
  gap: 3px;
}
.form-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.form-dot--w { background: var(--teal-dim); color: var(--teal); }
.form-dot--l { background: var(--red-muted); color: var(--red); }

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
}
.tab {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-heading);
}
.tab:hover { color: var(--text-secondary); }
.tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Search/Filter --- */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.search-bar input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--red);
}
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.filter-chip {
  padding: 6px 14px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-muted);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-about p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--text-white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Loading --- */
.loading {
  display: flex;
  justify-content: center;
  padding: 40px;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .predictor__vs { grid-template-columns: 1fr; gap: 16px; }
  .predictor__breakdown { grid-template-columns: 1fr; }
  .profile-header { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .profile-meta { justify-content: center; }
}
@media (max-width: 960px) {
  .site-header .container { height: 56px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    z-index: 199;
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav.open .main-nav__item { width: 100%; }
  .main-nav.open .main-nav__link {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  .main-nav.open .nav-dropdown__menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    min-width: auto;
  }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero__headline { font-size: 1.6rem; }
  .quick-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .player-grid { grid-template-columns: 1fr; }
  .tournament-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .countdown { gap: 8px; }
  .countdown__block { min-width: 56px; padding: 8px 10px; }
  .countdown__value { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .rankings-table { font-size: 0.8rem; }
  .rankings-table th, .rankings-table td { padding: 8px 10px; }
  .page-hero__title { font-size: 1.5rem; }
  .section__title { font-size: 1.2rem; }
  .tabs { gap: 0; }
  .tab { padding: 8px 12px; font-size: 0.78rem; }
}

/* --- Hero Images --- */
.page-hero--img {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 0 48px;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}
.page-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,13,0.88) 0%, rgba(8,8,13,0.96) 100%);
  z-index: 0;
}
.page-hero--img .container { position: relative; z-index: 1; }

/* --- Video Embeds --- */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 20px 0;
  background: var(--bg-dark);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.video-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
}
.video-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card__info { padding: 14px 16px; }
.video-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}
.video-card__desc { font-size: 0.78rem; color: var(--text-muted); }

/* --- Page Banner Image --- */
.content-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .page-hero--img { min-height: 180px; padding: 40px 0 32px; }
  .content-banner { height: 140px; }
}

/* --- Channel Badges (TV Schedule & homepage strips) --- */
.channel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 5px;
  height: 28px;
  margin: 2px 4px 2px 0;
  vertical-align: middle;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.channel-badge__logo {
  height: 16px;
  width: auto;
  display: block;
  object-fit: contain;
}
.channel-badge--sky    { background: #fff; }
.channel-badge--dazn   { background: #000; }
.channel-badge--viaplay{ background: #fff; }
.channel-badge--pdctv  { background: #fff; }
.channel-badge--itv    { background: #ffcc00; color: #1a1a2e; }
.channel-badge--itv4   { background: #fff; }
.channel-badge--plutotv{ background: #5A44FE; }
.channel-badge--other  { background: var(--bg-raised); color: var(--text-secondary); border: 1px solid var(--border); }

/* ch-pill used on homepage TV cards */
.ch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 4px;
  height: 24px;
  margin-right: 3px;
  margin-bottom: 3px;
  vertical-align: middle;
}
.ch-pill__logo {
  height: 13px;
  width: auto;
  display: block;
  object-fit: contain;
}
.ch-pill--sky     { background: #fff; }
.ch-pill--dazn    { background: #000; }
.ch-pill--viaplay { background: #fff; }
.ch-pill--pdc     { background: #fff; }
.ch-pill--itv4    { background: #fff; }
.ch-pill--plutotv { background: #5A44FE; }
.ch-pill--itv     { background: rgba(255,204,0,0.12); color: #e6c200; font-size: 0.65rem; font-weight: 600; }

/* --- Responsible Gambling --- */
.responsible-gambling {
  background: var(--bg-raised);
  border: 2px solid var(--draw);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.responsible-gambling h3,
.responsible-gambling strong {
  color: var(--draw);
}
.responsible-gambling p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* --- Guide Navigation --- */
.guide-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.guide-nav .btn {
  flex: 0 1 auto;
}

/* --- Focus States (Accessibility) --- */
.btn:focus-visible,
.main-nav__link:focus-visible,
.nav-dropdown__link:focus-visible,
.filter-chip:focus-visible,
.tab:focus-visible,
.player-card:focus-visible,
.tournament-card:focus-visible,
.guide-card:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-radius: 2px;
}

/* --- Nav Toggle Hover --- */
.nav-toggle:hover {
  color: var(--text-white);
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
}

/* --- Print --- */
@media print {
  body::before, .site-header, .top-bar, .site-footer { display: none; }
  body { background: #fff; color: #000; }
  .card, .player-card, .tournament-card { border: 1px solid #ccc; box-shadow: none; background: #fff; }
}

/* ── WhatChan cross-promo banners ─────────────────────────────────────────── */
.whatchan-promo {
  padding: 40px 0 0;
}
.whatchan-promo + .whatchan-promo {
  padding-top: 16px;
}
.whatchan-promo__banner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.whatchan-promo__banner--main {
  background: linear-gradient(135deg, #0f2027 0%, #1a3a4a 40%, #1d4ed8 100%);
}
.whatchan-promo__banner--blog {
  background: linear-gradient(135deg, #1a0a2e 0%, #3b1578 40%, #8b1a4a 100%);
}
.whatchan-promo__banner--wc26 {
  background: linear-gradient(135deg, #0a1f0a 0%, #1a3d1a 45%, #2a6b2a 100%);
}
.whatchan-promo__glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.whatchan-promo__icon {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}
.whatchan-promo__content { flex: 1; min-width: 0; }
.whatchan-promo__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb74d;
  margin-bottom: 5px;
}
.whatchan-promo__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
}
.whatchan-promo__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.55;
}
.whatchan-promo__btn {
  flex-shrink: 0;
  display: inline-block;
  background: #fff;
  color: #111827 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.whatchan-promo__btn:hover {
  opacity: 0.88;
  color: #111827 !important;
}
@media (max-width: 640px) {
  .whatchan-promo__banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .whatchan-promo__btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Darts news grid ──────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}
.news-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  color: inherit;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.news-card__source {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card__ago {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.news-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.45;
  margin: 0;
}
.whatchan-promo__banner--amber {
  background: linear-gradient(135deg, #1a1000 0%, #3d2800 45%, #7a4f00 100%);
}
.whatchan-promo__banner--slate {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2240 45%, #2d3e80 100%);
}
.whatchan-promo__banner--ruby {
  background: linear-gradient(135deg, #1a0008 0%, #400020 45%, #800038 100%);
}
