:root {
  --bg: #f5efe2;
  --bg-strong: #efe2c1;
  --surface: rgba(255, 250, 241, 0.9);
  --surface-strong: #fffaf1;
  --line: rgba(19, 49, 92, 0.12);
  --line-strong: rgba(19, 49, 92, 0.24);
  --text: #0f2342;
  --muted: #596b88;
  --accent: #0d7c66;
  --accent-soft: #d9f0eb;
  --gold: #c9932d;
  --gold-soft: #f4e0ab;
  --red: #cf5141;
  --red-soft: #ffe1d8;
  --navy: #13315c;
  --navy-soft: #e3ebfa;
  --shadow: 0 26px 60px rgba(38, 57, 88, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 147, 45, 0.28), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(13, 124, 102, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f2e0 0%, #f7ecd0 36%, #efddb2 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 85%);
  opacity: 0.2;
}

body::after {
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.55), transparent 16%);
}

.page-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 56px;
  animation: pageRise 700ms ease;
}

.hero,
.card,
.experience-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(248, 241, 223, 0.94)),
    var(--surface);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 147, 45, 0.18), transparent 22%),
    radial-gradient(circle at 84% 84%, rgba(13, 124, 102, 0.16), transparent 18%);
  pointer-events: none;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.93;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.hero-text {
  max-width: 50ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #27528f);
  border: 1px solid transparent;
  color: #fff7de;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(19, 49, 92, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(19, 49, 92, 0.22);
}

.hero-link-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.hero-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-stage {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-stage-top,
.hero-stage-bottom {
  display: grid;
  gap: 12px;
}

.hero-stage-label,
.hero-stat-label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.host-pill-row,
.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.host-pill,
.city-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(19, 49, 92, 0.07);
  border: 1px solid rgba(19, 49, 92, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-stage-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at center 12%, rgba(255, 240, 189, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(9, 28, 56, 0.98), rgba(9, 33, 61, 0.98)),
    var(--navy);
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.hero-stage-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
}

.hero-stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.1) 35%, transparent 65%);
  transform: translateX(-120%);
  animation: heroSweep 7s ease-in-out infinite;
}

.stadium-lights {
  position: absolute;
  top: -8%;
  width: 40%;
  height: 80%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 60%);
  filter: blur(10px);
  opacity: 0.72;
  transform-origin: top;
}

.stadium-lights-left {
  left: -6%;
  clip-path: polygon(0 0, 100% 0, 28% 100%, 0 100%);
}

.stadium-lights-right {
  right: -6%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 72% 100%);
}

.crowd-wave {
  position: absolute;
  bottom: 62px;
  width: 44%;
  height: 78px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 214, 102, 0.22), transparent 24%),
    radial-gradient(circle at 36% 50%, rgba(75, 211, 173, 0.16), transparent 24%),
    radial-gradient(circle at 64% 50%, rgba(255, 214, 102, 0.18), transparent 24%),
    radial-gradient(circle at 90% 50%, rgba(75, 211, 173, 0.14), transparent 24%);
  filter: blur(2px);
  opacity: 0.9;
  animation: crowdPulse 3.8s ease-in-out infinite;
}

.crowd-wave-left {
  left: -4%;
}

.crowd-wave-right {
  right: -4%;
  animation-delay: 1.2s;
}

.hero-poster-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #fff7de;
  text-align: center;
  transform: translate(calc(var(--parallax-x) * 0.35), calc(var(--parallax-y) * 0.35));
  transition: transform 180ms ease;
}

.poster-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 247, 222, 0.72);
}

.hero-poster-copy strong {
  max-width: 12ch;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.poster-subcopy {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 222, 0.8);
}

.trophy-illustration {
  position: relative;
  z-index: 1;
  width: min(74%, 330px);
  margin-top: 10px;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.28));
  animation: pulseGlow 4.4s ease-in-out infinite;
  transition: transform 180ms ease;
}

.trophy-illustration svg {
  display: block;
  width: 100%;
  height: auto;
}

.pitch-arc {
  position: absolute;
  bottom: -52px;
  width: 140%;
  height: 170px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  opacity: 0.5;
}

.hero-stage-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat,
.summary-card,
.story-card,
.spotlight-card,
.today-card,
.match-group,
.experience-card,
.fan-guide-card {
  border: 1px solid var(--line);
}

.hero-stat {
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.pulse-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
}

.ticker-strip {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(19, 49, 92, 0.12);
  background: linear-gradient(90deg, rgba(19, 49, 92, 0.95), rgba(31, 74, 132, 0.95));
  color: #fff7de;
  box-shadow: var(--shadow);
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 12px 18px;
  animation: tickerMove 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f7d978;
  box-shadow: 0 0 10px rgba(247, 217, 120, 0.8);
}

.fixture-banner {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 35, 66, 0.98), rgba(18, 54, 98, 0.98));
  color: #fff8e8;
}

.fixture-banner .section-kicker,
.fixture-banner h2,
.fixture-banner p {
  color: inherit;
}

.fixture-banner-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 248, 232, 0.78);
}

