/* ================================================================
   V2 — MATCHDAY POSTER · v2.1
   - Sports World display font (user supplied)
   - Clean cream hero (no halftone noise), bold radial spotlight,
     big pitch-line arcs, transparent-bg mascots
   - Tokenomics redone as a Match-Report panel with inline SVG icons
     and animated fill-bars
   - More live motion: rolling ball, flag confetti rain, pulsing LIVE chip
   ================================================================ */

@font-face {
  font-family: "SportsWorld";
  src: url("Assets/fonts/Sports%20World-Regular.otf") format("opentype"),
    url("Assets/fonts/Sports%20World-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --mx: #0b6b3a;
  --mx-deep: #06401f;
  --ca: #d52b1e;
  --ca-deep: #8a1810;
  --us: #1e2b88;
  --us-deep: #0d174a;
  --gold: #d9a520;
  --gold-bright: #ffd84d;
  --cream: #f5ecd6;
  --cream-2: #eadfc4;
  --cream-3: #dfd2b3;
  --ink: #12100c;
  --ink-dim: #57513f;
  --line: rgba(18, 16, 12, 0.14);
  --line-strong: rgba(18, 16, 12, 0.44);
  --focus: #1e2b88;
  --maxw: 1280px;
  --pad-safe-b: env(safe-area-inset-bottom, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Libre Franklin", Georgia, serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}
.stencil {
  font-family: "Staatliches", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mono-ui {
  font-family: "Bungee", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============ DECORATIONS ============ */
.flag-stripe {
  display: flex;
  height: 6px;
  width: 100%;
}
.flag-stripe span {
  flex: 1;
}
.flag-stripe span.m {
  background: var(--mx);
}
.flag-stripe span.c {
  background: var(--ca);
}
.flag-stripe span.u {
  background: var(--us);
}
.flag-stripe.thick {
  height: 10px;
}

/* ============ TOP TICKER ============ */
.top {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: stretch;
  gap: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  overflow: hidden;
  height: 36px;
}
.top .ticker-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.top .ticker {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
  will-change: transform;
  padding-left: 100%;
}
.top .ticker span {
  color: rgba(245, 236, 214, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top .ticker .hot {
  color: var(--gold-bright);
}
.top .ticker svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.top .ticker img.ball {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
  animation: spin 2.6s linear infinite;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}
.top .ticker .live {
  color: var(--gold-bright);
}
.top .ticker .live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ca);
  animation: pulse 1.6s infinite;
  display: inline-block;
  margin-right: 8px;
}
@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.9);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.sound-btn {
  border: none;
  background: var(--ca);
  color: var(--cream);
  padding: 0 16px;
  font-family: "Staatliches", sans-serif;
  letter-spacing: 0.18em;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 116px;
  transition: background 0.18s;
  border-left: 1px solid rgba(245, 236, 214, 0.18);
  cursor: pointer;
}
.sound-btn:hover {
  background: var(--ca-deep);
}
.sound-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sound-btn[aria-pressed="false"] .wave {
  opacity: 0.35;
}
.sound-btn[aria-pressed="false"] .mute-x {
  opacity: 1;
}
.sound-btn[aria-pressed="true"] .mute-x {
  opacity: 0;
}
.mute-x,
.wave {
  transition: opacity 0.2s;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.logo-ball {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.logo-mark:hover .logo-ball {
  transform: rotate(220deg);
}
.logo-text {
  line-height: 1.1;
}
.logo-text b {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 22px;
  display: block;
  letter-spacing: 0.04em;
}
.logo-text span {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 2px;
  align-items: center;
}
.menu a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  padding: 12px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  color: var(--ink);
}
.menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  background: var(--ca);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.menu a:hover {
  background: rgba(18, 16, 12, 0.04);
}
.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  border: 2px solid var(--ink);
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--ca);
  border-color: var(--ca);
}
.nav-cta:active {
  transform: translateY(1px);
}
.nav-cta svg {
  width: 14px;
  height: 14px;
}

/* ============ HERO — CLEAN, ACTIVE ============ */
.hero {
  position: relative;
  padding: 64px 24px 100px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: radial-gradient(
      60% 48% at 50% 0%,
      rgba(217, 165, 32, 0.22) 0%,
      rgba(217, 165, 32, 0) 60%
    ),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
/* big centre-circle + halfway-line arcs */
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: min(1400px, 140vw);
  height: 900px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 900' fill='none' stroke='%2312100C' stroke-width='3'><circle cx='700' cy='520' r='260' opacity='.28'/><circle cx='700' cy='520' r='6' fill='%2312100C' opacity='.35'/><line x1='0' y1='520' x2='1400' y2='520' opacity='.2'/><path d='M 260 520 A 200 200 0 0 1 460 320' opacity='.22'/><path d='M 940 320 A 200 200 0 0 1 1140 520' opacity='.22'/></svg>");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after {
  /* subtle spotlight */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    70% 40% at 50% 10%,
    rgba(255, 216, 77, 0.18),
    transparent 65%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 32px;
  align-items: start;
}

/* Live chip → X link */
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  margin-bottom: 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.live-chip:hover {
  background: #000;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--gold-bright);
}
.live-chip:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--gold-bright);
  transition-duration: 60ms;
}
.live-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ca);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
.live-chip b {
  color: var(--gold-bright);
  margin-right: 2px;
  font-weight: normal;
  letter-spacing: 0.22em;
}
.live-chip svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--cream);
}
.live-chip .handle {
  color: var(--cream);
  opacity: 0.9;
}
.live-chip .lc-arr {
  opacity: 0.6;
  transition: transform 0.2s, opacity 0.2s;
}
.live-chip:hover .lc-arr {
  opacity: 1;
  transform: translateX(3px);
}

