: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: 50%;
}

.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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.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-teams span:last-child {
  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;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.upcoming-grid article {
  min-height: 170px;
  align-content: end;
}

.upcoming-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.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;
}

.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;
}

@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 {
    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: none;
  }

  .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;
  }
}
