﻿:root {
  --bg: #06110e;
  --bg-2: #091a15;
  --surface: rgba(13, 29, 24, 0.72);
  --surface-2: rgba(19, 42, 35, 0.84);
  --surface-3: rgba(255, 255, 255, 0.06);
  --line: rgba(226, 249, 233, 0.14);
  --line-strong: rgba(86, 233, 145, 0.36);
  --text: #f7fff9;
  --muted: #a9beb2;
  --dim: #779085;
  --green: #35e88a;
  --mint: #b3f7cd;
  --gold: #f5c85a;
  --blue: #68b7ff;
  --red: #ff6472;
  --radius: 24px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(53, 232, 138, 0.18), transparent 36%),
    radial-gradient(circle at 82% 2%, rgba(104, 183, 255, 0.18), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, #071511 42%, #07110e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 76%);
  z-index: -3;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(1220px, calc(100% - 28px));
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(6, 17, 14, 0.76);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(78, 245, 235, 0.22);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}

.install-pair {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.store-button {
  min-width: 132px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  color: #fff;
  background: #050706;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.34);
  background: #101511;
}

.store-button span:last-child {
  display: grid;
  gap: 1px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.store-button small {
  color: rgba(255,255,255,0.72);
  font-size: 9px;
  font-weight: 750;
}

.store-icon {
  font-size: 25px;
  line-height: 1;
}

.play-icon {
  width: 22px;
  height: 24px;
  display: inline-block;
  background: linear-gradient(140deg, #34d399 0 30%, #60a5fa 30% 58%, #facc15 58% 78%, #fb7185 78%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero {
  position: relative;
  width: min(1220px, calc(100% - 28px));
  min-height: calc(100svh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 78px 0 42px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  overflow: hidden;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.1) contrast(1.1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 14, 0.98) 0%, rgba(6, 17, 14, 0.76) 52%, rgba(6, 17, 14, 0.9) 100%), linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.93;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d9ebe0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.search-shell {
  width: min(750px, 100%);
  margin-top: 34px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: rgba(8, 23, 18, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.search-box {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 8px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.search-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}

.search-box input {
  min-height: 48px;
  width: 100%;
  color: var(--text);
  border: 0;
  outline: 0;
  background: transparent;
}

.search-box input::placeholder {
  color: #789084;
}

.search-box button,
.primary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  color: #03140b;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.search-box button:hover,
.primary-action:hover {
  transform: translateY(-2px);
  background: var(--mint);
  box-shadow: 0 18px 36px rgba(53, 232, 138, 0.2);
}

.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-picks button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.quick-picks button:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.hero-fixture-strip {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.hero-fixture-strip article {
  min-height: 132px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(8, 23, 18, 0.84);
  box-shadow: 0 18px 56px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
}

.hero-fixture-strip span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-fixture-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-fixture-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  font-weight: 900;
}

.secondary-action:hover {
  background: rgba(255,255,255,0.1);
}

.hero-console {
  display: grid;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(10, 27, 22, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.console-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.console-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(255, 100, 114, 0.16);
}

.hero-match,
.story-card,
.control-panel,
.match-card,
.channel-board article,
.platform-grid article,
.answer-strip article,
.app-section {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 64px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}

.hero-match {
  padding: 18px;
  border-radius: 24px;
}

.match-meta-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.match-meta-top strong {
  color: var(--mint);
}

.hero-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

.hero-teams div {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.team-badge {
  width: 58px;
  height: 58px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.badge-art {
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.18), transparent 38%),
    rgba(255,255,255,0.08);
  border: 1px solid rgba(226, 249, 233, 0.16);
}

.badge-art img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.28));
}

.badge-art span {
  position: relative;
  z-index: 1;
  opacity: 0.28;
}

.mexico {
  background: linear-gradient(145deg, #16a35a, #094b32);
}

.gold {
  background: linear-gradient(145deg, #f0bd45, #825d14);
}

.versus {
  padding: 8px 12px;
  border-radius: 999px;
  color: #06110e;
  background: var(--gold);
  font-weight: 950;
}

.answer-row {
  display: grid;
  gap: 6px;
  padding: 13px;
  border-radius: 16px;
  background: rgba(53,232,138,0.1);
}

.answer-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.device-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  align-items: end;
}

.device-row img {
  border-radius: 25px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.34);
}

.mini-feed {
  display: grid;
  gap: 9px;
}

.mini-feed article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
}

.mini-feed span,
.section-heading span,
.app-copy span,
.platform-section span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-feed strong {
  display: block;
  margin-top: 6px;
}

.mini-feed p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.sticky-install {
  position: sticky;
  bottom: 14px;
  z-index: 35;
  width: min(940px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -12px auto 54px;
  padding: 12px;
  color: #05110d;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 65px rgba(0,0,0,0.42);
  backdrop-filter: blur(24px);
}

.sticky-install strong {
  padding-left: 8px;
}

.answer-strip {
  width: min(1220px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 62px;
}

.answer-strip article {
  min-height: 142px;
  padding: 18px;
  border-radius: 22px;
}

.answer-strip span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.answer-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 17px;
}

.answer-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.world-cup-section {
  padding-top: 42px;
}

.world-heading {
  max-width: 900px;
}

.world-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 16px;
}

.world-main-card,
.world-side-stack article,
.news-lead,
.rss-grid article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 64px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}

.world-main-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
}

.world-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,17,14,0.05), rgba(6,17,14,0.92)),
    url("./wtgo-assets/hero-stadium.webp") center / cover;
  z-index: -1;
}

.world-main-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(53,232,138,0.28), transparent 34%);
  z-index: -1;
}

.world-top span,
.world-side-stack span,
.news-lead span,
.rss-grid span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-top strong {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

.world-top p {
  max-width: 620px;
  color: #d9ebe0;
  font-size: 17px;
  line-height: 1.58;
}

.world-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.world-details div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(4, 15, 11, 0.62);
}

.world-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.world-details strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.world-broadcasters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.world-broadcasters span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #06110e;
  background: #dbfae6;
  font-size: 13px;
  font-weight: 900;
}

.world-side-stack {
  display: grid;
  gap: 12px;
}

.world-side-stack article {
  min-height: 144px;
  display: grid;
  align-content: end;
  padding: 20px;
  border-radius: 24px;
}

.world-side-stack strong {
  display: block;
  margin-top: 9px;
  font-size: 23px;
  line-height: 1.08;
}

.world-side-stack p {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.app-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.section-heading p,
.app-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.today-fixtures {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 16px;
}

.real-fixture-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(53, 232, 138, 0.12), rgba(255,255,255,0.04) 38%, rgba(245, 200, 90, 0.1)),
    var(--surface);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.lead-fixture {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 200, 90, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(53, 232, 138, 0.15), rgba(255,255,255,0.05) 42%, rgba(245, 200, 90, 0.1)),
    var(--surface);
}

.fixture-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fixture-top strong {
  color: var(--gold);
  text-align: right;
}

.fixture-teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 950;
  line-height: 0.96;
}

.fixture-team {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-items: center;
}

.fixture-team img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,0.32));
}

.fixture-team strong {
  display: block;
  font: inherit;
  line-height: inherit;
}

.fixture-team:last-child {
  justify-items: end;
  text-align: right;
}