.match-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-dim);
}
.match-meta .box {
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.match-meta .box b {
  color: var(--ink);
}
.match-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

h1.hero-title {
  font-size: clamp(58px, 11vw, 172px);
  margin: 0 0 22px;
  color: var(--ink);
  line-height: 0.94;
}
h1.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
}
h1.hero-title .red {
  color: var(--ca);
}
h1.hero-title .gold {
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 520px;
  color: #2a261d;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  min-height: 50px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.btn.solid {
  background: var(--ink);
  color: var(--cream);
}
.btn.solid:hover {
  background: var(--ca);
  border-color: var(--ca);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--ink);
  transition-duration: 60ms;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn.solid.gold-cta {
  background: var(--gold-bright);
  color: var(--ink);
  border-color: var(--gold-bright);
}
.btn.solid.gold-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============ HERO ART — POSTER PANEL ============ */
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--mx);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: visible;
  isolation: isolate;
  margin: 40px 0 0 0; /* aligned near top of text column so panel sits at "THE CUP" line */
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--mx) 0%,
    var(--mx) 33%,
    var(--ca) 33%,
    var(--ca) 66%,
    var(--us) 66%,
    var(--us) 100%
  );
  opacity: 0.92;
}
/* goal-net texture */
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(
      45deg,
      transparent 0 18px,
      rgba(245, 236, 214, 0.6) 18px 19px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 18px,
      rgba(245, 236, 214, 0.6) 18px 19px
    );
}
.hero-art img {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  width: 142%;
  max-width: none;
  height: auto;
  min-height: 125%;
  object-fit: contain;
  object-position: center bottom;
  z-index: 2;
  padding: 0;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.42));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.hero-art:hover img {
  transform: translateX(-50%) scale(1.04);
}
.hero-art .corner {
  z-index: 4;
}
.hero-art .price-strip {
  z-index: 4;
}
.hero-art .ball-deco {
  z-index: 3;
}
.hero-art .corner {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--cream);
  color: var(--ink);
  padding: 6px 10px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
}
.hero-art .price-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
}
.hero-art .price-strip .tick {
  color: var(--gold-bright);
  font-weight: 700;
}

/* rolling ball inside the hero-art panel */
.ball-deco {
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: 3;
  width: 64px;
  height: 64px;
  animation: spin 8s linear infinite;
}

/* confetti rain in hero (CSS-only) */
.confetti-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.confetti-rain i {
  position: absolute;
  top: -20px;
  width: 6px;
  height: 10px;
  opacity: 0.65;
  animation: fall linear infinite;
}
.confetti-rain i:nth-child(5n) {
  background: var(--mx);
}
.confetti-rain i:nth-child(5n + 1) {
  background: var(--ca);
}
.confetti-rain i:nth-child(5n + 2) {
  background: var(--us);
}
.confetti-rain i:nth-child(5n + 3) {
  background: var(--gold);
}
.confetti-rain i:nth-child(5n + 4) {
  background: var(--ink);
}
@keyframes fall {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(105vh) rotate(720deg);
  }
}

