:root {
  --prime-accent: #c9a961;
  --text-primary: #e8edf5;
  --accent-gold: #d6b878;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #070b12;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.champ-wrapper {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(87, 200, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(214, 184, 120, 0.10), transparent 20%),
    radial-gradient(circle at 50% 115%, rgba(130, 17, 33, 0.20), transparent 35%),
    linear-gradient(160deg, #06080d 0%, #09111b 38%, #05070b 100%);
}

.champ-wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 22px);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(9, 17, 27, 0.80);
  backdrop-filter: blur(18px);
}

.nav-shell,
.main-shell,
.footer-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f2dfab;
}

.heading-font {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
}

.mini-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(94, 210, 255, 0.82);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #cbd5e1;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 184, 120, 0.95), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f7e6b5;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: #e8edf5;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding-bottom: 14px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  border-radius: 20px;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.mobile-nav-inner .nav-link {
  padding: 10px 4px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 22px;
}

.gold-edge {
  position: relative;
  overflow: hidden;
}

.gold-edge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(214, 184, 120, 0.9),
    rgba(255, 255, 255, 0.08),
    rgba(94, 210, 255, 0.45)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
}

.spot-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.22;
}

.glow-cyan.one {
  background: #67e8f9;
  top: 8%;
  left: 8%;
  width: 208px;
  height: 208px;
}

.glow-gold.two {
  background: #f5deb3;
  top: 18%;
  right: 8%;
  width: 224px;
  height: 224px;
}

.glow-red.three {
  background: #7f1d1d;
  bottom: 12%;
  left: 35%;
  width: 288px;
  height: 288px;
}

.seam-mark {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  border: 1px solid rgba(154, 27, 34, 0.25);
  opacity: 0.35;
}

.seam-one {
  top: 14%;
  right: 6%;
}

.main-shell {
  padding-top: 24px;
  padding-bottom: 32px;
}

.hero-wrap,
.section-block,
.page-hero {
  margin-bottom: 24px;
}

.hero-grid,
.two-col,
.road-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

.road-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.two-mini-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-primary,
.hero-side,
.section-card,
.match-card,
.feature-wide-card {
  padding: 24px;
}

.hero-badge {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 120, 0.30);
  background: rgba(214, 184, 120, 0.08);
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #efd9a0;
  margin-bottom: 18px;
}

.hero-kicker,
.card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.hero-title {
  line-height: 1.02;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  color: #fbf2d6;
  margin: 12px 0;
}

.hero-subtext {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #dbe5f1;
  margin: 0 0 8px;
}

.hero-support,
.copy,
.card-text,
.fixture-meta,
.countdown-note,
.contact-block,
.footer-note,
.timeline-line,
.gallery-caption {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.hero-label {
  letter-spacing: 0.08em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.premium-btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.btn-primary {
  background: #d6b878;
  color: #0b1017;
  border-color: #d6b878;
}

.btn-secondary {
  border-color: rgba(94, 210, 255, 0.24);
}

.side-heading,
.section-title,
.poster-title {
  margin: 10px 0;
  color: white;
}

.side-heading {
  font-size: 2rem;
}

.section-title {
  font-size: 2rem;
}

.poster-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #faefce;
}

.side-mini-grid,
.stats-strip,
.teams-grid,
.sponsor-grid,
.card-grid,
.player-grid {
  display: grid;
  gap: 16px;
}

.side-mini-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.stats-strip {
  grid-template-columns: repeat(5, 1fr);
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.player-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.teams-grid {
  grid-template-columns: repeat(5, 1fr);
}

.sponsor-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.side-mini-card,
.sub-card,
.stat-card,
.team-chip,
.sponsor-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.15);
  padding: 16px;
}

.mini-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #94a3b8;
}

.mini-card-value,
.fixture-main,
.sub-heading,
.match-heading,
.timeline-title,
.team-name,
.player-name {
  margin-top: 8px;
  color: white;
  font-weight: 700;
}

.fixture-main,
.match-heading {
  font-size: 1.15rem;
}

.sub-heading,
.timeline-title {
  font-size: 1.05rem;
  color: var(--prime-accent);
}

.match-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f1dfaa;
}

.metal-line {
  background: linear-gradient(90deg, transparent, rgba(214, 184, 120, 0.75), rgba(94, 210, 255, 0.6), transparent);
  height: 1px;
  width: 100%;
  margin: 18px 0;
}

.fixture-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.large-gap {
  gap: 24px;
}

.top-space {
  margin-top: 18px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
  line-height: 1.8;
}

.media-pills,
.bullet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  font-size: 1.3rem;
}