.fixture-banner-track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.fixture-banner-track span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.experience-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 147, 45, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.94));
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 124, 102, 0.12), transparent 72%);
  animation: driftGlow 7s ease-in-out infinite;
}

.experience-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e4ba61);
  color: #fffaf1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.experience-card strong,
.fan-guide-card strong,
.insight-title {
  display: block;
  line-height: 1.32;
}

.experience-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.pulse-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.summary-card {
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.interactive-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(38, 57, 88, 0.12);
  border-color: rgba(201, 147, 45, 0.3);
}

.summary-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.summary-value {
  font-size: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
}

.spotlight-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 22px;
  margin-top: 22px;
}

.matches-panel {
  grid-column: 1 / -1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.pill-live {
  color: #082018;
  background: linear-gradient(135deg, #9cebcf, #d8f8e9);
  border-color: transparent;
}

.pill-gold {
  color: #6b2a11;
  background: linear-gradient(135deg, #ffd97d, #fff0c6);
  border-color: transparent;
}

.toolbar,
.field,
.spotlight-root,
.today-root,
.story-stack,
.match-groups,
.fan-guide {
  display: grid;
  gap: 16px;
}

.field {
  gap: 8px;
}

.field span,
.meta-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(19, 49, 92, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}

.fan-guide-card {
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 244, 0.92));
}

.host-city-block {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.empty-state {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.date-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.date-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.date-chip:hover {
  transform: translateY(-1px);
}

.date-chip-active {
  color: #fff8e8;
  background: linear-gradient(135deg, var(--navy), #27528f);
  border-color: transparent;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  border-radius: 28px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(201, 147, 45, 0.22), transparent 26%),
    linear-gradient(145deg, #fffaf0, #f4ead1);
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 147, 45, 0.24), transparent 70%);
  animation: driftGlow 6s ease-in-out infinite;
}

.spotlight-teams,
.today-teams,
.team-block,
.meta-block,
.today-side,
.insight-block {
  display: grid;
  gap: 12px;
  align-content: start;
}

.spotlight-team {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
}

.spotlight-team .team-flag {
  width: 52px;
  height: 36px;
  border-radius: 10px;
}

.spotlight-team-name {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.spotlight-score {
  min-width: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--navy);
  color: #fff9ec;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.spotlight-meta {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 4px 0 4px 12px;
  border-left: 1px solid var(--line);
}

.spotlight-copy {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.story-card {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  position: relative;
  overflow: hidden;
}

.story-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

.story-card-accent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--red));
}

.today-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  animation: cardFloat 5s ease-in-out infinite;
}

.today-headline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.team-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
}

.team-flag {
  width: 38px;
  height: 26px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(19, 49, 92, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.team-name,
.match-group-header h3 {
  font-weight: 700;
}

.badge-mini {
  min-width: 38px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(19, 49, 92, 0.08);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.status-chip {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-live {
  color: #6b2a11;
  background: var(--gold-soft);
}

.status-finished {
  color: #083126;
  background: #c9f4e6;
}

.status-scheduled {
  color: var(--navy);
  background: var(--navy-soft);
}

.meta-value {
  font-size: 0.96rem;
  font-weight: 700;
}

.match-group {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.match-group-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.match-list {
  display: grid;
}

.match-card {
  display: grid;
  grid-template-columns: 1.05fr 0.78fr 0.9fr;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.3));
}

.match-card-live {
  box-shadow: inset 4px 0 0 var(--gold);
  animation: liveGlow 2.4s ease-in-out infinite;
}

.match-card:last-child {
  border-bottom: none;
}

.insight-block {
  padding: 16px;
  border-radius: 18px;
  background: rgba(19, 49, 92, 0.04);
}

.match-details {
  border-top: 1px dashed var(--line-strong);
  padding-top: 10px;
}

.match-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.match-details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.reveal-card {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.84;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    transform: translateX(-120%);
  }

  45%,
  55% {
    transform: translateX(120%);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes driftGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-18px, -10px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes liveGlow {
  0%,
  100% {
    box-shadow: inset 4px 0 0 var(--gold), 0 0 0 rgba(201, 147, 45, 0);
  }

  50% {
    box-shadow: inset 4px 0 0 var(--gold), 0 0 22px rgba(201, 147, 45, 0.18);
  }
}

@keyframes crowdPulse {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-4px) scaleX(1.03);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .hero,
  .spotlight-grid,
  .content-grid,
  .pulse-strip,
  .fixture-banner,
  .spotlight-card,
  .today-card,
  .match-card,
  .experience-strip {
    grid-template-columns: 1fr;
  }

  .hero-stage-bottom,
  .pulse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotlight-meta {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 100%);
    padding-top: 14px;
  }

  .hero,
  .card,
  .experience-card {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-ribbon,
  .pulse-grid,
  .hero-stage-bottom {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .spotlight-team {
    grid-template-columns: 42px 1fr auto;
  }

  .spotlight-team .team-flag {
    width: 42px;
    height: 30px;
  }

  .fixture-banner-track {
    justify-content: flex-start;
  }
}