/* ============ CA BAND ============ */
.ca-band {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
}
.ca-band svg {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.ca-band .ca-label {
  font-family: "SportsWorld", "Bungee", sans-serif;
  color: var(--gold-bright);
  font-size: 15px;
  letter-spacing: 0.08em;
}
.ca-band .ca-value {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70vw;
}
.ca-band .ca-copy {
  background: var(--gold-bright);
  color: var(--ink);
  border: 2px solid var(--gold-bright);
  padding: 8px 14px 8px 12px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ca-band .ca-copy svg {
  width: 14px;
  height: 14px;
  color: var(--ink);
}
.ca-band .ca-copy:hover {
  background: var(--cream);
  border-color: var(--cream);
}
.ca-band .ca-copy:active {
  transform: translateY(1px);
}

/* ============ SECTION ============ */
section {
  padding: 110px 24px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.net-divider {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 12px;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      45deg,
      transparent 0 10px,
      rgba(18, 16, 12, 0.15) 10px 11px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 10px,
      rgba(18, 16, 12, 0.15) 10px 11px
    );
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.chapter {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Staatliches", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.chapter .num {
  background: var(--ink);
  color: var(--cream);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 18px;
  letter-spacing: 0;
}
h2.section-title {
  font-size: clamp(42px, 6.8vw, 96px);
  margin: 14px 0 0;
  color: var(--ink);
  line-height: 0.94;
}
h2.section-title .red {
  color: var(--ca);
}
h2.section-title .green {
  color: var(--mx);
}
h2.section-title .blue {
  color: var(--us);
}
h2.section-title .gold {
  color: var(--gold);
}
h2.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.lede {
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  color: #3a362a;
  margin: 0;
}

/* ============ SQUAD ============ */
.squad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
}
.player {
  position: relative;
  padding: 32px 24px 28px;
  border-right: 2px solid var(--ink);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}
.player:last-child {
  border-right: none;
}
.player.mx {
  background: var(--mx);
  color: var(--cream);
}
.player.ca {
  background: var(--ca);
  color: var(--cream);
}
.player.us {
  background: var(--us);
  color: var(--cream);
}
.player .jersey {
  position: absolute;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 220px;
  color: rgba(245, 236, 214, 0.16);
  top: -36px;
  right: -24px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.5s;
}
.player:hover .jersey {
  transform: rotate(-6deg) scale(1.04);
}
.player .plate {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Staatliches", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.player .plate .flag {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.player h3 {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 56px;
  margin: 0 0 2px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.player .role {
  font-family: "Staatliches", sans-serif;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}
.player .bio {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.96;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 320px;
}
.player .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 0;
  position: relative;
  z-index: 1;
}
.player .stat {
  border: 1.5px solid rgba(245, 236, 214, 0.5);
  padding: 8px 10px;
  text-align: center;
  border-radius: 2px;
}
.player .stat .n {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: var(--cream);
}
.player .stat .l {
  font-family: "Staatliches", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  opacity: 0.78;
}
.player .art {
  flex: 1;
  position: relative;
  margin-top: 18px;
  min-height: 240px;
}
.player .art img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
  max-width: none;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.player:hover .art img {
  transform: translateX(-50%) translateY(-10px) scale(1.04);
}

/* ============ TOKENOMICS — MATCH REPORT ============ */
#tokenomics {
  background: var(--cream-2);
}
.matchcard {
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--ink);
}
.matchcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 20px;
  border-bottom: 2px solid var(--ink);
}
.matchcard-head .mc-title {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.matchcard-head .mc-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.matchcard-head .mc-meta .seal {
  background: var(--gold-bright);
  color: var(--ink);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.matchcard-head .mc-meta .seal svg {
  width: 12px;
  height: 12px;
}

.stats4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--ink);
}
.stat-cell {
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
  position: relative;
  background: var(--cream);
  transition: background 0.2s;
  overflow: hidden;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-cell:hover {
  background: var(--cream-2);
}
.stat-cell .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  margin-bottom: 16px;
  border: 2px solid var(--ink);
}
.stat-cell.mx .icon {
  background: var(--mx);
  color: var(--cream);
  border-color: var(--mx-deep);
}
.stat-cell.ca .icon {
  background: var(--ca);
  color: var(--cream);
  border-color: var(--ca-deep);
}
.stat-cell.us .icon {
  background: var(--us);
  color: var(--cream);
  border-color: var(--us-deep);
}
.stat-cell.au .icon {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--ink);
}
.stat-cell .icon svg {
  width: 22px;
  height: 22px;
}

.stat-cell .k {
  font-family: "Staatliches", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.stat-cell .v {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 58px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-cell .v .u {
  color: var(--ca);
  font-size: 22px;
  margin-left: 4px;
}
.stat-cell .h {
  font-size: 13px;
  margin-top: 10px;
  color: var(--ink-dim);
}

/* progress bar under each stat */
.stat-cell .bar {
  height: 6px;
  background: rgba(18, 16, 12, 0.1);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 16, 12, 0.2);
}
.stat-cell .bar > i {
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  background: var(--bar-clr, var(--ink));
  transition: width 1.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.stat-cell.mx .bar > i {
  background: var(--mx);
}
.stat-cell.ca .bar > i {
  background: var(--ca);
}
.stat-cell.us .bar > i {
  background: var(--us);
}
.stat-cell.au .bar > i {
  background: var(--gold);
}
.stat-cell.neg .bar > i {
  background: var(--ink-dim);
}

/* Match summary grid */
.mc-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.mc-summary {
  padding: 32px;
  border-right: 2px solid var(--ink);
}
.mc-summary h3 {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 30px;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mc-summary p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.66;
  color: var(--ink-dim);
}
.mc-summary p:last-child {
  margin: 0;
}
.mc-summary .sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-strong);
}
.mc-summary .sign .sig {
  font-family: "Kalam", "Segoe Script", cursive;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}