.stat-number {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f3dfaa;
}

.stat-label {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #94a3b8;
}

.team-chip,
.sponsor-box {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
}

.result-topline,
.match-path,
.match-footer {
  margin-top: 14px;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.7;
}

.result-match-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.result-team.right {
  text-align: right;
}

.score-display {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #f3dfaa;
}

.winner-chip,
.result-summary {
  margin-top: 10px;
  color: #7ef6b1;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.vs-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 31, 46, 0.85);
  border: 1px solid var(--prime-accent);
  color: var(--prime-accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.vs-badge.winner {
  border-color: #7ef6b1;
  color: #7ef6b1;
}

.feature-wide-card {
  padding: 24px;
  margin-bottom: 24px;
}

.hero-player {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

.player-card {
  padding: 18px;
  text-align: center;
}

.player-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 2px solid var(--prime-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(196, 169, 97, 0.08);
}

.player-role {
  color: #94a3b8;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.player-stats {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stats {
  justify-content: flex-start;
}

.stat-item {
  min-width: 70px;
  text-align: center;
}

.stat-value {
  font-size: 1.05rem;
  color: var(--prime-accent);
  font-weight: 800;
}

.stat-name {
  font-size: 0.68rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 16px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 12px 14px;
}

.road-grid .timeline-item {
  padding: 18px;
  border-left: 3px solid var(--prime-accent);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-card {
  padding: 18px 20px;
}

.footer-title {
  font-size: 1.05rem;
  color: #f2dfab;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  background: rgba(10, 14, 22, 0.92);
  backdrop-filter: blur(10px);
  padding: 18px;
}

.lightbox.open {
  display: flex;
}

.lightbox-shell {
  width: min(1100px, 96vw);
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(196, 169, 97, 0.28);
  background: #0b1016;
}

.lightbox-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.lightbox-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.lightbox-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lightbox-btn {
  border: 1px solid rgba(196, 169, 97, 0.32);
  background: rgba(26, 31, 46, 0.78);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

/* MEDIA LINK CARDS */
.media-link-card {
  display: block;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.media-link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 184, 120, 0.35);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(214, 184, 120, 0.10);
}

.media-link-tag {
  margin-top: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f1dfaa;
  font-weight: 700;
}

/* SPONSOR SHOWCASE */
.sponsor-copy {
  margin-bottom: 18px;
}

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

.sponsor-logo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.sponsor-logo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.sponsor-logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(214,184,120,0.14),
      transparent 35%,
      transparent 70%,
      rgba(94,210,255,0.06)
    );
  opacity: 0.9;
}

.sponsor-logo-frame:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(214,184,120,0.35);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.42),
    0 0 28px rgba(214,184,120,0.10);
}

.sponsor-logo-image {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-role {
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f1dfaa;
  font-weight: 700;
  line-height: 1.4;
}

.sponsor-name {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #e7edf5;
  font-weight: 600;
}

/* =========================
   SEMI FINALS — PREMIUM PASS
========================= */

.semi-finals-grid {
  display: grid;
  gap: 30px;
  margin-top: 28px;
}

.semi-card {
  padding: 28px;
  display: grid;
  gap: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at top center, rgba(214,184,120,0.08), transparent 44%);
  border: 1px solid rgba(214, 184, 120, 0.16);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.match-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.match-top > div {
  max-width: 72%;
}

.match-heading {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  color: #fbf2d6;
}

.status-pill {
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 120, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: #f1dfaa;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.semi-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: 6px 10px 0;
}

.team-block {
  display: grid;
  gap: 12px;
  justify-items: center;
  align-items: center;
}

.team-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.team-name {
  margin-top: 0;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  max-width: 230px;
}

.vs-block {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  color: #f3e7c2;
  text-shadow:
    0 0 18px rgba(214,184,120,0.16),
    0 10px 24px rgba(0,0,0,0.30);
  letter-spacing: 0.03em;
}

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

.semi-meta-grid .sub-card,
.path-block {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  padding: 14px 16px;
}

.semi-meta-grid .card-label,
.path-block .card-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #8ea0b8;
}