.fixture-teams em {
  min-width: 44px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #07150f;
  background: var(--gold);
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
  text-align: center;
}

.fixture-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fixture-info div,
.upcoming-grid article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.fixture-info span,
.upcoming-grid span {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fixture-info strong,
.upcoming-grid strong {
  display: block;
  margin-top: 8px;
}

.coverage-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.coverage-metrics div {
  padding: 14px;
  border: 1px solid rgba(179, 247, 205, 0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
}

.coverage-metrics strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.coverage-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.broadcaster-strip,
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.broadcaster-strip span,
.search-suggestions span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(179, 247, 205, 0.18);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(53, 232, 138, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.channel-dropdown {
  overflow: hidden;
  border: 1px solid rgba(179, 247, 205, 0.18);
  border-radius: 20px;
  background: rgba(4, 17, 13, 0.52);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.channel-dropdown[open] {
  border-color: rgba(53, 232, 138, 0.48);
  background: rgba(5, 25, 18, 0.78);
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
}

.channel-dropdown summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  list-style: none;
  cursor: pointer;
}

.channel-dropdown summary::-webkit-details-marker {
  display: none;
}

.channel-dropdown summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.channel-dropdown[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.channel-dropdown summary span {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}

.channel-dropdown summary strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #06110e;
  background: var(--mint);
  font-size: 12px;
  font-weight: 950;
}

.channel-menu {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.channel-menu div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(226, 249, 233, 0.11);
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
}

.channel-menu span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.channel-menu strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.upcoming-grid article {
  min-height: 170px;
  align-content: end;
}

.upcoming-badges {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.upcoming-badges img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(226, 249, 233, 0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.upcoming-badges img + img {
  margin-left: -8px;
}

.upcoming-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.upcoming-card {
  gap: 18px;
}

.upcoming-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.upcoming-card-top > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.upcoming-card-top > strong {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #06110e;
  background: var(--gold);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.upcoming-matchup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.upcoming-matchup div {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.upcoming-matchup div:last-child {
  justify-items: end;
  text-align: right;
}

.upcoming-matchup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid rgba(226, 249, 233, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
}

.upcoming-matchup strong {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.08;
}

.upcoming-matchup em {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #06110e;
  background: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.mini-tv-dropdown {
  overflow: hidden;
  border: 1px solid rgba(179, 247, 205, 0.16);
  border-radius: 16px;
  background: rgba(4, 17, 13, 0.56);
}

.mini-tv-dropdown summary {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
}

.mini-tv-dropdown summary::-webkit-details-marker {
  display: none;
}

.mini-tv-dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.mini-tv-dropdown[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.mini-tv-dropdown summary strong {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #06110e;
  background: var(--mint);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-tv-dropdown > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px 10px;
  padding: 0 13px 13px;
}

.mini-tv-dropdown span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-tv-dropdown strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
}

.mini-tv-dropdown a {
  grid-column: 1 / -1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border-radius: 12px;
  color: #06110e;
  background: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.coverage-board,
.sports-grid,
.score-grid {
  display: grid;
  gap: 14px;
}

.coverage-board {
  grid-template-columns: repeat(3, 1fr);
}

.sports-grid {
  grid-template-columns: repeat(3, 1fr);
}

.score-grid {
  grid-template-columns: repeat(3, 1fr);
}

.coverage-board article,
.sports-grid article,
.score-grid article {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(179, 247, 205, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 12%, rgba(53, 232, 138, 0.12), transparent 34%),
    rgba(10, 28, 22, 0.76);
  box-shadow: 0 18px 64px rgba(0,0,0,0.22);
}

.coverage-board span,
.sports-grid span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverage-board strong,
.sports-grid strong,
.score-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.coverage-board p,
.sports-grid p,
.score-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-pill {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(179, 247, 205, 0.18);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-pill.live {
  color: #06110e;
  background: var(--green);
}

.global-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(240px, 0.78fr) minmax(150px, 0.4fr);
  gap: 20px;
  align-items: center;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(179, 247, 205, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(7, 24, 18, 0.96), rgba(12, 47, 36, 0.72)),
    url("./wtgo-assets/promo-01-watch-any-game.webp") center/cover;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.global-copy {
  max-width: 540px;
}

.global-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.global-actions .store-button {
  min-height: 42px;
  padding: 8px 15px;
  border-radius: 11px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.34);
}

.global-panel span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.global-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
}

.global-panel p {
  color: #d7eadf;
  line-height: 1.6;
}

.global-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.global-stats article {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(226, 249, 233, 0.16);
  border-radius: 22px;
  background: rgba(4, 17, 13, 0.72);
}

.global-stats strong {
  font-size: 36px;
}

.global-media {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
  padding: 8px;
  border: 1px solid rgba(179, 247, 205, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(48, 232, 139, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(9, 44, 32, 0.88), rgba(1, 10, 8, 0.92));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.global-media::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 22%, rgba(0,0,0,0.1));
}

.global-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 22px 0;
}

.benefit-grid span,
.rating-row {
  padding: 12px;
  border: 1px solid rgba(179, 247, 205, 0.14);
  border-radius: 14px;
  color: var(--mint);
  background: rgba(255,255,255,0.055);
  font-size: 13px;
  font-weight: 900;
}

.rating-row {
  display: grid;
  gap: 4px;
  color: var(--text);
}

.rating-row span {
  color: var(--muted);
  font-weight: 700;
}

.live-layout {
  display: grid;
  grid-template-columns: 294px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.control-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 22px;
  padding: 18px;
  border-radius: 26px;
}

.control-panel strong {
  display: block;
  margin-bottom: 10px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.segmented button,
.sport-list button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.segmented button.active,
.sport-list button.active {
  color: #03140b;
  border-color: transparent;
  background: var(--green);
  font-weight: 950;
}

.sport-list {
  display: grid;
  gap: 8px;
}

.sport-list button {
  padding: 0 12px;
  text-align: left;
}

.refresh-card {
  padding: 15px;
  border: 1px solid rgba(245, 200, 90, 0.26);
  border-radius: 18px;
  background: rgba(245, 200, 90, 0.09);
}

.refresh-card p {
  margin: 8px 0 0;
  color: #d6c9a2;
  line-height: 1.5;
}

.match-stack {
  display: grid;
  gap: 12px;
}

.match-card {
  overflow: hidden;
  border-radius: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.match-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.match-main {
  width: 100%;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.time-block {
  display: grid;
  gap: 6px;
}

.time-block strong {
  font-size: 27px;
  line-height: 1;
}

.time-block span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.match-title {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.league-line {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.teams-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 950;
}

.pill-vs {
  padding: 5px 9px;
  border-radius: 999px;
  color: #06110e;
  background: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.match-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.channel-preview {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.channel-preview strong {
  font-size: 13px;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.channel-tags span {
  max-width: 126px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 0 9px;
  border-radius: 999px;
  color: #06110e;
  background: #daf9e5;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-details {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 18px 18px;
}

.match-card.open .match-details {
  display: grid;
}

.detail-cell {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,0.045);
}

.detail-cell span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-cell strong {
  display: block;
  margin-top: 8px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.editorial .story-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.editorial .story-card.large {
  width: min(520px, 100%);
  min-height: 625px;
}

.story-downloads {
  justify-content: center;
  margin-top: 18px;
}

.story-downloads .store-button {
  min-width: 160px;
}

.story-card {
  min-height: 265px;
  display: grid;
  align-content: end;
  padding: 22px;
  border-radius: var(--radius);
}

.story-card.large {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.story-card.large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.story-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(5, 14, 11, 0.92) 82%);
  z-index: -1;
}

.story-card strong,
.channel-board strong,
.platform-grid strong {
  display: block;
  font-size: 23px;
  line-height: 1.12;
}

.story-card p,
.channel-board p,
.platform-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.channel-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.channel-board article,
.platform-grid article {
  min-height: 230px;
  display: grid;
  align-content: end;
  padding: 22px;
  border-radius: var(--radius);
}

.channel-board span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.news-lead {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  align-content: end;
  padding: 26px;
  border-radius: 32px;
}

.news-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(245,200,90,0.2), transparent 32%),
    linear-gradient(145deg, rgba(53,232,138,0.16), rgba(104,183,255,0.12) 42%, rgba(8,23,18,0.92));
  z-index: -1;
}

.news-lead strong {
  display: block;
  max-width: 460px;
  margin-top: 10px;
  font-size: 36px;
  line-height: 1;
}

.news-lead p {
  color: #d9ebe0;
  line-height: 1.6;
}

.news-lead a,
.rss-grid a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #06110e;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.rss-grid {
  display: grid;
  gap: 12px;
}

.rss-grid article {
  min-height: 122px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.rss-grid strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
}

.rss-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
}

.app-install-large .store-button {
  min-width: 168px;
  min-height: 58px;
}

.phones {
  position: relative;
  min-height: 520px;
}

.phones::before {
  content: "";
  position: absolute;
  inset: 18% 0;
  background: rgba(53,232,138,0.24);
  filter: blur(56px);
}

.phones img {
  position: absolute;
  width: min(238px, 54vw);
  border-radius: 38px;
  box-shadow: 0 30px 82px rgba(0,0,0,0.48);
}

.phone-one {
  left: 28px;
  top: 0;
  z-index: 2;
}

.phone-two {
  right: 18px;
  top: 76px;
  z-index: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.platform-grid article {
  min-height: 205px;
}

.footer {
  width: min(1220px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  padding: 42px 0 100px;
  color: var(--muted);
}

.footer img {
  width: 176px;
  height: auto;
}

.footer .footer-logo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 28px rgba(78, 245, 235, 0.2);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-console {
    grid-template-columns: 1fr 1fr;
  }

  .console-status {
    grid-column: 1 / -1;
  }

  .answer-strip,
  .channel-board,
  .platform-grid,
  .today-fixtures {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-layout,
  .story-grid,
  .world-grid,
  .news-layout,
  .app-section,
  .upcoming-grid,
  .coverage-board,
  .sports-grid,
  .score-grid,
  .global-panel {
    grid-template-columns: 1fr;
  }

  .control-panel {
    position: static;
  }

  .phones {
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 18px);
    min-height: 64px;
    border-radius: 21px;
  }

  .brand span {
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-install {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    grid-column: 1 / -1;
    width: 100%;
  }

  .header-install .store-button {
    min-height: 38px;
    min-width: 0;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .header-install .store-button span:last-child {
    font-size: 11px;
  }

  .header-install .store-button small {
    font-size: 8px;
  }

  .header-install .store-icon {
    font-size: 16px;
  }

  .header-install .play-icon {
    width: 17px;
    height: 19px;
  }

  .hero,
  .section,
  .answer-strip,
  .footer {
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .search-box {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .search-box button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-console,
  .answer-strip,
  .world-details,
  .channel-board,
  .platform-grid,
  .hero-fixture-strip,
  .today-fixtures,
  .fixture-info,
  .upcoming-grid {
    grid-template-columns: 1fr;
  }

  .real-fixture-card {
    min-height: 390px;
    padding: 20px;
  }

  .fixture-top {
    display: grid;
  }

  .fixture-top strong {
    text-align: left;
  }

  .fixture-teams {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fixture-teams span:last-child {
    text-align: left;
  }

  .fixture-teams em {
    width: max-content;
  }

  .device-row {
    grid-template-columns: 128px 1fr;
  }

  .sticky-install {
    align-items: stretch;
    flex-direction: column;
    bottom: 10px;
  }

  .sticky-install strong {
    padding: 0;
    text-align: center;
  }

  .sticky-install .install-pair {
    justify-content: center;
  }

  .sticky-install .store-button {
    flex: 1 1 136px;
  }

  .match-main {
    grid-template-columns: 1fr;
  }

  .channel-preview {
    justify-items: start;
  }

  .channel-tags {
    justify-content: flex-start;
  }

  .match-details {
    grid-template-columns: 1fr;
  }

  .world-main-card {
    min-height: 520px;
    padding: 20px;
    border-radius: 28px;
  }

  .world-top strong {
    font-size: 37px;
  }

  .world-details strong {
    font-size: 24px;
  }

  .rss-grid article {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .app-copy h2 {
    font-size: 36px;
  }

  .app-section {
    padding: 22px;
    border-radius: 27px;
  }

  .phones {
    min-height: 0;
    display: grid;
    justify-items: center;
    padding-top: 8px;
  }

  .phones img {
    position: relative;
    width: 205px;
  }

  .phone-one {
    left: auto;
    top: auto;
  }

  .phone-two {
    display: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 150px;
  }
}

@media (max-width: 430px) {
  .install-pair {
    width: 100%;
  }

  .store-button {
    flex: 1 1 130px;
    min-width: 0;
    padding-inline: 9px;
  }

  .store-button span:last-child {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Ordered 4:5 homepage promotional imagery. */
.hero-bg img {
  object-position: 58% center;
  opacity: 0.2;
}

.story-card.large {
  min-height: 500px;
  aspect-ratio: 4 / 5;
}

.story-card.large img {
  object-position: center;
}

.phones {
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phones::before {
  inset: 12% 8%;
}

.phones img {
  position: relative;
  width: min(390px, 100%);
  height: auto;
  object-fit: contain;
  border-radius: 26px;
}

.phone-one {
  left: auto;
  top: auto;
}

@media (max-width: 760px) {
  .story-card.large {
    min-height: 420px;
  }

  .phones img {
    width: min(320px, 100%);
    border-radius: 22px;
  }

  .editorial .story-card.large {
    width: 100%;
    min-height: 525px;
  }

  .story-downloads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .story-downloads .store-button {
    min-width: 0;
  }
}

/* Header logo-only treatment. */
.brand {
  gap: 0;
}

.brand-mark {
  width: 76px;
  height: 76px;
  border-radius: 20px;
}

.site-header {
  min-height: 96px;
}

@media (max-width: 760px) {
  .site-header {
    justify-items: center;
    grid-template-columns: 1fr;
    min-height: 154px;
  }

  .brand {
    justify-self: center;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .header-install {
    grid-column: 1;
  }
}

/* Production polish pass: clean first viewport, stronger fixture UI, no overlap. */
body {
  background:
    radial-gradient(circle at 18% -8%, rgba(53, 232, 138, 0.16), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(104, 183, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #04100c 0%, #06130f 44%, #050c0a 100%);
}

.site-header {
  width: min(1180px, calc(100% - 28px));
  min-height: 66px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 22px;
  background: rgba(4, 16, 12, 0.9);
}

.brand {
  font-size: 14px;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.hero {
  width: min(1180px, calc(100% - 28px));
  min-height: 700px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 44px;
  align-items: center;
  padding: 70px 0 76px;
}

.hero-bg img {
  opacity: 0.22;
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(4, 16, 12, 0.98) 0%, rgba(4, 16, 12, 0.72) 54%, rgba(4, 16, 12, 0.94) 100%),
    linear-gradient(180deg, rgba(4, 16, 12, 0.02) 0%, #06130f 96%);
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin-top: 20px;
  color: #cfe3d7;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.hero-fixture-strip {
  width: min(640px, 100%);
  margin-top: 26px;
}

.hero-fixture-strip article {
  min-height: 112px;
  align-content: center;
  padding: 16px;
  border-color: rgba(179, 247, 205, 0.18);
  border-radius: 18px;
  background: rgba(9, 31, 23, 0.86);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

.hero-fixture-strip strong {
  font-size: 20px;
  line-height: 1.12;
}

.hero-actions {
  margin-top: 22px;
}

.hero-console {
  align-self: center;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 35, 27, 0.9), rgba(7, 21, 16, 0.9));
}

.hero-match {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
}

.device-row {
  grid-template-columns: 1fr;
}

.device-row img {
  display: none;
}

.mini-feed {
  grid-template-columns: 1fr;
}

.mini-feed article {
  min-height: 74px;
  display: grid;
  align-content: center;
}

.sticky-install {
  position: static;
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto 58px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.sticky-install strong {
  color: #06110e;
  font-size: 18px;
}

.answer-strip {
  width: min(1180px, calc(100% - 28px));
  margin-bottom: 36px;
}

.answer-strip article,
.real-fixture-card,
.upcoming-grid article,
.story-card,
.channel-board article,
.rss-grid article,
.news-lead,
.app-section,
.platform-grid article {
  border-color: rgba(179, 247, 205, 0.14);
  background: rgba(10, 28, 22, 0.76);
}

.section {
  width: min(1180px, calc(100% - 28px));
  padding: 70px 0;
}

.world-cup-section {
  padding-top: 64px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.app-copy h2 {
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p,
.app-copy p {
  max-width: 820px;
  color: #b8cbbf;
}

.today-fixtures {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.real-fixture-card {
  min-height: 340px;
  padding: 24px;
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.25);
}

.fixture-top {
  align-items: start;
}

.fixture-teams {
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: 0;
}

.fixture-info div {
  min-height: 92px;
  display: grid;
  align-content: center;
}

.upcoming-grid {
  gap: 12px;
}

.upcoming-grid article {
  min-height: 150px;
  border-radius: 20px;
}

.story-grid,
.channel-board,
.news-layout,
.platform-grid {
  gap: 14px;
}

.app-section {
  overflow: hidden;
  border-radius: 28px;
}

@media (max-width: 1060px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-console {
    max-width: 620px;
  }

  .today-fixtures {
    grid-template-columns: 1fr;
  }

  .coverage-board,
  .sports-grid,
  .score-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 18px);
    min-height: 58px;
    margin-top: 8px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero,
  .section,
  .answer-strip,
  .sticky-install,
  .footer {
    width: calc(100% - 20px);
  }

  .hero {
    padding: 38px 0 48px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-fixture-strip {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-console {
    padding: 14px;
    border-radius: 22px;
  }

  .coverage-board,
  .sports-grid,
  .score-grid,
  .global-stats,
  .coverage-metrics,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .coverage-board article,
  .sports-grid article,
  .score-grid article {
    min-height: 150px;
  }

  .global-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-teams {
    gap: 8px;
  }

  .team-badge {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .sticky-install {
    position: sticky;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 38;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 18px;
    box-shadow: 0 18px 58px rgba(0,0,0,0.46);
  }

  .sticky-install .install-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sticky-install .store-button {
    width: 100%;
  }

  .answer-strip {
    margin-bottom: 20px;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading h2,
  .app-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .real-fixture-card {
    min-height: 0;
    gap: 22px;
    border-radius: 24px;
  }

  .fixture-teams {
    font-size: clamp(33px, 10vw, 44px);
  }

  .fixture-team,
  .fixture-team:last-child {
    justify-items: start;
    text-align: left;
  }

  .fixture-team img {
    width: 64px;
    height: 64px;
  }

  .channel-dropdown summary {
    grid-template-columns: minmax(0, 1fr) auto 18px;
    padding-inline: 13px;
  }

  .channel-menu div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .upcoming-matchup {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .upcoming-matchup div,
  .upcoming-matchup div:last-child {
    justify-items: start;
    text-align: left;
  }

  .upcoming-matchup em {
    width: max-content;
    height: auto;
    padding: 7px 10px;
  }

  .mini-tv-dropdown > div {
    grid-template-columns: 1fr;
  }
}

/* Final header logo-only override. Keep this last. */
.site-header {
  min-height: 96px;
}

.brand {
  gap: 0;
}

.brand-mark {
  width: 76px;
  height: 76px;
  border-radius: 20px;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 154px;
  }

  .brand {
    justify-self: center;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .header-install {
    grid-column: 1;
  }
}

/* Hero splash image using the World Cup build-up artwork. */
.hero-bg img {
  object-position: 62% center;
  opacity: 0.3;
  filter: saturate(1.08) contrast(1.08);
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(4, 16, 12, 0.96) 0%, rgba(4, 16, 12, 0.72) 48%, rgba(4, 16, 12, 0.9) 100%),
    linear-gradient(180deg, rgba(4, 16, 12, 0.08) 0%, #06130f 96%);
}

@media (max-width: 760px) {
  .hero-bg img {
    object-position: 66% center;
    opacity: 0.24;
  }
}

/* Image-led hero replacement: promo image, app buttons, TV answers console. */
.hero {
  width: min(1180px, calc(100% - 28px));
  min-height: 720px;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 430px);
  gap: clamp(28px, 4vw, 56px);
  padding: 70px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px -34px 14px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 14%, rgba(45, 237, 146, 0.18), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255, 193, 80, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(6, 27, 21, 0.92), rgba(3, 13, 10, 0.7) 54%, rgba(7, 32, 25, 0.86));
  border: 1px solid rgba(179, 247, 205, 0.1);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.38);
}

.hero-bg img {
  object-position: 54% center;
  opacity: 0.14;
  filter: saturate(1.08) contrast(1.12) blur(1px);
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(4, 16, 12, 0.9) 0%, rgba(4, 16, 12, 0.7) 46%, rgba(4, 16, 12, 0.92) 100%),
    radial-gradient(circle at 28% 40%, rgba(44, 235, 143, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(4, 16, 12, 0.05) 0%, #06130f 98%);
}

.hero-image-block {
  display: grid;
  justify-items: center;
  gap: 16px;
  align-self: center;
}

.hero-promo-card {
  width: min(470px, 100%);
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(179, 247, 205, 0.24);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(12, 36, 28, 0.78), rgba(2, 10, 8, 0.96));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5), 0 0 64px rgba(43, 229, 156, 0.12);
}

.hero-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 9, 0.03), rgba(2, 12, 9, 0.2));
  pointer-events: none;
}

.hero-promo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-download-card {
  width: min(470px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
  color: #06110e;
  text-align: center;
}

.hero-download-card strong {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.2;
}

.hero-download-card .install-pair {
  justify-content: center;
}

.hero-download-card .store-button {
  min-width: 150px;
}

.hero-copy-block,
.hero-fixture-strip,
.hero-actions {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 46px 0 48px;
  }

  .hero::before {
    inset: 18px -10px 10px;
    border-radius: 30px;
  }

  .hero-image-block {
    order: 1;
  }

  .hero-console {
    order: 2;
    width: min(620px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .hero {
    width: calc(100% - 20px);
    gap: 22px;
    padding: 30px 0 34px;
  }

  .hero::before {
    inset: 6px -4px 8px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 50% 2%, rgba(45, 237, 146, 0.2), transparent 34%),
      linear-gradient(180deg, rgba(8, 34, 27, 0.94), rgba(3, 13, 10, 0.9));
  }

  .hero-bg img {
    object-position: 48% top;
    opacity: 0.1;
  }

  .hero-promo-card,
  .hero-download-card {
    width: min(360px, 100%);
    border-radius: 22px;
  }

  .hero-download-card {
    padding: 13px 12px;
  }

  .hero-download-card .install-pair {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-download-card .store-button {
    min-width: 0;
    width: 100%;
    min-height: 44px;
  }

  .hero-console {
    width: 100%;
  }
}

/* Stable CSS icon for App Store buttons; avoids private glyph rendering issues. */
.store-icon {
  width: 14px;
  height: 22px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 3px;
  font-size: 0;
  line-height: 0;
}

.store-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

@media (max-width: 760px) {
  .hero-promo-card {
    width: min(320px, 100%);
  }

  .hero-promo-card img {
    aspect-ratio: 4 / 4.75;
    object-position: center top;
  }

  .hero-download-card {
    width: min(350px, 100%);
  }
}

/* Final footer upgrade and production-direction removal spacing. */
.site-footer {
  width: min(1180px, calc(100% - 28px));
  display: grid;
  gap: 26px;
  margin: 12px auto 0;
  padding: 34px 0 max(96px, calc(54px + env(safe-area-inset-bottom)));
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.footer-brand-block,
.footer-app-card,
.footer-links-grid {
  border: 1px solid rgba(179, 247, 205, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 237, 146, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(12, 36, 28, 0.86), rgba(4, 15, 12, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.footer-brand-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.footer .footer-logo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 0 34px rgba(78, 245, 235, 0.22);
}

.footer-brand-block strong,
.footer-app-card strong {
  display: block;
  color: #f4fff8;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.05;
  letter-spacing: 0;
}

.footer-brand-block p {
  max-width: 640px;
  margin: 10px 0 0;
  color: #b9cfc4;
  line-height: 1.65;
}

.footer-app-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
}

.footer-app-card > span,
.footer-links-grid h2 {
  margin: 0;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-app-card .install-pair {
  margin-top: 2px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px;
}

.footer-links-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links-grid a {
  width: fit-content;
  color: #dceee5;
  font-size: 15px;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links-grid a:hover {
  color: var(--mint);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
  color: #8fa79b;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-main,
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-app-card {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    width: calc(100% - 20px);
    gap: 14px;
    padding-top: 24px;
  }

  .footer-main,
  .footer-links-grid,
  .footer-brand-block {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-app-card,
  .footer-links-grid {
    border-radius: 22px;
    padding: 18px;
  }

  .footer-brand-block {
    justify-items: start;
  }

  .footer .footer-logo {
    width: 76px;
    height: 76px;
  }

  .footer-app-card .install-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-app-card .store-button {
    min-width: 0;
    width: 100%;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}

/* Make the hero promo image fill its visual box. */
.hero-image-block {
  width: 100%;
}

.hero-promo-card {
  width: min(620px, 100%);
  max-height: 680px;
}

.hero-promo-card img {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.hero-download-card {
  width: min(620px, 100%);
}

@media (max-width: 980px) {
  .hero-promo-card,
  .hero-download-card {
    width: min(560px, 100%);
  }

  .hero-promo-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .hero-image-block {
    width: 100%;
  }

  .hero-promo-card,
  .hero-download-card {
    width: 100%;
  }

  .hero-promo-card img {
    aspect-ratio: 4 / 5;
    object-position: center top;
  }
}

/* Mobile polish for today's World Cup TV answer cards. */
@media (max-width: 760px) {
  .hero-console {
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
    border-color: rgba(179, 247, 205, 0.2);
    background:
      radial-gradient(circle at 18% 0%, rgba(45, 237, 146, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(12, 34, 27, 0.96), rgba(5, 18, 14, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }

  .console-status {
    width: 100%;
    min-height: 34px;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(179, 247, 205, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 11px;
    letter-spacing: 0.07em;
    line-height: 1.15;
  }

  .console-status span {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 6px rgba(255, 100, 114, 0.15);
  }

  .hero-match {
    padding: 15px;
    border-radius: 22px;
    border-color: rgba(179, 247, 205, 0.22);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
      rgba(11, 32, 25, 0.94);
  }

  .match-meta-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    font-size: 12px;
  }

  .match-meta-top strong {
    font-size: 13px;
  }

  .match-meta-top span {
    color: #c7d9cf;
  }

  .hero-teams {
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 8px;
    margin: 18px 0 16px;
  }

  .hero-teams div {
    gap: 8px;
    min-width: 0;
  }

  .hero-teams strong {
    max-width: 112px;
    color: #f5fff8;
    font-size: 14px;
    line-height: 1.15;
  }

  .team-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  }

  .team-badge img {
    width: 44px;
    height: 44px;
  }

  .versus {
    width: 42px;
    height: 42px;
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    font-size: 12px;
  }

  .answer-row {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(53,232,138,0.16), rgba(53,232,138,0.08));
  }

  .answer-row span {
    color: #b9cfc4;
    font-size: 11px;
    line-height: 1.25;
  }

  .answer-row strong {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.25;
  }

  .mini-feed {
    gap: 8px;
  }

  .mini-feed article {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "time match"
      "time channel";
    column-gap: 12px;
    align-content: center;
    align-items: center;
    padding: 13px;
    border-radius: 18px;
    border-color: rgba(179, 247, 205, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  }

  .mini-feed article span {
    grid-area: time;
    min-width: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 9px;
    border-radius: 999px;
    background: rgba(45, 237, 146, 0.12);
    color: var(--mint);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .mini-feed article strong {
    grid-area: match;
    margin: 0;
    color: #f5fff8;
    font-size: 15px;
    line-height: 1.2;
  }

  .mini-feed article p {
    grid-area: channel;
    margin: 4px 0 0;
    color: #b9cfc4;
    font-size: 13px;
  }
}

/* Keep sticky app CTA from covering the mobile fixture cards. */
@media (max-width: 760px) {
  .hero-console {
    padding-bottom: 124px;
  }
}

/* Compact mobile layout for today's full World Cup fixture cards. */
@media (max-width: 760px) {
  .world-cup-section {
    padding-top: 38px;
  }

  .world-heading {
    margin-bottom: 20px;
  }

  .world-heading h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .world-heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .today-fixtures {
    gap: 14px;
  }

  .real-fixture-card {
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(53, 232, 138, 0.08), rgba(255,255,255,0.035) 44%, rgba(245, 200, 90, 0.055)),
      rgba(8, 25, 19, 0.9);
  }

  .fixture-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .fixture-top strong {
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #06130f;
    background: var(--gold);
    font-size: 11px;
    text-align: left;
    letter-spacing: 0.04em;
  }

  .fixture-teams {
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(179, 247, 205, 0.14);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    font-size: 17px;
    line-height: 1.15;
  }

  .fixture-team,
  .fixture-team:last-child {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .fixture-team:last-child {
    grid-template-columns: minmax(0, 1fr) 36px;
    justify-items: end;
    text-align: right;
  }

  .fixture-team:last-child img {
    order: 2;
  }

  .fixture-team img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.3));
  }

  .fixture-team strong {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .fixture-teams em {
    min-width: 32px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 11px;
  }

  .fixture-info {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fixture-info div {
    min-height: 0;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 15px;
    background: rgba(255,255,255,0.048);
  }

  .fixture-info span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .fixture-info strong {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .coverage-metrics {
    display: none;
  }

  .broadcaster-strip {
    gap: 6px;
  }

  .broadcaster-strip span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
    border-color: rgba(179, 247, 205, 0.16);
    background: rgba(53, 232, 138, 0.07);
  }

  .broadcaster-strip span:nth-child(n+5) {
    display: none;
  }

  .channel-dropdown {
    border-radius: 16px;
  }

  .channel-dropdown summary {
    min-height: 50px;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    gap: 8px;
    padding: 0 12px;
  }

  .channel-dropdown summary span {
    font-size: 14px;
  }

  .channel-dropdown summary strong {
    font-size: 11px;
  }
}

/* Final name-fit pass for compact mobile fixture rows. */
@media (max-width: 760px) {
  .fixture-team,
  .fixture-team:last-child {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 7px;
  }

  .fixture-team:last-child {
    grid-template-columns: minmax(0, 1fr) 32px;
  }

  .fixture-team img {
    width: 32px;
    height: 32px;
  }

  .fixture-team strong {
    font-size: 14px;
    line-height: 1.08;
  }

  .fixture-teams em {
    min-width: 30px;
    min-height: 30px;
  }
}

/* Elevated upcoming World Cup fixtures section. */
.upcoming-grid {
  align-items: stretch;
}

.upcoming-card {
  position: relative;
  display: grid;
  align-content: stretch;
  gap: 14px;
  overflow: hidden;
  border-color: rgba(179, 247, 205, 0.16);
  background:
    radial-gradient(circle at 16% 0%, rgba(53, 232, 138, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(13, 34, 27, 0.86), rgba(5, 17, 13, 0.92));
}

.upcoming-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(53, 232, 138, 0.13), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.upcoming-card:hover::before {
  opacity: 1;
}

.upcoming-card > * {
  position: relative;
}

.upcoming-card p {
  margin: 0;
  color: #b9cfc4;
  font-size: 14px;
}

@media (min-width: 1061px) {
  .upcoming-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .upcoming-card {
    min-height: 245px;
  }
}

@media (max-width: 760px) {
  #live.section {
    padding-top: 46px;
  }

  #live .section-heading {
    margin-bottom: 18px;
  }

  #live .section-heading h2 {
    max-width: 360px;
    font-size: clamp(33px, 10vw, 42px);
    line-height: 1.02;
  }

  #live .section-heading p {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.55;
  }

  .upcoming-grid {
    gap: 10px;
  }

  .upcoming-card {
    min-height: 0;
    gap: 10px;
    padding: 13px;
    border-radius: 20px;
  }

  .upcoming-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .upcoming-card-top > span {
    font-size: 10px;
    letter-spacing: 0.055em;
    line-height: 1.2;
  }

  .upcoming-card-top > strong {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }

  .upcoming-matchup {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(179, 247, 205, 0.13);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
  }

  .upcoming-matchup div,
  .upcoming-matchup div:last-child {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .upcoming-matchup div:last-child {
    grid-template-columns: minmax(0, 1fr) 30px;
    justify-items: end;
    text-align: right;
  }

  .upcoming-matchup div:last-child img {
    order: 2;
  }

  .upcoming-matchup img {
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 11px;
    filter: drop-shadow(0 7px 10px rgba(0,0,0,0.28));
  }

  .upcoming-matchup strong {
    margin: 0;
    font-size: 14px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .upcoming-matchup em {
    width: 28px;
    height: 28px;
    padding: 0;
    justify-self: center;
    font-size: 10px;
  }

  .upcoming-card > p {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 27px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(179, 247, 205, 0.13);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #cfe3d7;
    font-size: 12px;
    line-height: 1.2;
  }

  .mini-tv-dropdown {
    border-radius: 15px;
    background: rgba(3, 14, 11, 0.72);
  }

  .mini-tv-dropdown summary {
    min-height: 44px;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    padding: 0 11px;
    font-size: 13px;
  }

  .mini-tv-dropdown summary strong {
    min-height: 22px;
    padding: 0 7px;
    font-size: 9px;
  }

  .mini-tv-dropdown > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 7px 9px;
    padding: 0 11px 12px;
  }

  .mini-tv-dropdown > div span,
  .mini-tv-dropdown > div strong {
    font-size: 12px;
  }

  .mini-tv-dropdown > div a {
    grid-column: 1 / -1;
    margin-top: 2px;
    font-size: 12px;
  }
}

/* Mobile safe-space so sticky app CTA does not cover upcoming fixture cards. */
@media (max-width: 760px) {
  #live {
    padding-bottom: 150px;
  }
}

/* Compact mobile global coverage section. */
@media (max-width: 760px) {
  .global-section {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  .global-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(5, 20, 15, 0.92), rgba(5, 20, 15, 0.82)),
      url("./wtgo-assets/promo-01-watch-any-game.webp") center/cover;
  }

  .global-copy {
    max-width: none;
  }

  .global-panel span {
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .global-panel h2 {
    max-width: 330px;
    margin-top: 8px;
    font-size: clamp(28px, 8.4vw, 34px);
    line-height: 1.03;
  }

  .global-panel p {
    max-width: 330px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .global-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .global-stats article {
    min-height: 86px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(4, 17, 13, 0.78);
  }

  .global-stats strong {
    font-size: clamp(27px, 8.4vw, 34px);
    line-height: 0.95;
  }

  .global-stats span {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.1;
  }

  .global-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .global-actions .store-button {
    flex: 1 1 132px;
    min-height: 38px;
    padding: 7px 10px;
    border-radius: 9px;
  }

  .global-media {
    order: 2;
    width: min(100%, 292px);
    padding: 6px;
    border-radius: 19px;
  }

  .global-media img {
    max-height: 380px;
    border-radius: 14px;
  }

  .global-stats {
    order: 3;
  }
}


/* SEO Engine homepage discovery section. */
.seo-intent-section {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  background:
    radial-gradient(circle at 18% 10%, rgba(53,232,138,0.15), transparent 34%),
    linear-gradient(135deg, rgba(9, 30, 23, 0.96), rgba(4, 15, 12, 0.94));
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 14px;
}

.intent-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(179, 247, 205, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.intent-card:hover {
  transform: translateY(-2px);
  border-color: rgba(53,232,138,0.45);
  background: rgba(53,232,138,0.09);
}

.intent-card span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.15;
}

.intent-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.intent-card--primary {
  background: linear-gradient(135deg, rgba(53,232,138,0.18), rgba(255,210,79,0.08));
}

.seo-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.seo-link-row a {
  padding: 8px 11px;
  border: 1px solid rgba(179, 247, 205, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #dff7e8;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.discovery-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(179, 247, 205, 0.16);
  border-radius: 28px;
  background: #06130f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 70px rgba(0,0,0,0.28);
}

.discovery-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.discovery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,12,9,0.08), rgba(3,12,9,0.76));
}

.watch-paths {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 9px;
}

.watch-paths article {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(4,17,13,0.78);
  backdrop-filter: blur(10px);
}

.watch-paths span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.watch-paths strong {
  font-size: 16px;
}

.watch-paths em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

@media (max-width: 760px) {
  .seo-intent-section {
    gap: 18px;
    padding: 18px;
  }

  .intent-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 16px 0 12px;
  }

  .intent-card {
    min-height: 94px;
    padding: 13px;
    border-radius: 16px;
  }

  .intent-card strong {
    font-size: 17px;
  }

  .seo-link-row {
    gap: 6px;
    margin-bottom: 16px;
  }

  .seo-link-row a {
    padding: 7px 9px;
    font-size: 11px;
  }

  .discovery-panel {
    min-height: 390px;
    border-radius: 22px;
  }

  .watch-paths {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .watch-paths article {
    padding: 10px 11px;
    border-radius: 14px;
  }
}


/* Dynamic RSS Sports Feed homepage section. */
.sports-feed-section {
  position: relative;
  overflow: hidden;
}

.sports-feed-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 18px;
}

.feed-filter {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(179,247,205,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #dff7e8;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.feed-filter:hover,
.feed-filter.is-active {
  border-color: rgba(53,232,138,0.48);
  background: rgba(53,232,138,0.14);
  transform: translateY(-1px);
}

.sports-feed-status {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sports-feed-status.is-hidden {
  display: none;
}

.sports-feed-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
  gap: 14px;
}

.sports-feed-card,
.feed-skeleton {
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(179,247,205,0.15);
  border-radius: 22px;
  background: rgba(10,28,22,0.82);
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
}

.feed-skeleton {
  position: relative;
  background: linear-gradient(110deg, rgba(255,255,255,0.04), rgba(53,232,138,0.10), rgba(255,255,255,0.04));
  background-size: 220% 100%;
  animation: feedPulse 1.4s ease-in-out infinite;
}

@keyframes feedPulse {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.sports-feed-card:first-child {
  grid-row: span 2;
}

.sports-feed-card a {
  color: inherit;
  text-decoration: none;
}

.feed-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(53,232,138,0.12), rgba(255,210,79,0.08));
}

.feed-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feed-body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.feed-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.feed-badge,
.feed-source {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-badge {
  background: rgba(53,232,138,0.16);
  color: var(--mint);
}

.feed-source {
  background: rgba(255,255,255,0.06);
  color: #dff7e8;
}

.feed-time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.feed-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
}

.sports-feed-card:first-child .feed-title {
  font-size: clamp(24px, 2.7vw, 34px);
}

.feed-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.feed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.feed-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.feed-read {
  background: #35e88a;
  color: #03110c !important;
}

.feed-related {
  border: 1px solid rgba(179,247,205,0.16);
  color: #dff7e8 !important;
  background: rgba(255,255,255,0.045);
}

.sports-feed-context {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.sports-feed-context a {
  padding: 9px 12px;
  border: 1px solid rgba(179,247,205,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #dff7e8;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .sports-feed-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sports-feed-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .sports-feed-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .feed-filter {
    flex: 0 0 auto;
  }

  .sports-feed-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sports-feed-card,
  .feed-skeleton {
    min-height: 0;
    border-radius: 18px;
  }

  .sports-feed-card:not(:first-child) .feed-image {
    display: none;
  }

  .sports-feed-card:first-child .feed-title,
  .feed-title {
    font-size: 18px;
  }

  .feed-body {
    gap: 8px;
    padding: 13px;
  }

  .feed-excerpt {
    font-size: 13px;
    line-height: 1.42;
  }
}

/* Header and persistent app CTA polish. */
.site-header {
  min-height: 86px;
  padding: 12px 16px;
  border-color: rgba(95, 255, 218, 0.22);
  background:
    radial-gradient(circle at 7% 0%, rgba(78, 245, 235, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(5, 23, 19, 0.94), rgba(2, 11, 9, 0.9));
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(48, 232, 139, 0.05);
}

.brand {
  justify-self: start;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 17px;
  object-fit: cover;
  image-rendering: auto;
  transform: translateZ(0);
  filter: saturate(1.12) contrast(1.08);
  box-shadow:
    0 0 0 1px rgba(95, 255, 218, 0.38),
    0 0 26px rgba(78, 245, 235, 0.42),
    0 14px 30px rgba(0, 0, 0, 0.36);
}

.header-install {
  justify-content: end;
}

.store-button {
  min-width: 154px;
  min-height: 46px;
  gap: 10px;
  padding: 8px 14px;
  border-color: rgba(255,255,255,0.28);
  background:
    linear-gradient(180deg, rgba(15,18,17,0.98), rgba(0,0,0,0.98));
  box-shadow:
    0 14px 34px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.store-button span:last-child {
  font-size: 14px;
  line-height: 0.96;
  letter-spacing: 0;
}

.store-button small {
  margin-bottom: 2px;
  color: rgba(255,255,255,0.86);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-icon,
.phone-icon {
  color: #ffffff;
  opacity: 1;
}

.play-icon {
  flex: 0 0 auto;
}

.hero-download-card {
  display: none !important;
}

.sticky-install {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 80;
  margin: 0;
}

body {
  padding-bottom: 108px;
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 16px);
    min-height: 138px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 50% -20%, rgba(78, 245, 235, 0.24), transparent 34%),
      linear-gradient(180deg, rgba(5, 26, 21, 0.96), rgba(1, 10, 8, 0.94));
  }

  .brand {
    justify-self: center;
  }

  .brand-mark {
    width: 74px;
    height: 74px;
    border-radius: 19px;
  }

  .header-install {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .header-install .store-button {
    min-height: 42px;
    min-width: 0;
    padding: 7px 8px;
    justify-content: center;
    border-radius: 12px;
  }

  .header-install .store-button span:last-child {
    font-size: 11px;
    line-height: 0.95;
  }

  .header-install .store-button small {
    font-size: 7.5px;
  }

  .sticky-install {
    position: fixed;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    z-index: 90;
    margin: 0;
  }

  body {
    padding-bottom: 142px;
  }
}

/* Colour rhythm polish: premium sports-tech without an all-dark page. */
body {
  background:
    radial-gradient(circle at 12% -8%, rgba(53, 232, 138, 0.22), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(104, 183, 255, 0.16), transparent 31%),
    linear-gradient(180deg, #06110e 0%, #071511 24%, #0b1713 42%, #07110e 63%, #0a1411 100%);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.answer-strip {
  position: relative;
  padding: 2px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(53,232,138,0.45), rgba(245,200,90,0.32), rgba(104,183,255,0.34));
}

.answer-strip article {
  border-color: rgba(255,255,255,0.16);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.07), rgba(6, 23, 18, 0.88)),
    rgba(8, 32, 24, 0.84);
}

.answer-strip article:nth-child(1) span { color: #67f6ad; }
.answer-strip article:nth-child(2) span { color: #ffd76a; }
.answer-strip article:nth-child(3) span { color: #82c7ff; }
.answer-strip article:nth-child(4) span { color: #ff8c9a; }

.world-cup-section {
  position: relative;
}

.world-cup-section::before,
#live.section::before,
.sports-feed-section::before,
.seo-intent-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.world-cup-section::before {
  inset: 38px -32px auto -32px;
  height: 310px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 36%, rgba(245, 200, 90, 0.18), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(53, 232, 138, 0.14), transparent 34%);
  z-index: -1;
}

.real-fixture-card {
  border-color: rgba(255, 215, 106, 0.34);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 215, 106, 0.15), transparent 35%),
    linear-gradient(150deg, rgba(14, 52, 39, 0.94), rgba(7, 22, 18, 0.93) 48%, rgba(28, 43, 54, 0.86)),
    var(--surface);
}

.lead-fixture {
  border-color: rgba(53, 232, 138, 0.48);
  background:
    radial-gradient(circle at 17% 16%, rgba(53, 232, 138, 0.18), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(245, 200, 90, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(11, 60, 42, 0.96), rgba(5, 22, 17, 0.92) 50%, rgba(20, 38, 52, 0.86));
}

.broadcaster-strip span:nth-child(3n + 1) {
  background: rgba(53, 232, 138, 0.16);
  border-color: rgba(53, 232, 138, 0.28);
}

.broadcaster-strip span:nth-child(3n + 2) {
  background: rgba(245, 200, 90, 0.15);
  border-color: rgba(245, 200, 90, 0.28);
}

.broadcaster-strip span:nth-child(3n) {
  background: rgba(104, 183, 255, 0.14);
  border-color: rgba(104, 183, 255, 0.27);
}

#live.section {
  position: relative;
  padding: 68px 24px;
  border: 1px solid rgba(104, 183, 255, 0.15);
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 2%, rgba(104, 183, 255, 0.18), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(245, 200, 90, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(10, 27, 29, 0.86), rgba(4, 15, 13, 0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 26px 90px rgba(0,0,0,0.2);
}

#live.section::before {
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(53,232,138,0.16), rgba(104,183,255,0.14), rgba(245,200,90,0.12));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.upcoming-card {
  border-color: rgba(134, 202, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(12, 39, 43, 0.92), rgba(8, 26, 22, 0.94)),
    rgba(255,255,255,0.04);
}

.upcoming-card:nth-child(3n + 1)::before { background: linear-gradient(90deg, #35e88a, transparent); }
.upcoming-card:nth-child(3n + 2)::before { background: linear-gradient(90deg, #f5c85a, transparent); }
.upcoming-card:nth-child(3n)::before { background: linear-gradient(90deg, #68b7ff, transparent); }

.global-panel {
  border-color: rgba(91, 244, 205, 0.26);
  background:
    linear-gradient(100deg, rgba(3, 16, 13, 0.92) 0%, rgba(8, 56, 42, 0.72) 43%, rgba(14, 28, 45, 0.76) 100%),
    url("./wtgo-assets/promo-01-watch-any-game.webp") center/cover;
}

.global-media {
  background:
    radial-gradient(circle at 22% 12%, rgba(245, 200, 90, 0.22), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(104, 183, 255, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(12, 70, 49, 0.9), rgba(1, 10, 8, 0.92));
}

.sports-feed-section {
  width: min(1220px, calc(100% - 28px));
  margin-top: 72px;
  padding: 54px 28px;
  border: 1px solid rgba(8, 42, 32, 0.12);
  border-radius: 34px;
  color: #082018;
  background:
    radial-gradient(circle at 4% 8%, rgba(53,232,138,0.18), transparent 28%),
    radial-gradient(circle at 96% 0%, rgba(104,183,255,0.18), transparent 24%),
    linear-gradient(180deg, #f4fff8 0%, #e7f8ef 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,0.24);
}

.sports-feed-section::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(8, 42, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 42, 32, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 76%);
}

.sports-feed-section .section-heading span,
.sports-feed-section .feed-filter.is-active,
.sports-feed-section .feed-badge {
  color: #063d2a;
}

.sports-feed-section .section-heading h2,
.sports-feed-section .feed-title,
.sports-feed-section .feed-title a {
  color: #061a14;
}

.sports-feed-section .section-heading p,
.sports-feed-section .feed-excerpt,
.sports-feed-section .feed-source,
.sports-feed-section .feed-time {
  color: #456457;
}

.sports-feed-section .feed-filter {
  border-color: rgba(8, 42, 32, 0.16);
  background: rgba(255,255,255,0.7);
  color: #173d30;
}

.sports-feed-section .feed-filter:hover,
.sports-feed-section .feed-filter.is-active {
  border-color: rgba(5, 112, 76, 0.34);
  background: #d8f8e5;
}

.sports-feed-section .sports-feed-card,
.sports-feed-section .feed-skeleton {
  border-color: rgba(8, 42, 32, 0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 48px rgba(8, 42, 32, 0.12);
}

.sports-feed-section .feed-read {
  color: #061a14;
  background: #35e88a;
}

.sports-feed-section .feed-related,
.sports-feed-context a {
  border-color: rgba(8, 42, 32, 0.16);
  background: rgba(255,255,255,0.72);
  color: #174333;
}

.sports-feed-section .feed-related {
  border-color: rgba(5, 112, 76, 0.24);
  background: #eef9f2;
  color: #0b4b35 !important;
}

.seo-intent-section {
  border-color: rgba(245, 200, 90, 0.2);
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 200, 90, 0.15), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(53,232,138,0.13), transparent 34%),
    linear-gradient(135deg, rgba(18, 31, 25, 0.98), rgba(7, 19, 17, 0.95));
}

.intent-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(104,183,255,0.13), rgba(255,255,255,0.05));
}

.intent-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(245,200,90,0.13), rgba(255,255,255,0.05));
}

.intent-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(255,100,114,0.12), rgba(255,255,255,0.05));
}

.site-footer {
  position: relative;
  border-color: rgba(245, 200, 90, 0.16);
  background:
    radial-gradient(circle at 6% 0%, rgba(245,200,90,0.13), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(104,183,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 22, 20, 0.98), rgba(4, 12, 10, 0.98));
}

@media (max-width: 760px) {
  .answer-strip {
    padding: 1px;
    border-radius: 22px;
  }

  #live.section,
  .sports-feed-section {
    width: calc(100% - 20px);
    padding: 28px 14px;
    border-radius: 24px;
  }

  .sports-feed-section {
    margin-top: 44px;
    overflow: hidden;
  }

  .sports-feed-toolbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 6px;
  }

  .sports-feed-toolbar .feed-filter {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .sports-feed-section .feed-body {
    background: transparent;
  }

  .global-panel {
    background:
      linear-gradient(180deg, rgba(5, 25, 20, 0.9), rgba(7, 36, 31, 0.78), rgba(7, 20, 26, 0.9)),
      url("./wtgo-assets/promo-01-watch-any-game.webp") center/cover;
  }
}