.mc-summary .sign .who {
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.mc-scoreboard {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--cream-2);
}
.mc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8px;
  border-bottom: 1px dashed var(--line-strong);
}
.mc-row:last-child {
  border-bottom: none;
}
.mc-row .mc-l {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Staatliches", sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mc-row .mc-l svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}
.mc-row .mc-r {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.mc-row.ok .mc-r {
  color: var(--mx);
}
.mc-row.warn .mc-r {
  color: var(--ca);
}

/* ============ CHART ============ */
.chart-card {
  border: 2px solid var(--ink);
  background: #0f0f0f;
  box-shadow: 10px 10px 0 var(--ink);
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
  gap: 10px;
}
.chart-head .lbl {
  font-family: "SportsWorld", "Bungee", sans-serif;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chart-head .lbl svg {
  width: 16px;
  height: 16px;
}
.chart-head .tag {
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chart-head .tag .live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ca);
  animation: pulse 1.6s infinite;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}
@media (min-width: 1000px) {
  #dexscreener-embed {
    padding-bottom: 58%;
  }
}
#dexscreener-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ HOW TO BUY ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.how-step {
  padding: 32px 24px;
  border-right: 2px solid var(--ink);
  background: var(--cream);
  position: relative;
  transition: background 0.2s;
  overflow: hidden;
}
.how-step:last-child {
  border-right: none;
}
.how-step:hover {
  background: var(--cream-2);
}
.how-step .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.how-step .num {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 80px;
  line-height: 0.9;
}
.how-step:nth-child(1) .num {
  color: var(--ca);
}
.how-step:nth-child(2) .num {
  color: var(--us);
}
.how-step:nth-child(3) .num {
  color: var(--mx);
}
.how-step:nth-child(4) .num {
  color: var(--gold);
}
.how-step .step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  border: 2px solid var(--ink);
}
.how-step .step-icon svg {
  width: 20px;
  height: 20px;
}
.how-step h3 {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}
.how-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.how-step a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.how-step a:hover {
  color: var(--ca);
}

/* ============ REVEAL — DARK STADIUM JUMBOTRON ============ */
.reveal-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 24px 90px;
  background: #07080c;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--cream);
}
.rv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.rv-bg-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      65% 45% at 50% 0%,
      rgba(255, 216, 77, 0.18),
      transparent 70%
    ),
    radial-gradient(
      55% 60% at 50% 100%,
      rgba(11, 107, 58, 0.22),
      transparent 70%
    ),
    linear-gradient(180deg, #07080c 0%, #0b1420 55%, #0a1b12 100%);
}
.rv-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  mix-blend-mode: screen;
  background-image: linear-gradient(
      rgba(245, 236, 214, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(245, 236, 214, 0.05) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: radial-gradient(120% 80% at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(
    120% 80% at 50% 50%,
    black 40%,
    transparent 85%
  );
}
.rv-bg-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: min(1100px, 120vw);
  aspect-ratio: 2/1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 700' fill='none' stroke='%23F5ECD6' stroke-width='2' opacity='.1'><circle cx='700' cy='350' r='220'/><line x1='0' y1='350' x2='1400' y2='350'/><path d='M 360 350 A 160 160 0 0 1 520 190' /><path d='M 880 190 A 160 160 0 0 1 1040 350' /></svg>");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.rv-spot {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.26;
  pointer-events: none;
}
.rv-spot-l {
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, var(--ca) 0%, transparent 65%);
}
.rv-spot-r {
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, var(--us) 0%, transparent 65%);
}

.rv-wrap {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rv-head {
  color: var(--cream);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.rv-head .rv-sub {
  margin-left: auto;
  margin-right: auto;
}
.rv-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(245, 236, 214, 0.08);
  border: 1.5px solid rgba(245, 236, 214, 0.25);
  border-radius: 2px;
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.rv-chip .rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ca);
  box-shadow: 0 0 10px var(--ca);
  animation: pulse 1.6s infinite;
}

.rv-title {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: clamp(46px, 7.2vw, 96px);
  line-height: 0.94;
  margin: 0 0 22px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.rv-title .gold {
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(255, 216, 77, 0.35);
}
.rv-title .outline-dark {
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
}

.rv-sub {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 500px;
  color: rgba(245, 236, 214, 0.78);
}

/* ---- JUMBOTRON STAGE ---- */
.rv-stage {
  position: relative;
}

.rv-screen {
  position: relative;
  display: block;
  background: #000;
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 2px rgba(255, 216, 77, 0.14),
    0 22px 60px rgba(0, 0, 0, 0.65), 0 0 90px rgba(255, 216, 77, 0.1);
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.25s;
}
.rv-watch:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px rgba(255, 216, 77, 0.3), 0 28px 70px rgba(0, 0, 0, 0.7),
    0 0 110px rgba(255, 216, 77, 0.18);
}
.rv-watch:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 6px;
}