.fixture-main {
  margin-top: 6px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.path-block {
  margin-top: -2px;
}

.path-block .fixture-meta {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #d3dce8;
}

.semi-banner-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.semi-banner {
  width: 100%;
  display: block;
  object-fit: cover;
}

.page-hero {
  padding: 26px 28px;
}

.page-hero .poster-title {
  margin-top: 6px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-hero .copy {
  max-width: 900px;
}

/* =========================
   QF RESULTS — MATCH CENTRE
   ========================= */

.qf-hero {
  overflow: hidden;
}

.qf-hero-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.qf-hero-pill {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.qf-hero-pill-label {
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #94a3b8;
}

.qf-hero-pill-value {
  font-size: 1rem;
  font-weight: 800;
  color: #f7e7b5;
}

.qf-accordion-list {
  display: grid;
  gap: 20px;
}

.qf-accordion-card {
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(94, 210, 255, 0.08), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(214, 184, 120, 0.08), transparent 20%),
    radial-gradient(circle at 50% 110%, rgba(127, 29, 29, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.qf-accordion-summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
}

.qf-accordion-summary::-webkit-details-marker {
  display: none;
}

.qf-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.qf-summary-meta {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #94a3b8;
}

.qf-summary-openhint {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7ef6b1;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  padding-right: 22px;
}

.qf-summary-openhint::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 1rem;
  line-height: 1;
  color: #7ef6b1;
}

.qf-accordion-card[open] .qf-summary-openhint::after {
  content: "–";
}

.qf-summary-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}

.qf-summary-team {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.qf-summary-team-left {
  text-align: left;
}

.qf-summary-team-right {
  text-align: right;
}

.qf-summary-team-name {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.22;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

.qf-summary-score {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.1;
  font-weight: 900;
  color: #f3dfaa;
}

.qf-summary-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qf-summary-vs {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 31, 46, 0.88);
  border: 1.5px solid #7ef6b1;
  color: #7ef6b1;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow:
    0 0 0 8px rgba(126, 246, 177, 0.03),
    0 10px 30px rgba(0,0,0,0.24);
}

.qf-summary-bottom {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.qf-summary-result,
.qf-summary-mom {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  display: grid;
  gap: 6px;
}

.qf-result-label,
.qf-mom-mini-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #94a3b8;
  font-weight: 700;
}

.qf-result-text {
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 800;
  text-transform: uppercase;
  color: #7ef6b1;
}

.qf-mom-mini-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fbf2d6;
}

.qf-accordion-content {
  padding: 0 24px 24px;
}

.qf-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.qf-spotlight-card,
.qf-links-panel {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    radial-gradient(circle at top right, rgba(214,184,120,0.08), transparent 34%);
  padding: 18px;
}

.qf-links-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}

.qf-action-btn {
  width: 100%;
}

.qf-mom-performance {
  margin-top: 14px;
  margin-bottom: 0;
  color: #d9e4ef;
  font-size: 0.98rem;
  line-height: 1.8;
}

.qf-transition-card {
  margin-top: 24px;
  padding: 26px 28px;
}

/* hover polish */
.qf-accordion-card:hover {
  border-color: rgba(214,184,120,0.22);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* responsive */
@media (max-width: 1100px) {
  .qf-hero-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .qf-summary-main {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .qf-summary-team-left,
  .qf-summary-team-right {
    text-align: center;
  }

  .qf-summary-bottom {
    grid-template-columns: 1fr;
  }

  .qf-content-grid {
    grid-template-columns: 1fr;
  }

  .qf-summary-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .qf-hero-pills {
    grid-template-columns: 1fr;
  }

  .qf-accordion-summary,
  .qf-accordion-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .qf-accordion-summary {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .qf-accordion-content {
    padding-bottom: 18px;
  }

  .qf-summary-vs {
    width: 58px;
    height: 58px;
  }

  .qf-transition-card {
    padding: 20px;
  }
}

/* =========================
   LEADERBOARD
========================= */

.leaderboard-hero-card {
  padding: 28px 30px;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.leaderboard-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(214, 168, 79, 0.10), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.05), transparent 22%);
  pointer-events: none;
}

.hero-player {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-player-content {
  flex: 1;
  min-width: 0;
}

.player-avatar {
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(214, 168, 79, 0.85);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), rgba(8,18,35,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 0 4px rgba(214, 168, 79, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.35);
  color: #f3c86a;
  font-size: 2rem;
  line-height: 1;
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-avatar-lg {
  width: 120px;
  height: 120px;
}

.player-avatar-md {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
}

.hero-stats {
  margin-top: 18px;
}

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

.leaderboard-player-card {
  text-align: center;
  padding: 26px 20px 24px;
  position: relative;
  overflow: hidden;
}

.leaderboard-player-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(214, 168, 79, 0.10), transparent 35%);
  pointer-events: none;
}

.leaderboard-player-card .player-name,
.leaderboard-player-card .player-role,
.leaderboard-player-card .player-stats {
  position: relative;
  z-index: 1;
}

.leaderboard-player-card .player-name {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.leaderboard-player-card .player-role {
  font-size: 0.80rem;
  margin-bottom: 18px;
  min-height: 40px;
}

.leaderboard-player-card .player-stats {
  justify-content: center;
}

/* ================================
   APPRECIATION PAGE
================================ */

.appreciation-page {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.appreciation-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 34px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
}

.appreciation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255,215,120,0.08), transparent 40%);
  pointer-events: none;
}