/* Reveal player: force 16:9 on ALL breakpoints + contain so nothing is cropped */
.rv-pv-frame {
  border: none;
  box-shadow: none;
  background: #000;
}
.rv-pv-frame .pv-media,
.rv-pv-frame .pv-media {
  aspect-ratio: 16/9 !important;
  max-height: none !important;
  object-fit: contain !important;
}
@media (max-width: 900px) {
  .rv-pv-frame .pv-media {
    aspect-ratio: 16/9 !important;
    object-fit: contain !important;
  }
}

.rv-bigplay {
  width: 118px !important;
  height: 118px !important;
  background: var(--gold-bright) !important;
  color: var(--ink) !important;
  border: 4px solid var(--cream) !important;
  box-shadow: 0 0 0 8px rgba(245, 236, 214, 0.18),
    0 14px 40px rgba(0, 0, 0, 0.55) !important;
}
.rv-bigplay svg {
  width: 46px !important;
  height: 46px !important;
  margin-left: 6px !important;
}
.rv-bigplay::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 77, 0.45);
  animation: rv-play-ring 2.2s ease-out infinite;
  pointer-events: none;
}
.rv-pv-frame:hover .rv-bigplay {
  background: #fff !important;
}

@keyframes rv-play-ring {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.rv-stripes {
  display: flex;
  height: 8px;
  border-top: 2px solid var(--ink);
}
.rv-s {
  flex: 1;
}
.rv-s-mx {
  background: var(--mx);
}
.rv-s-ca {
  background: var(--ca);
}
.rv-s-us {
  background: var(--us);
}

.rv-ticker {
  margin-top: 16px;
  background: linear-gradient(180deg, #0b0e13, #05070b);
  border: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 236, 214, 0.7);
}
.rv-ticker::before,
.rv-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.rv-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #05070b, transparent);
}
.rv-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #05070b, transparent);
}
.rv-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 26px;
  padding-left: 100%;
  animation: rv-ticker-scroll 38s linear infinite;
}
.rv-ticker-track span {
  display: inline-block;
}
.rv-ticker-track .rv-sep {
  color: var(--gold-bright);
  opacity: 0.7;
}

@keyframes rv-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-ticker-track {
    animation: none;
  }
}

/* responsive — stack + tighten on narrow screens */
@media (max-width: 1000px) {
  .reveal-section {
    padding: 56px 18px 64px;
  }
  .rv-wrap {
    gap: 24px;
    max-width: 640px;
  }
  .rv-sub {
    font-size: 15px;
  }
  .rv-chip {
    margin-bottom: 14px;
  }
  .rv-title {
    font-size: clamp(40px, 9vw, 68px);
  }
  /* shrink the big play button so it doesn't dominate the frame */
  .rv-bigplay {
    width: 72px !important;
    height: 72px !important;
    border-width: 3px !important;
    box-shadow: 0 0 0 6px rgba(245, 236, 214, 0.18),
      0 10px 24px rgba(0, 0, 0, 0.5) !important;
  }
  .rv-bigplay svg {
    width: 30px !important;
    height: 30px !important;
    margin-left: 4px !important;
  }
  .rv-screen {
    box-shadow: 0 0 0 2px rgba(255, 216, 77, 0.12),
      0 14px 36px rgba(0, 0, 0, 0.55);
  }
}
@media (max-width: 600px) {
  .reveal-section {
    padding: 40px 12px 48px;
  }
  .rv-wrap {
    gap: 18px;
  }
  .rv-title {
    font-size: clamp(34px, 9vw, 48px);
    margin-bottom: 12px;
    line-height: 0.96;
  }
  .rv-sub {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.55;
  }
  .rv-chip {
    font-size: 10.5px;
    padding: 6px 10px;
    margin-bottom: 10px;
    letter-spacing: 0.18em;
  }
  .rv-bigplay {
    width: 58px !important;
    height: 58px !important;
    border-width: 3px !important;
  }
  .rv-bigplay svg {
    width: 24px !important;
    height: 24px !important;
    margin-left: 3px !important;
  }
  .rv-ticker {
    font-size: 10.5px;
    padding: 7px 0;
    margin-top: 10px;
    letter-spacing: 0.18em;
  }
  .rv-stripes {
    height: 5px;
  }
  /* smaller spotlights on phones so the glow isn't overwhelming */
  .rv-spot {
    width: 320px;
    height: 320px;
    opacity: 0.2;
    filter: blur(60px);
  }
  .rv-bg-circle {
    opacity: 0.25;
  }
}

/* ============ PRESS — AS FEATURED IN ============ */
#press {
  background: radial-gradient(
      55% 42% at 50% 0%,
      rgba(217, 165, 32, 0.18),
      transparent 60%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(18, 16, 12, 0.035) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(180deg, #efe2bf 0%, #e9d8a8 100%);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.press-card {
  --accent: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.18s;
}
.press-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--accent);
}
.press-card:active {
  transform: translate(0, 0);
  box-shadow: 3px 3px 0 var(--accent);
  transition-duration: 60ms;
}
.press-card:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

/* per-card accent themes */
.press-card.pc-mx {
  --accent: var(--mx);
}
.press-card.pc-ca {
  --accent: var(--ca);
}
.press-card.pc-us {
  --accent: var(--us);
}
.press-card.pc-gold {
  --accent: var(--gold-bright);
}
.press-card.pc-ink {
  --accent: var(--ink);
}

/* thumbnail */
.press-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--accent);
  border-bottom: 2px solid var(--ink);
}
.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.press-card:hover .press-thumb img {
  transform: scale(1.06);
}
/* tinted overlay using the card accent — gives each card its own feel */
.press-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(18, 16, 12, 0.45) 100%
  );
}

.press-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
}
/* accent side-stripe */
.press-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--accent);
}

.press-outlet {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-transform: uppercase;
  -webkit-text-stroke: 0;
}
.press-card.pc-gold .press-outlet {
  color: var(--ink);
  text-shadow: 2px 2px 0 var(--gold-bright);
}

.press-head {
  font-family: "Anthropic Serif", "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.32;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-meta {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1.5px dashed rgba(18, 16, 12, 0.35);
}
.press-meta .read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}
.press-meta .read svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.press-card:hover .press-meta .read svg {
  transform: translateX(4px);
}
.press-card:hover .press-meta .read {
  color: var(--accent);
}

/* ============ PRESS — THEMED VIDEO PLAYER ============ */
.press-video {
  margin: 0 auto 44px;
  max-width: 960px;
}
.pv-frame {
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  background: #0a0a0a;
  overflow: hidden;
  isolation: isolate;
}
.pv-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 128, 70, 0.18) 0%,
    rgba(0, 128, 70, 0.18) 33%,
    rgba(193, 39, 45, 0.18) 33%,
    rgba(193, 39, 45, 0.18) 66%,
    rgba(30, 56, 136, 0.18) 66%,
    rgba(30, 56, 136, 0.18) 100%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s;
}
.pv-frame.is-paused::before {
  opacity: 1;
}

.pv-media {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 640px;
  object-fit: cover;
  display: block;
  background: #000;
  cursor: pointer;
}
@media (min-width: 901px) {
  .pv-media {
    aspect-ratio: 16/9;
    max-height: 540px;
  }
}

.pv-caption {
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 3;
  background: var(--gold-bright);
  color: var(--ink);
  padding: 8px 14px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 2px solid var(--ink);
  text-transform: uppercase;
}

.pv-bigplay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 6px rgba(245, 236, 214, 0.25), 6px 6px 0 var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.pv-bigplay svg {
  width: 38px;
  height: 38px;
  margin-left: 5px;
}
.pv-bigplay:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-bright);
}
.pv-bigplay:active {
  transform: translate(-50%, -50%) scale(0.96);
  transition-duration: 60ms;
}
.pv-frame.is-playing .pv-bigplay {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
}

.pv-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0.78) 60%,
    rgba(10, 10, 10, 0.92) 100%
  );
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  font-family: "Staatliches", sans-serif;
}
.pv-frame.is-playing .pv-controls,
.pv-frame:hover .pv-controls,
.pv-frame.is-focus .pv-controls {
  opacity: 1;
  transform: translateY(0);
}

.pv-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 236, 214, 0.35);
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s;
}
.pv-btn:hover {
  background: var(--gold-bright);
  color: var(--ink);
  border-color: var(--gold-bright);
}
.pv-btn:active {
  transform: scale(0.92);
  transition-duration: 60ms;
}
.pv-btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Play/Pause icon swap */
.pv-play .ic-pause {
  display: none;
}
.pv-frame.is-playing .pv-play .ic-play {
  display: none;
}
.pv-frame.is-playing .pv-play .ic-pause {
  display: inline-block;
}

/* Mute icon swap */
.pv-mute .ic-mute {
  display: none;
}
.pv-frame.is-muted .pv-mute .ic-vol {
  display: none;
}
.pv-frame.is-muted .pv-mute .ic-mute {
  display: inline-block;
}

.pv-scrub {
  flex: 1;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  min-width: 80px;
}
.pv-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(245, 236, 214, 0.2);
  border: 1.5px solid rgba(245, 236, 214, 0.3);
}
.pv-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--gold-bright);
  transition: width 0.12s linear;
}
.pv-seek {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
}
.pv-seek:focus-visible + .pv-fill,
.pv-scrub:focus-within .pv-track {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.pv-time {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.1em;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
  min-width: 68px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.pv-slash {
  opacity: 0.5;
}

/* Fullscreen state */
.pv-frame:fullscreen {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  background: #000;
}
.pv-frame:fullscreen .pv-media {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

/* Mobile: compact controls */
@media (max-width: 700px) {
  .press-video {
    margin-bottom: 32px;
  }
  .pv-frame {
    box-shadow: 8px 8px 0 var(--ink);
  }
  .pv-bigplay {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 4px rgba(245, 236, 214, 0.2), 4px 4px 0 var(--ink);
  }
  .pv-bigplay svg {
    width: 30px;
    height: 30px;
  }
  .pv-controls {
    padding: 8px 10px;
    gap: 6px;
  }
  .pv-btn {
    width: 32px;
    height: 32px;
  }
  .pv-btn svg {
    width: 16px;
    height: 16px;
  }
  .pv-fs {
    display: none;
  }
  .pv-time {
    font-size: 11px;
    min-width: 56px;
  }
  .pv-caption {
    font-size: 11px;
    padding: 6px 10px;
  }
  /* on mobile, controls always visible when paused */
  .pv-frame:not(.is-playing) .pv-controls {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ MEMES GALLERY ============ */
#memes {
  background: var(--cream-2);
}
.memes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.meme-tile {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.25s;
  aspect-ratio: 3/2;
  isolation: isolate;
  padding: 0;
}
.meme-tile:hover,
.meme-tile:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
  outline: none;
  z-index: 2;
}
.meme-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.3s,
    opacity 0.35s ease;
}
.meme-tile.loaded img {
  opacity: 1;
}
.meme-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.03);
}