.hero-topline {
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 220, 140, 0.92);
  margin-bottom: 16px;
}

.appreciation-hero .poster-title {
  margin-bottom: 14px;
  line-height: 1.02;
}

.hero-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,215,140,0.9),
    transparent
  );
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.86);
}

.hero-tribute {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero-tribute p {
  max-width: 820px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 231, 180, 0.92);
  font-style: italic;
}

.tribute-line {
  width: 160px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,215,140,0.7),
    transparent
  );
}

.honour-strip {
  padding: 20px 24px;
  text-align: center;
}

.strip-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 215, 140, 0.85);
  margin-bottom: 14px;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.strip-items span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,140,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.appreciation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.appreciation-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 24px;
  min-height: 240px;
  border: 1px solid rgba(255, 215, 140, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.appreciation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 140, 0.28);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}

.appreciation-card-bg {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,140,0.13), transparent 70%);
  pointer-events: none;
}

.appreciation-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,215,140,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,215,140,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.card-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.card-heading-group {
  min-width: 0;
}

.mini-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 215, 140, 0.72);
  margin-bottom: 6px;
}

.appreciation-card .card-title {
  margin: 0;
  font-size: 1.28rem;
  color: #fff8e8;
  line-height: 1.2;
}

.card-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 16px;
  background: linear-gradient(
    90deg,
    rgba(255,215,140,0.45),
    rgba(255,255,255,0.06)
  );
}

.appreciation-card .card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.85;
  font-size: 0.98rem;
}