/* Skeleton shimmer — visible instantly, no JS needed */
.meme-tile.skeleton {
  cursor: default;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.55) 50%,
      transparent 100%
    ),
    linear-gradient(var(--cream-2), var(--cream-2));
  background-size: 200% 100%, 100% 100%;
  background-repeat: no-repeat;
  animation: shimmer 1.4s linear infinite;
}
.meme-tile.skeleton::after {
  display: none;
}
.meme-tile.skeleton .idx {
  display: none;
}
@keyframes shimmer {
  0% {
    background-position: -150% 0, 0 0;
  }
  100% {
    background-position: 150% 0, 0 0;
  }
}
.meme-tile.failed {
  background: var(--cream-3);
  display: grid;
  place-items: center;
  color: var(--ink-dim);
  font-family: "Staatliches", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.meme-tile.failed::before {
  content: "MEME · OFFLINE";
  position: relative;
  z-index: 2;
}
/* corner tab */
.meme-tile::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 1;
  width: 36px;
  height: 12px;
  background: var(--ca);
  border: 2px solid var(--ink);
  border-left: none;
  border-top: none;
  transition: width 0.25s, background 0.25s;
}
.meme-tile:nth-child(3n)::after {
  background: var(--mx);
}
.meme-tile:nth-child(3n + 1)::after {
  background: var(--us);
}
.meme-tile:hover::after {
  width: 58px;
  background: var(--gold-bright);
}
/* index number in bottom-right */
.meme-tile .idx {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 1;
  background: var(--ink);
  color: var(--gold-bright);
  padding: 4px 10px 3px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
  border-right: none;
  border-bottom: none;
  pointer-events: none;
}
/* featured cover tile */
.meme-tile.feature {
  aspect-ratio: 1/1;
}
@media (min-width: 900px) {
  .meme-tile.feature {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
  }
}

.memes-foot {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 8, 4, 0.94);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 72px;
}
.lightbox.open {
  display: flex;
  animation: lbFadeIn 0.22s ease;
}
@keyframes lbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lb-stage {
  position: relative;
  max-width: min(1400px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  animation: lbPop 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes lbPop {
  from {
    transform: scale(0.94);
    opacity: 0.4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border: 3px solid var(--cream);
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.lb-cap {
  color: var(--cream);
  font-family: "Staatliches", sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
  text-align: center;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  width: 52px;
  height: 52px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, color 0.18s;
  font-family: "Bungee", sans-serif;
  z-index: 2;
}
.lb-btn:hover {
  background: var(--gold-bright);
}
.lb-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.lb-prev {
  left: 16px;
}
.lb-next {
  right: 16px;
}
.lb-close {
  top: 16px;
  right: 16px;
  transform: none;
  width: 44px;
  height: 44px;
  font-size: 24px;
}
.lb-close:hover {
  background: var(--ca);
  color: var(--cream);
}
.lb-close:active {
  transform: scale(0.95);
}
@media (max-width: 700px) {
  .lightbox {
    padding: 16px 8px;
  }
  .lb-prev {
    left: 6px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .lb-next {
    right: 6px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .lb-close {
    top: 8px;
    right: 8px;
  }
  .lb-img {
    max-height: calc(100vh - 140px);
  }
}

/* ============ VIDEO ============ */
.video-bundle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.video-card {
  border: 2px solid var(--ink);
  background: #000;
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.video-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--ink);
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.video-card .cap {
  position: absolute;
  left: -2px;
  top: -2px;
  background: var(--ca);
  color: var(--cream);
  padding: 6px 12px;
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
}
.video-card:nth-child(2) .cap {
  background: var(--us);
}

/* ============ FINAL CTA ============ */
.final {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--cream);
  border-bottom: none;
  text-align: center;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  background-image: url("Assets/epic-hero.webp"),
    url("Assets/freepik__epic-hero-shot-of-three-mascot-characters-standing__84668.png");
  background-size: cover;
  background-position: center;
}
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 12, 0.7) 0%,
    rgba(18, 16, 12, 0.9) 100%
  );
}
.final .wrap {
  position: relative;
  z-index: 2;
}
.final h2 {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: clamp(48px, 9vw, 144px);
  margin: 0 auto 20px;
  max-width: 18ch;
  text-transform: uppercase;
  line-height: 0.94;
}
.final h2 .gold {
  color: var(--gold-bright);
}
.final p {
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 36px;
  opacity: 0.9;
  line-height: 1.6;
}
.final .hero-actions {
  justify-content: center;
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--cream);
  padding: 60px 24px calc(24px + var(--pad-safe-b));
}
.foot-confetti {
  opacity: 0.55;
}
.final .confetti-rain i {
  opacity: 0.7;
}
.foot-confetti i {
  opacity: 0.45;
}
.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 236, 214, 0.18);
}
.foot-brand {
  font-family: "SportsWorld", "Bungee", sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.foot-brand .g {
  color: var(--gold-bright);
}
.foot-disc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.72;
  max-width: 360px;
}
footer h4 {
  font-family: "Staatliches", sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--gold-bright);
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
footer a {
  font-size: 14px;
  opacity: 0.85;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
footer a:hover {
  opacity: 1;
  color: var(--gold-bright);
}
footer a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.8;
}
.foot-bottom {
  max-width: var(--maxw);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  opacity: 0.65;
  flex-wrap: wrap;
  padding-top: 20px;
}

/* ============ REVEAL (JS-gated; visible by default if JS fails) ============ */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(40px);
  opacity: 0;
  background: var(--ink);
  color: var(--gold-bright);
  font-family: "SportsWorld", "Bungee", sans-serif;
  padding: 12px 22px;
  border: 2px solid var(--gold-bright);
  transition: opacity 0.2s, transform 0.25s;
  z-index: 99;
  font-size: 14px;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ MOBILE STICKY BUY ============ */
.mobile-buy {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 16px calc(12px + var(--pad-safe-b));
  border-top: 2px solid var(--gold-bright);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.mobile-buy .label {
  font-family: "Staatliches", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.mobile-buy .price {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}
.mobile-buy a {
  background: var(--gold-bright);
  color: var(--ink);
  font-family: "SportsWorld", "Bungee", sans-serif;
  padding: 12px 18px;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 2px solid var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mobile-buy a svg {
  width: 16px;
  height: 16px;
}

/* ============ TALL SCREENS — center hero image to viewport (slightly above center) ============ */
@media (min-width: 1001px) and (min-height: 800px) {
  .hero-grid {
    min-height: calc(100vh - 180px);
  }
  .hero-art {
    align-self: center;
    margin-top: 0;
    transform: translateY(-6%);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .match-meta {
    justify-content: center;
  }
  .live-chip {
    margin-left: auto;
    margin-right: auto;
  }
  /* MOBILE: strip the poster panel — just show the mascots image cleanly */
  .hero-art {
    max-width: 560px;
    margin: 20px auto 0;
    aspect-ratio: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    padding: 0;
  }
  .hero-art::before,
  .hero-art::after {
    display: none;
  }
  .hero-art .corner,
  .hero-art .price-strip,
  .hero-art .ball-deco {
    display: none;
  }
  .hero-art img {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    padding: 0;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32));
  }
  .hero-art:hover img {
    transform: none;
  }
  .squad,
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .press-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .player,
  .how-step {
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
  .player:nth-child(odd),
  .how-step:nth-child(odd) {
    border-right: 2px solid var(--ink);
  }
  .player:last-child,
  .how-step:last-child {
    border-right: none;
    border-bottom: none;
  }
  .stats4 {
    grid-template-columns: 1fr 1fr;
  }
  .stats4 .stat-cell:nth-child(2n) {
    border-right: none;
  }
  .stats4 .stat-cell:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }
  .mc-body {
    grid-template-columns: 1fr;
  }
  .mc-summary {
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-bundle {
    grid-template-columns: 1fr;
  }
  section {
    padding: 80px 20px;
  }
  .menu,
  .nav-cta {
    display: none;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-buy {
    display: flex;
  }
  body {
    padding-bottom: 76px;
  }
}
@media (max-width: 600px) {
  .squad,
  .how-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }
  .player,
  .how-step {
    border-right: none !important;
    border-bottom: 2px solid var(--ink) !important;
  }
  .player:last-child,
  .how-step:last-child {
    border-bottom: none !important;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .top .ticker span:nth-child(n + 5) {
    display: none;
  }
  .ca-band .ca-value {
    max-width: 220px;
  }
  h1.hero-title {
    font-size: clamp(52px, 13vw, 76px);
  }
  .mascot.left {
    transform: translateY(8%) translateX(0) scale(0.82);
  }
  .mascot.right {
    transform: translateY(8%) translateX(0) scale(0.82) scaleX(-1);
  }
  .matchcard-head .mc-meta {
    gap: 10px;
    flex-wrap: wrap;
  }
}