.closing-tribute {
  padding: 34px 28px;
  text-align: center;
  background:
    radial-gradient(circle at bottom, rgba(212,175,55,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

.closing-label {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 215, 140, 0.85);
  margin-bottom: 12px;
}

.closing-tribute .section-title {
  margin-bottom: 14px;
}

.closing-copy {
  max-width: 860px;
  margin: 0 auto 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.85;
  font-size: 1rem;
}

.closing-copy.strong {
  color: #ffe4a3;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =========================
   TWO-ROW CINEMATIC HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: visible;
}

.header-topbar {
  background:
    linear-gradient(180deg, rgba(3, 10, 20, 0.96), rgba(6, 14, 28, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-main {
  position: relative;
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.96), rgba(6, 16, 30, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: visible;
  z-index: 1001;
}

.header-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 181, 109, 0.34),
    transparent
  );
}

.header-shell {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
  position: relative;
}

.topbar-shell {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mainbar-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-tag {
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(98, 192, 255, 0.9);
}

.topbar-meta {
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.72);
  flex-shrink: 0;
}

.brand-home {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  min-width: 240px;
  max-width: 420px;
}
.brand-mainline {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter:
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 10px rgba(215, 181, 109, 0.12));
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-title {
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #f3dfb2;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 14px 14px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.045);
}

.nav-link.active {
  color: #f3dfb2;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243, 223, 178, 0.95),
    transparent
  );
  box-shadow: 0 0 12px rgba(243, 223, 178, 0.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(215, 181, 109, 0.18);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  color: transparent;
  padding: 0;
  position: relative;
  z-index: 1103;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.mobile-nav {
  display: none;
}

.mobile-nav-inner {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.98), rgba(7, 12, 22, 0.98));
  border: 1px solid rgba(214, 184, 120, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =========================
   TEAM SPOTLIGHT SHOWCASE
========================= */

.team-showcase-copy {
  margin-bottom: 18px;
}

.team-spotlight-shell {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.team-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(214, 184, 120, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #f3dfaa;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-nav-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 184, 120, 0.48);
  box-shadow: 0 0 24px rgba(214, 184, 120, 0.12);
}

.team-spotlight-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.team-spotlight-frame {
  width: min(100%, 360px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.team-spotlight-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.team-spotlight-meta {
  text-align: center;
}

.team-spotlight-count {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f1dfaa;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-spotlight-name {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .mainbar-shell {
    min-height: 76px;
    gap: 18px;
  }

  .brand-home {
    max-width: 280px;
    min-width: 200px;
  }

  .brand-title {
    font-size: 1.7rem;
  }

  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    padding: 12px 10px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .road-grid,
  .three-col,
  .card-grid,
  .player-grid,
  .teams-grid,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-masonry {
    column-count: 3;
  }

  .sponsor-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .leaderboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .semi-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-top > div {
    max-width: 100%;
  }
}

@media (max-width: 920px) {
  .topbar-shell {
    min-height: 30px;
  }

  .topbar-right {
    display: none;
  }

  .mainbar-shell {
    min-height: 72px;
  }

  .brand-sub {
    display: none;
  }

  .brand-title {
    font-size: 1.28rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 1102;
  }

  .mobile-nav:not(.open) {
    display: none;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav .nav-link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-align: left;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
  }

  .mobile-nav .nav-link:hover,
  .mobile-nav .nav-link.active {
    color: #fff1c8;
    background: rgba(214, 184, 120, 0.10);
    border-color: rgba(214, 184, 120, 0.22);
  }

  .mobile-nav .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .two-col,
  .road-grid,
  .three-col,
  .card-grid,
  .player-grid,
  .teams-grid,
  .stats-strip,
  .two-mini-col {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .hero-player {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .result-match-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .result-team.right {
    text-align: center;
  }

  .vs-badge {
    margin: 0 auto;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .seam-one {
    display: none;
  }

  .sponsor-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sponsor-logo-frame {
    min-height: 135px;
  }

  .semi-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-match-grid.refined {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .result-team-left,
  .result-team-right {
    align-items: center;
    text-align: center;
  }

  .team-name-wrap,
  .team-name-wrap.right {
    justify-content: center;
  }

  .result-team .team-name {
    max-width: none;
  }

  .qf-result-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qf-mom-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-spotlight-shell {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .hero-player {
    flex-direction: column;
    align-items: flex-start;
  }

  .player-avatar-lg {
    width: 104px;
    height: 104px;
  }

  .leaderboard-grid {
    grid-template-columns: 1fr;
  }

  .leaderboard-player-card {
    text-align: left;
  }

  .leaderboard-player-card .player-avatar-md {
    margin: 0 0 14px 0;
  }

  .leaderboard-player-card .player-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .match-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .semi-matchup {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .semi-meta-grid {
    grid-template-columns: 1fr;
  }

  .team-logo {
    width: 88px;
    height: 88px;
    border-radius: 18px;
  }

  .team-name {
    max-width: none;
  }

  .vs-block {
    font-size: 2.6rem;
  }

  .semi-card,
  .page-hero {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 20px, 1360px);
  }

  .mini-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .brand-title {
    font-size: 1.12rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .mobile-nav {
    top: calc(100% + 10px);
  }

  .mobile-nav-inner {
    padding: 10px;
    border-radius: 18px;
  }

  .mobile-nav .nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    padding: 13px 14px;
  }

  .semi-matchup {
    grid-template-columns: 1fr;
  }

  .semi-meta-grid {
    grid-template-columns: 1fr;
  }

  .team-logo {
    width: 76px;
    height: 76px;
  }

  .team-spotlight-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-nav-btn {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    font-size: 1.4rem;
  }

  .team-nav-prev {
    order: 2;
  }

  .team-spotlight-center {
    order: 1;
  }

  .team-nav-next {
    order: 3;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .main-shell,
  .footer-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-primary,
  .hero-side,
  .section-card,
  .match-card,
  .feature-wide-card {
    padding: 18px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext,
  .hero-support,
  .copy,
  .card-text,
  .fixture-meta,
  .countdown-note,
  .contact-block,
  .footer-note,
  .timeline-line,
  .gallery-caption {
    font-size: 0.9rem;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .cta-row,
  .lightbox-actions {
    flex-direction: column;
  }

  .premium-btn,
  .lightbox-btn,
  .footer-btn {
    width: 100%;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .sponsor-logo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sponsor-logo-frame {
    min-height: 120px;
    border-radius: 14px;
    padding: 14px;
  }

  .sponsor-name {
    font-size: 0.82rem;
  }

  .sponsor-role {
    font-size: 0.66rem;
  }

  .qf-result-card {
    padding: 18px;
  }

  .qf-mom-card {
    padding: 16px;
  }

  .qf-link-row {
    flex-direction: column;
  }

  .qf-link-row .premium-btn,
  .qf-mom-head .premium-btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .appreciation-grid {
    grid-template-columns: 1fr;
  }

  .appreciation-hero,
  .closing-tribute,
  .appreciation-card,
  .honour-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .appreciation-card {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  .hero-topline,
  .strip-label,
  .closing-label,
  .mini-label {
    letter-spacing: 0.16em;
  }

  .hero-copy,
  .hero-tribute p,
  .closing-copy,
  .appreciation-card .card-text {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .appreciation-card .card-title {
    font-size: 1.12rem;
  }
}