:root {
  --navy: #070816;
  --navy-2: #090a1b;
  --purple-deep: #130026;
  --purple-card: #1b0b2e;
  --purple: #7b2ff7;
  --purple-soft: #b46cff;
  --gold: #ffd21f;
  --orange: #ff9f1c;
  --white: #ffffff;
  --muted: #bfc3d9;
  --line: rgba(191, 195, 217, .16);
  --shadow: 0 22px 60px rgba(0, 0, 0, .42);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(123, 47, 247, .28), transparent 35rem),
    radial-gradient(circle at 5% 14%, rgba(255, 210, 31, .08), transparent 22rem),
    linear-gradient(180deg, #050612 0%, var(--navy) 42%, #050612 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 42;
  background:
    linear-gradient(90deg, rgba(7, 8, 22, .22), rgba(19, 0, 38, .46)),
    rgba(7, 8, 22, .28);
  backdrop-filter: blur(7px);
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .4), transparent 72%);
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--gold);
  color: #140d00;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 32px), 860px);
}

.section-pad {
  padding: 114px 0 34px;
}

.section-block {
  margin-top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 18, .68);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 22, .94);
  border-color: var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}

.nav-shell {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, .86);
  position: relative;
  padding: 24px 0;
}

.site-nav a::before {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  border-radius: 999px;
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn span {
  font-size: 25px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  border-radius: 8px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease, background .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  background: var(--gold);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #130d00;
  background: linear-gradient(135deg, var(--gold), #ffb700);
  box-shadow: 0 12px 30px rgba(255, 210, 31, .24);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), #4c19bd);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(123, 47, 247, .25);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(180, 108, 255, .7);
  background: rgba(19, 0, 38, .55);
}

.btn-small {
  min-height: 38px;
  font-size: 12px;
  padding-inline: 15px;
  color: #130d00;
  background: var(--gold);
}

.hero {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(7, 8, 22, .08), rgba(7, 8, 22, .88)),
    linear-gradient(90deg, rgba(7, 8, 22, .9), rgba(19, 0, 38, .44) 48%, rgba(7, 8, 22, .9)),
    linear-gradient(180deg, rgba(7, 8, 22, .2), rgba(7, 8, 22, .92)),
    radial-gradient(circle at 60% 35%, rgba(255, 210, 31, .2), transparent 16rem),
    linear-gradient(115deg, rgba(19, 0, 38, .88) 0%, rgba(23, 8, 57, .78) 45%, rgba(7, 8, 22, .92) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 68px 0 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(123, 47, 247, .1), rgba(0, 0, 0, .92)),
    radial-gradient(ellipse at 18% 34%, rgba(255, 255, 210, .45) 0 2px, transparent 48px),
    radial-gradient(ellipse at 82% 32%, rgba(255, 255, 210, .42) 0 2px, transparent 54px),
    linear-gradient(176deg, transparent 0 53%, rgba(255, 255, 255, .08) 53.2% 54%, transparent 54.4%),
    linear-gradient(184deg, transparent 0 53%, rgba(255, 255, 255, .08) 53.2% 54%, transparent 54.4%);
  opacity: .9;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -85px;
  height: 265px;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(41, 132, 58, .42), rgba(7, 8, 22, .95) 65%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  border-radius: 50% 50% 0 0;
}

.stadium-lights {
  position: absolute;
  inset: 74px 0 auto;
  height: 130px;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 40%, rgba(255, 244, 184, .62), transparent 58px),
    radial-gradient(circle at 90% 40%, rgba(255, 244, 184, .62), transparent 58px),
    linear-gradient(18deg, transparent 10%, rgba(255, 255, 255, .12) 10.5%, transparent 11.5%),
    linear-gradient(-18deg, transparent 10%, rgba(255, 255, 255, .12) 10.5%, transparent 11.5%);
  opacity: .6;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, .6fr) minmax(285px, .8fr);
  align-items: center;
  gap: 30px;
}

.hero-copy,
.hero-trophy,
.countdown-card {
  contain: layout paint;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 210, 31, .25);
}

.hero-subtitle {
  max-width: 560px;
  margin: 16px 0 12px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
}

.meta-line {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .92);
  font-weight: 800;
}

.meta-line span {
  color: var(--gold);
  font-size: 11px;
  margin-right: 6px;
}

.meta-line span + span {
  margin-left: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trophy {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
}

.hero-trophy::before {
  content: "";
  position: absolute;
  inset: 14% 8% 4%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 210, 31, .2), transparent 34%),
    radial-gradient(circle at 50% 68%, rgba(123, 47, 247, .18), transparent 58%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-trophy img {
  position: relative;
  width: min(292px, 100%);
  height: auto;
  aspect-ratio: 196 / 207;
  object-fit: contain;
  object-position: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 0 42px rgba(255, 210, 31, .38));
  animation: trophyFloat 5s ease-in-out infinite;
}

@keyframes trophyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.countdown-card {
  border: 1px solid rgba(180, 108, 255, .42);
  border-radius: var(--radius);
  background: rgba(8, 8, 24, .76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
  padding: 28px;
  text-align: center;
}

.countdown-card p {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 900;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.countdown span {
  display: grid;
  gap: 4px;
  position: relative;
}

.countdown span:not(:last-child)::after {
  content: ":";
  position: absolute;
  top: 2px;
  right: -9px;
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
}

.countdown strong {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.countdown small {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.intro-copy {
  padding: 16px 0 4px;
}

.intro-copy p {
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.match-quick-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.match-quick-links .action-card {
  min-height: 84px;
  width: 100%;
}

.match-quick-links .action-card strong,
.match-quick-links .action-card small,
.match-quick-links .action-card em {
  overflow-wrap: normal;
  word-break: normal;
}

.action-card,
.panel,
.team-card,
.venue-card,
.update-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
    rgba(12, 12, 31, .84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  border-radius: var(--radius);
}

.action-card {
  min-height: 92px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-content: center;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.action-card:hover,
.team-card:hover,
.venue-card:hover,
.update-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 47, 247, .72);
  box-shadow: 0 18px 38px rgba(123, 47, 247, .18);
}

.card-icon {
  grid-row: span 3;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(123, 47, 247, .18);
  border: 1px solid rgba(180, 108, 255, .4);
  font-size: 0;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.media-card .card-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 210, 31, .07);
  border-color: rgba(255, 210, 31, .28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.media-card .card-thumb::before,
.media-card .card-thumb::after {
  content: none;
}

.media-card .card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform .35s ease;
}

.media-card:hover .card-thumb img {
  transform: scale(1.16);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.quick-actions .action-card:nth-child(1) .card-icon::before,
.quick-actions .action-card:nth-child(2) .card-icon::before,
.quick-actions .action-card:nth-child(3) .card-icon::before {
  width: 24px;
  height: 24px;
  border: 2px solid #b56cff;
  border-radius: 5px;
  background:
    linear-gradient(#b56cff 0 0) 5px 8px / 4px 4px no-repeat,
    linear-gradient(#b56cff 0 0) 13px 8px / 4px 4px no-repeat,
    linear-gradient(#b56cff 0 0) 5px 16px / 4px 4px no-repeat,
    linear-gradient(#b56cff 0 0) 13px 16px / 4px 4px no-repeat;
}

.quick-actions .action-card:nth-child(1) .card-icon::after,
.quick-actions .action-card:nth-child(2) .card-icon::after,
.quick-actions .action-card:nth-child(3) .card-icon::after {
  width: 24px;
  height: 6px;
  top: 9px;
  border-radius: 5px 5px 0 0;
  background: #b56cff;
}

.quick-actions .action-card:nth-child(4) .card-icon {
  color: var(--gold);
  background: rgba(255, 210, 31, .08);
  border-color: rgba(255, 210, 31, .5);
}

.quick-actions .action-card:nth-child(4) .card-icon::before {
  width: 23px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  background: linear-gradient(135deg, transparent 0 72%, rgba(255, 210, 31, .32) 73%);
}

.quick-actions .action-card:nth-child(4) .card-icon::after {
  width: 12px;
  height: 2px;
  bottom: 11px;
  background: var(--gold);
  box-shadow: 0 -6px 0 rgba(255, 210, 31, .75);
}

.quick-actions .action-card:nth-child(5) .card-icon::before {
  width: 28px;
  height: 22px;
  background:
    radial-gradient(circle at 50% 7px, #ff4b3e 0 5px, transparent 5.5px),
    radial-gradient(circle at 21% 10px, #ff4b3e 0 4px, transparent 4.5px),
    radial-gradient(circle at 79% 10px, #ff4b3e 0 4px, transparent 4.5px),
    radial-gradient(ellipse at 50% 100%, #ff4b3e 0 11px, transparent 11.5px),
    radial-gradient(ellipse at 18% 100%, rgba(255, 75, 62, .86) 0 8px, transparent 8.5px),
    radial-gradient(ellipse at 82% 100%, rgba(255, 75, 62, .86) 0 8px, transparent 8.5px);
}

.quick-actions .action-card:nth-child(6) .card-icon {
  color: #28a7ff;
  background: rgba(40, 167, 255, .08);
  border-color: rgba(40, 167, 255, .5);
}

.quick-actions .action-card:nth-child(6) .card-icon::before {
  width: 23px;
  height: 27px;
  border: 3px solid #28a7ff;
  border-bottom-width: 5px;
  border-radius: 50% 50% 48% 48%;
  transform: rotate(45deg);
}

.quick-actions .action-card:nth-child(6) .card-icon::after {
  width: 10px;
  height: 10px;
  border: 2px solid #28a7ff;
  border-radius: 50%;
}

.action-card strong,
.action-card small,
.action-card em {
  overflow-wrap: anywhere;
}

.action-card strong {
  font-size: 15px;
}

.action-card small {
  color: var(--muted);
  font-size: 12px;
}

.action-card em {
  color: var(--purple-soft);
  font-size: 12px;
  font-style: normal;
}

.pillar-summary {
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(180, 108, 255, .26);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123, 47, 247, .16), rgba(255, 210, 31, .06));
}

.pillar-summary strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-summary ul {
  margin: 0;
  padding-left: 18px;
}

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

.panel {
  padding: 18px;
}

.panel-title,
.section-heading.split,
.format-panel,
.pdf-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-title h2,
.section-heading h2,
.pdf-card h2,
.format-panel h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
}

.panel-title a,
.section-heading a,
.inline-cta,
.venue-card a {
  color: var(--purple-soft);
  font-weight: 900;
  font-size: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 22px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(123, 47, 247, .5);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.status.today,
.status.live {
  background: #02a84f;
}

.status.live {
  background: #d71920;
}

.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 26px 0 12px;
}

.team-badge {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.team-badge img,
.mini-logo,
.team-logo,
.logo-row img {
  display: inline-grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 210, 31, .22), transparent 42%),
    rgba(7, 8, 22, .42);
  filter: drop-shadow(0 0 18px rgba(123, 47, 247, .34));
}

.team-badge strong {
  line-height: 1.2;
}

.match-time {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.match-time strong {
  background: linear-gradient(135deg, #4c1e87, var(--purple));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: 26px;
  box-shadow: 0 12px 28px rgba(123, 47, 247, .28);
}

.match-time span {
  order: -1;
  font-weight: 900;
  color: var(--muted);
}

.match-time small,
.venue-line,
.section-text,
.venue-card p,
.format-panel p,
.pdf-card p,
.about-copy p,
.footer-brand p,
.footer-bottom,
details p {
  color: var(--muted);
}

.venue-line {
  text-align: center;
  margin: 12px 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section-text {
  margin: 16px 0 0;
  font-size: 14px;
}

.breadcrumb-nav {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.breadcrumb-nav a {
  color: var(--muted);
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-filter {
  position: sticky;
  top: 88px;
  z-index: 5;
}

.table-search {
  min-height: 42px;
  width: min(100%, 360px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 22, .72);
  color: var(--white);
  padding: 10px 12px;
}

.table-search::placeholder {
  color: var(--muted);
}

.section-text.long {
  font-size: 16px;
}

.match-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.match-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.match-list li:last-child {
  border-bottom: 0;
}

.mini-logo {
  width: 52px;
  flex: 0 0 52px;
}

.alt { background: conic-gradient(from 90deg, #32b7ff, #ffd21f, #7b2ff7); }
.red { background: conic-gradient(from 90deg, #ff4b3e, #ffd21f, #7b2ff7); }
.green { background: conic-gradient(from 90deg, #0ad774, #ffd21f, #7b2ff7); }
.orange { background: conic-gradient(from 90deg, #ff9f1c, #ffd21f, #7b2ff7); }
.gold { background: conic-gradient(from 90deg, #ffd21f, #ff9f1c, #fff0a4); }

.table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Shared responsive table contract for all retained CPL pages. */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.cpl-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cpl-table th,
.cpl-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.cpl-table th {
  background-color: #f4f4f4;
  color: #111;
  font-weight: bold;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
}

thead {
  background: linear-gradient(90deg, rgba(123, 47, 247, .45), rgba(19, 0, 38, .8));
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(191, 195, 217, .11);
}

th {
  color: #eee6ff;
  text-transform: uppercase;
  font-size: 13px;
}

.inline-cta {
  display: inline-flex;
  margin-top: 14px;
}

.compact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.05fr 1.05fr;
  gap: 14px;
  align-items: stretch;
}

.dashboard-strip {
  margin-top: 10px;
}

.dashboard-tile {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border-color: rgba(180, 108, 255, .26);
  background:
    radial-gradient(circle at 18% 0, rgba(123, 47, 247, .22), transparent 12rem),
    radial-gradient(circle at 100% 10%, rgba(255, 210, 31, .08), transparent 10rem),
    linear-gradient(180deg, rgba(27, 11, 46, .72), rgba(9, 10, 26, .92));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.dashboard-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 30%, rgba(123, 47, 247, .08));
  opacity: .7;
}

.dashboard-tile > * {
  position: relative;
  z-index: 1;
}

.dashboard-tile .panel-title {
  align-items: flex-start;
}

.dashboard-tile .panel-title h2 {
  max-width: 12ch;
  font-size: clamp(22px, 2.4vw, 32px);
}

.tile-kicker,
.tile-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 31, .25);
  background: rgba(255, 210, 31, .08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

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

.month-card {
  min-height: 118px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 108, 255, .42);
  background:
    linear-gradient(145deg, rgba(123, 47, 247, .24), rgba(19, 0, 38, .62)),
    radial-gradient(circle at 100% 0, rgba(255, 210, 31, .15), transparent 5.5rem);
  display: grid;
  align-content: center;
  gap: 6px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.month-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 31, .52);
  box-shadow: 0 16px 36px rgba(123, 47, 247, .22);
}

.month-card strong {
  color: var(--white);
  font-size: 16px;
}

.month-card span,
.month-card b {
  color: var(--muted);
  font-size: 13px;
}

.logo-row,
.venue-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  margin: 18px 0;
}

.logo-row img {
  width: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  transition: transform .2s ease, filter .2s ease;
}

.premium-logo-row {
  gap: 9px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(180, 108, 255, .18);
  background: rgba(7, 8, 22, .38);
}

.premium-logo-row a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 210, 31, .16), transparent 70%),
    rgba(19, 0, 38, .8);
  border: 1px solid rgba(180, 108, 255, .22);
  flex: 0 0 50px;
}

.premium-logo-row img {
  width: 42px;
  height: 42px;
}

.logo-row img:hover,
.team-card:hover .team-logo {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 22px rgba(255, 210, 31, .32));
}

.venue-strip img {
  width: 31%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.premium-venue-strip {
  gap: 8px;
}

.premium-venue-strip a {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(180, 108, 255, .28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.premium-venue-strip img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  filter: saturate(1.14) contrast(1.04);
}

.mini-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin: 30px 0 26px;
  position: relative;
}

.mini-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}

.mini-timeline span {
  position: relative;
  z-index: 1;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), #b46cff);
  border: 2px solid rgba(255, 255, 255, .24);
  box-shadow: 0 0 0 7px rgba(123, 47, 247, .12), 0 12px 24px rgba(0, 0, 0, .26);
  font-size: 11px;
  font-weight: 900;
}

.mini-timeline span:last-child {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #180b00;
  border-color: rgba(255, 210, 31, .58);
  box-shadow: 0 0 0 7px rgba(255, 210, 31, .12), 0 12px 24px rgba(0, 0, 0, .26);
}

.crawl-hub {
  margin-top: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

.crawl-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.crawl-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(180, 108, 255, .24);
  border-radius: 8px;
  background: rgba(19, 0, 38, .34);
  color: #eee6ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.crawl-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 31, .45);
  background: rgba(123, 47, 247, .18);
  color: var(--white);
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

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

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

.team-card {
  padding: 18px 12px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.team-card h3 {
  margin: 0;
  font-size: 15px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.team-logo {
  width: 74px;
  height: 74px;
  padding: 7px;
  border: 1px solid rgba(255, 210, 31, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 210, 31, .28), transparent 43%),
    linear-gradient(135deg, rgba(123, 47, 247, .24), rgba(255, 210, 31, .12)),
    rgba(7, 8, 22, .64);
  box-shadow: 0 0 24px rgba(123, 47, 247, .26);
}

.team-card .section-text {
  margin: 0;
}

.team-card .btn {
  margin-top: auto;
}

.teams-grid .team-card {
  height: 100%;
}

.teams-grid .team-card h3 {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teams-grid .team-card .section-text:nth-of-type(1) {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teams-grid .team-card .section-text:nth-of-type(2) {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teams-grid .team-card .section-text:nth-of-type(3) {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teams-grid .team-card .btn {
  margin-top: auto;
  align-self: center;
}

.card-grid .team-card .btn,
.card-grid .team-card > a.btn,
.team-card > a.btn {
  margin-top: auto;
}

.venue-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.venue-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #0f1020;
}

#venues .venue-card {
  position: relative;
  isolation: isolate;
  transition: border-color .34s ease, transform .34s ease, box-shadow .34s ease;
}

#venues .venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 18, 0) 34%, rgba(5, 6, 18, .22) 56%, rgba(5, 6, 18, .72) 100%),
    radial-gradient(circle at 16% 8%, rgba(255, 210, 31, .12), transparent 14rem),
    radial-gradient(circle at 86% 10%, rgba(123, 47, 247, .2), transparent 16rem);
  opacity: .92;
}

#venues .venue-card img {
  height: 100%;
  transform: scale(1.035);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.08) contrast(1.06) brightness(.9);
  will-change: transform;
}

#venues .venue-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 108, 255, .48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

#venues .venue-card:hover img {
  transform: scale(1.075);
  filter: saturate(1.13) contrast(1.08) brightness(.94);
}

#venues .venue-card h3,
#venues .venue-card p,
#venues .venue-card a {
  position: relative;
  z-index: 2;
}

.venue-card h3,
.venue-card p,
.venue-card a {
  margin-left: 16px;
  margin-right: 16px;
}

.venue-card h3 {
  margin-top: 14px;
  margin-bottom: 2px;
}

.venue-card p {
  margin-top: 0;
  margin-bottom: 8px;
}

.venue-card a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 16px;
}

.playoff-panel {
  padding: 28px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin: 34px 0 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 34px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), #b46cff, var(--gold));
  box-shadow: 0 0 24px rgba(123, 47, 247, .45);
}

.timeline div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.timeline span {
  width: 70px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-card);
  border: 5px solid var(--purple);
  color: var(--white);
  font-weight: 1000;
}

.timeline .final-node span {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #170b00;
  border-color: var(--gold);
}

.timeline small {
  color: var(--muted);
}

.pdf-card {
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(180, 108, 255, .48);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 210, 31, .16), transparent 16rem),
    linear-gradient(120deg, #420072, #190031 52%, #31045a);
  box-shadow: 0 24px 60px rgba(123, 47, 247, .22);
}

.pdf-icon {
  width: 104px;
  height: 126px;
  border-radius: 8px;
  display: grid;
  place-items: end center;
  padding-bottom: 20px;
  color: var(--white);
  font-size: 30px;
  font-weight: 1000;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(0, 0, 0, .18) 72%),
    linear-gradient(180deg, #ffffff 0 54%, #ef1d2a 54%);
  box-shadow: 0 22px 40px rgba(0, 0, 0, .25);
}

.pdf-card p {
  margin-top: 8px;
}

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  gap: 28px;
  color: var(--white);
  font-weight: 700;
}

.benefits li {
  break-inside: avoid;
  margin: 0 0 12px;
  position: relative;
  padding-left: 22px;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.format-panel {
  padding: 26px;
}

.format-panel > div:first-child {
  max-width: 640px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(78px, 1fr));
  gap: 8px;
}

.stats span {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 14px 10px;
  border-left: 1px solid var(--line);
}

.stats strong {
  color: var(--purple-soft);
  font-size: 28px;
}

.stats small {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: rgba(12, 12, 31, .8);
  border-radius: var(--radius);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.updates-grid {
  grid-template-columns: repeat(3, 1fr);
}

.update-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.update-card img {
  width: 120px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.update-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
}

.update-card time {
  color: var(--muted);
  font-size: 13px;
}

.about-copy {
  columns: 2;
  column-gap: 36px;
}

.about-copy p {
  margin-top: 0;
}

.bottom-stats {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.site-footer {
  margin-top: 38px;
  padding: 32px 0 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 6, 18, .98), #03040d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 36px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(123, 47, 247, .24);
  color: var(--white);
  border: 1px solid rgba(180, 108, 255, .36);
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;
}

.subpage-main {
  min-height: 58vh;
  padding-top: 26px;
}

.subpage-hero {
  margin-top: 28px;
}

.subpage-hero .panel {
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(7, 8, 22, .9), rgba(19, 0, 38, .72)),
    url("/assets/images/cpl-stadium-premium.webp") center / cover no-repeat,
    radial-gradient(circle at 86% 18%, rgba(255, 210, 31, .14), transparent 18rem),
    radial-gradient(circle at 0 0, rgba(123, 47, 247, .28), transparent 22rem),
    rgba(12, 12, 31, .88);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  text-transform: uppercase;
}

.subpage-actions {
  justify-content: flex-start;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    position: relative;
    z-index: 61;
    background: rgba(11, 11, 24, .82);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    width: min(320px, calc(100vw - 34px));
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 92px 18px 24px;
    border-left: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    background:
      radial-gradient(circle at 20% 6%, rgba(123, 47, 247, .26), transparent 12rem),
      linear-gradient(180deg, rgba(11, 11, 24, .95), rgba(11, 11, 24, .9));
    box-shadow: -28px 0 70px rgba(0, 0, 0, .52);
    backdrop-filter: blur(20px);
    transform: translateX(105%);
    transition: transform 300ms ease;
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    font-size: 14px;
    letter-spacing: 0;
  }

  .site-nav a::after {
    bottom: 6px;
    left: 68px;
    right: auto;
    width: 62px;
    height: 2px;
    background: var(--gold);
  }

  .site-nav a::before {
    display: inline-grid;
    place-items: center;
    width: 40px;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid rgba(255, 210, 31, .24);
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 210, 31, .34), transparent 45%),
      rgba(123, 47, 247, .2);
    color: var(--gold);
    font-size: 11px;
    font-weight: 1000;
    box-shadow: 0 10px 26px rgba(123, 47, 247, .18);
  }

  .site-nav a:nth-child(1)::before { content: "H"; }
  .site-nav a:nth-child(2)::before { content: "TM"; }
  .site-nav a:nth-child(3)::before { content: "FX"; }
  .site-nav a:nth-child(4)::before { content: "TE"; }
  .site-nav a:nth-child(5)::before { content: "VN"; }
  .site-nav a:nth-child(6)::before { content: "PO"; }
  .site-nav a:nth-child(7)::before { content: "PDF"; }
  .site-nav a:nth-child(8)::before { content: "Q"; }
  .site-nav a:nth-child(9)::before { content: "UP"; }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--gold);
    border-color: rgba(255, 210, 31, .35);
    background: linear-gradient(90deg, rgba(255, 210, 31, .09), rgba(123, 47, 247, .12));
  }

  .hero-grid {
    grid-template-columns: 1fr .55fr;
  }

  .countdown-card {
    grid-column: 1 / -1;
    width: min(640px, 100%);
    justify-self: center;
  }

  .quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding-top: 98px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .two-grid,
  .format-panel,
  .pdf-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .button-row {
    justify-content: center;
  }

  .hero-trophy {
    min-height: 280px;
  }

  .hero-trophy img {
    width: min(238px, 82vw);
  }

  .quick-actions,
  .card-grid,
  .updates-grid,
  .compact-grid,
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    left: 34px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 5px;
    height: auto;
  }

  .timeline div {
    grid-template-columns: 70px 1fr;
    justify-items: start;
    text-align: left;
    column-gap: 14px;
  }

  .timeline small {
    grid-column: 2;
  }

  .benefits {
    columns: 1;
  }

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

  .about-copy {
    columns: 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-shell {
    min-height: 62px;
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .meta-line {
    font-size: 14px;
  }

  .hero-actions .btn,
  .button-row .btn,
  .pdf-card .btn {
    width: 100%;
  }

  .countdown-card {
    padding: 18px 12px;
  }

  .countdown {
    gap: 6px;
  }

  .countdown span:not(:last-child)::after {
    right: -6px;
    font-size: 25px;
  }

  .countdown strong {
    font-size: 25px;
  }

  .quick-actions,
  .card-grid,
  .updates-grid,
  .compact-grid,
  .teams-grid,
  .venues-grid,
  .month-grid {
    grid-template-columns: 1fr;
  }

  .crawl-links {
    grid-template-columns: 1fr;
  }

  .action-card {
    min-height: 82px;
  }

  .panel-title,
  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .match-time span {
    order: 0;
  }

  .match-list li {
    grid-template-columns: auto 1fr;
  }

  .match-list .mini-logo:last-child {
    display: none;
  }

  .pdf-card {
    text-align: center;
    justify-items: center;
  }

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

  .stats span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .update-card {
    grid-template-columns: 96px 1fr;
  }

  .update-card img {
    width: 96px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* master architecture nav expansion */
.site-nav { gap: 14px; }
.site-nav a { font-size: 12px; white-space: nowrap; }
@media (min-width: 1181px) {
  .nav-shell { grid-template-columns: auto minmax(0, 1fr) auto; }
  .site-nav { justify-content: center; flex-wrap: wrap; row-gap: 0; }
  .site-nav a { padding: 14px 0; }
}

@media (min-width: 769px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 8, 22, .08), rgba(7, 8, 22, .88)),
      linear-gradient(90deg, rgba(7, 8, 22, .9), rgba(19, 0, 38, .44) 48%, rgba(7, 8, 22, .9)),
      url("/assets/images/cpl-stadium-premium.webp") center / cover no-repeat,
      linear-gradient(180deg, rgba(7, 8, 22, .2), rgba(7, 8, 22, .92)),
      radial-gradient(circle at 60% 35%, rgba(255, 210, 31, .2), transparent 16rem),
      linear-gradient(115deg, rgba(19, 0, 38, .88) 0%, rgba(23, 8, 57, .78) 45%, rgba(7, 8, 22, .92) 100%);
  }
}

@media (max-width: 1180px) {
  .site-nav a:nth-child(10)::before { content: "R"; }
  .site-nav a:nth-child(11)::before { content: "T"; }
  .site-nav a:nth-child(12)::before { content: "TV"; }
  .site-nav a:nth-child(13)::before { content: "LS"; }
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 8, 22, .08), rgba(7, 8, 22, .88)),
      linear-gradient(90deg, rgba(7, 8, 22, .9), rgba(19, 0, 38, .44) 48%, rgba(7, 8, 22, .9)),
      linear-gradient(180deg, rgba(7, 8, 22, .2), rgba(7, 8, 22, .92)),
      radial-gradient(circle at 60% 35%, rgba(255, 210, 31, .2), transparent 16rem),
      linear-gradient(115deg, rgba(19, 0, 38, .88) 0%, rgba(23, 8, 57, .78) 45%, rgba(7, 8, 22, .92) 100%);
  }

  .hero::after {
    height: 190px;
    bottom: -68px;
  }

  .hero-trophy {
    min-height: 260px;
  }

  .hero-trophy::before {
    filter: blur(10px);
  }

  .hero-trophy img {
    animation-duration: 7s;
    filter: drop-shadow(0 0 24px rgba(255, 210, 31, .28));
    width: min(218px, 72vw);
  }
}

/* Phase 3 player hub polish */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.stat-pill,
.icon-dot {
  background: linear-gradient(135deg, rgba(123, 47, 247, .28), rgba(255, 210, 31, .18));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.stat-pill {
  border-radius: 10px;
  padding: 14px;
}

.stat-pill strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.stat-pill span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.quick-card .icon-dot {
  align-items: center;
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  margin-bottom: 12px;
  width: 44px;
}

.quick-card a {
  color: var(--gold);
  font-weight: 800;
}

.player-media-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  overflow: hidden;
  text-align: center;
}

.player-media-card img {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  display: block;
  height: auto;
  max-width: 360px;
  object-fit: cover;
  width: 100%;
}

.player-media-card figcaption {
  color: var(--muted);
  font-size: 13px;
}

.status-badge {
  background: rgba(255, 210, 31, .12);
  border: 1px solid rgba(255, 210, 31, .35);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-right: 6px;
  padding: 5px 9px;
}

.player-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.player-card {
  background: linear-gradient(180deg, rgba(27, 11, 46, .96), rgba(10, 10, 24, .98));
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.player-card:hover {
  border-color: rgba(255, 210, 31, .34);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .38);
  transform: translateY(-5px);
}

.player-card img {
  aspect-ratio: 3 / 4;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.player-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.player-card-body h3 {
  margin: 0;
}

.player-meta {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

/* Site-wide breadcrumb alignment fix */
.breadcrumb-nav {
  width: min(calc(100% - 32px), var(--container));
  max-width: var(--container);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.breadcrumb-nav.container {
  width: min(calc(100% - 32px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, .82);
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

@media (max-width: 620px) {
  .breadcrumb-nav,
  .breadcrumb-nav.container {
    width: min(calc(100% - 24px), var(--container));
    margin-top: 14px;
    font-size: 12px;
  }
}


/* Final Core Web Vitals and scroll-paint patch: stable dark canvas, fewer mobile repaints, no white flash. */
html {
  background: #050612;
  background-color: #050612;
  scrollbar-gutter: stable;
}

body {
  background-color: #050612;
  min-height: 100svh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

main,
.site-main,
.subpage-main {
  background-color: #050612;
}

@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}

.hero,
.subpage-hero,
.site-header,
.panel,
.action-card,
.team-card,
.venue-card,
.player-card,
.update-card,
.quick-card,
.fixture-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

@supports (content-visibility: auto) {
  main > section:nth-of-type(n+5):not(.hero):not(.subpage-hero),
  .section-block:nth-of-type(n+5),
  .crawl-hub {
    content-visibility: auto;
    contain-intrinsic-size: 640px;
  }
}

@media (max-width: 900px), (hover: none) {
  html {
    scroll-behavior: auto;
    background: #050612 !important;
  }

  body,
  main,
  .site-main,
  .subpage-main {
    background: #050612 !important;
    background-color: #050612 !important;
  }

  body::before {
    display: none !important;
  }

  body.nav-open::after,
  .site-header,
  .site-header.is-scrolled,
  .site-nav {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .site-header {
    background: rgba(5, 6, 18, .98) !important;
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 72% 22%, rgba(255, 210, 31, .16), transparent 11rem),
      radial-gradient(circle at 16% 5%, rgba(123, 47, 247, .24), transparent 15rem),
      linear-gradient(160deg, rgba(19, 0, 38, .92), rgba(7, 8, 22, .98) 62%, #050612 100%) !important;
  }

  .hero::before {
    opacity: .28;
    background:
      radial-gradient(ellipse at 18% 34%, rgba(255, 244, 184, .32) 0 2px, transparent 44px),
      radial-gradient(ellipse at 82% 32%, rgba(255, 244, 184, .28) 0 2px, transparent 44px);
  }

  .hero::after {
    height: 150px;
    bottom: -58px;
    opacity: .72;
  }

  .stadium-lights {
    height: 82px;
    opacity: .24;
    background:
      radial-gradient(circle at 12% 42%, rgba(255, 244, 184, .42), transparent 42px),
      radial-gradient(circle at 88% 42%, rgba(255, 244, 184, .42), transparent 42px);
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-trophy {
    min-height: 198px;
  }

  .hero-trophy::before {
    filter: none !important;
    opacity: .5;
  }

  .hero-trophy img {
    width: min(188px, 58vw) !important;
    animation: none !important;
    filter: drop-shadow(0 0 10px rgba(255, 210, 31, .18)) !important;
  }

  .panel,
  .action-card,
  .team-card,
  .venue-card,
  .player-card,
  .update-card,
  .quick-card,
  .fixture-card {
    contain: paint;
    transform: none;
  }

  .action-card:hover,
  .team-card:hover,
  .venue-card:hover,
  .player-card:hover,
  .update-card:hover,
  .quick-card:hover,
  .fixture-card:hover {
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }
}

@media (max-width: 620px) {
  .section-pad { padding-top: 84px; }
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 17px; }
  .hero-trophy { min-height: 176px; }
  .hero-trophy img { width: min(168px, 54vw) !important; }
}

/* CWV 98+ polish: stable dark canvas, no white repaint while scrolling, lighter mobile paint. */
html,
body {
  background-color: #050612 !important;
  overscroll-behavior-y: none;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (max-width: 900px), (hover: none) {
  body {
    background: #050612 !important;
  }

  main,
  section,
  footer {
    background-color: transparent;
  }

  .hero,
  .subpage-hero,
  .site-header,
  .panel,
  .action-card,
  .team-card,
  .venue-card,
  .update-card,
  .footer {
    transform: translateZ(0);
  }

  .hero-trophy img,
  .team-logo,
  #venues .venue-card img {
    will-change: auto !important;
  }

  @supports (content-visibility: auto) {
    main > section:nth-of-type(n+5):not(.hero):not(.subpage-hero),
    .section-block:nth-of-type(n+5),
    .crawl-hub {
      content-visibility: visible;
      contain-intrinsic-size: auto;
    }
  }
}

@media (max-width: 620px) {
  .site-header {
    contain: layout paint;
  }

  .hero::before,
  .hero::after,
  .stadium-lights {
    transform: translateZ(0);
  }
}

/* GTmetrix CLS stabilization: keep visible layout dimensions fixed before late assets/scripts. */
.hero-grid,
.quick-actions,
.card-grid,
.two-grid,
.updates-grid,
.footer-grid {
  min-width: 0;
}

.hero-trophy,
.countdown-card,
.action-card,
.update-card {
  backface-visibility: hidden;
}

@media (max-width: 900px) {
  .hero-grid {
    align-items: stretch;
  }

  .countdown-card {
    min-height: 142px;
  }

  .quick-actions .action-card,
  .card-grid .action-card {
    min-height: 112px;
  }

  .update-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

/* Final mobile nav guard: keep closed navigation fully off-canvas so a lone
   "Home" link never appears below the header while preserving crawlable links. */
@media (max-width: 1180px) {
  .site-header .site-nav:not(.is-open) {
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(105%, 0, 0) !important;
  }

  .site-header .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) !important;
  }
}

/* Scroll paint guard: the dark canvas stays behind every section on mobile,
   preventing white flashes during fast scrolling. */
html,
body,
main,
.site-main,
.subpage-main {
  background: #050612 !important;
}
.schema-table-caption{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* Venue long-form guides: lightweight, responsive and free of layout-shifting JS. */
.venue-deep-guide {
  content-visibility: auto;
  contain-intrinsic-size: auto 2600px;
}

.venue-deep-shell {
  overflow: hidden;
  border: 1px solid rgba(174, 185, 207, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0, rgba(123, 47, 247, .16), transparent 30%),
    linear-gradient(145deg, rgba(14, 20, 39, .98), rgba(7, 10, 23, .98));
  box-shadow: 0 28px 72px rgba(0, 0, 0, .24);
  padding: clamp(20px, 4vw, 40px);
}

.venue-deep-heading {
  position: relative;
  max-width: 880px;
  margin-bottom: 24px;
}

.venue-deep-heading h2,
.venue-planning-panel h2,
.venue-deep-faq h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.025em;
  text-transform: none;
}

.venue-deep-location {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 12px;
  padding: 5px 11px;
  border: 1px solid rgba(110, 231, 220, .24);
  border-radius: 999px;
  background: rgba(110, 231, 220, .07);
  color: #baf8f1;
  font-size: 12px;
  font-weight: 850;
}

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

.venue-deep-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(174, 185, 207, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}

.venue-deep-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(123, 47, 247, .32), rgba(110, 231, 220, .16));
  color: #dcd1ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.venue-deep-card h3 {
  margin: 2px 0 9px;
  color: #f7f9fd;
  font-size: 17px;
  line-height: 1.25;
}

.venue-deep-card p {
  margin: 0;
  color: rgba(224, 229, 242, .78);
  font-size: 14px;
  line-height: 1.72;
}

.venue-deep-card p + p {
  margin-top: 9px;
}

.venue-planning-panel,
.venue-deep-faq {
  margin-top: 18px;
  border-color: rgba(174, 185, 207, .14);
  background: rgba(6, 10, 23, .72);
}

.venue-planning-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.venue-planning-list li {
  position: relative;
  padding: 12px 12px 12px 38px;
  border: 1px solid rgba(174, 185, 207, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  color: rgba(231, 235, 246, .84);
  font-size: 13px;
  line-height: 1.55;
}

.venue-planning-list li::before {
  content: "\2713";
  position: absolute;
  top: 12px;
  left: 13px;
  color: #6ee7dc;
  font-weight: 900;
}

.venue-deep-faq .faq-list {
  margin-top: 16px;
}

.venue-deep-faq details {
  border-color: rgba(174, 185, 207, .13);
  background: rgba(255, 255, 255, .025);
}

.venue-editorial-note {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 13px 15px;
  border-left: 3px solid #6ee7dc;
  border-radius: 0 10px 10px 0;
  background: rgba(110, 231, 220, .055);
  color: rgba(224, 229, 242, .74);
  font-size: 12px;
  line-height: 1.55;
}

.venue-editorial-note strong {
  flex: 0 0 auto;
  color: #baf8f1;
}

@media (max-width: 760px) {
  .venue-deep-grid,
  .venue-planning-list {
    grid-template-columns: 1fr;
  }

  .venue-deep-shell {
    border-radius: 18px;
    padding: 18px;
  }

  .venue-deep-card {
    grid-template-columns: 1fr;
  }

  .venue-editorial-note {
    display: block;
  }

  .venue-editorial-note strong {
    display: block;
    margin-bottom: 3px;
  }
}

/* Consent-first web push prompt */
.push-prompt[hidden] { display: none; }
.push-prompt { position: fixed; z-index: 1300; right: 18px; bottom: 18px; width: min(390px, calc(100vw - 24px)); padding: 18px; border: 1px solid rgba(110,231,220,.28); border-radius: 18px; background: rgba(8,11,27,.98); box-shadow: 0 20px 55px rgba(0,0,0,.48); color: #f7f9fd; }
.push-prompt h2 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.push-prompt > p { margin: 0 0 14px; color: rgba(224,229,242,.78); font-size: 13px; line-height: 1.55; }
.push-categories { display: grid; gap: 8px; margin: 12px 0; padding: 0; border: 0; }
.push-categories legend { margin-bottom: 7px; color: #baf8f1; font-size: 12px; font-weight: 850; }
.push-categories label { display: flex; align-items: center; gap: 9px; min-height: 36px; padding: 7px 9px; border-radius: 9px; background: rgba(255,255,255,.035); font-size: 13px; cursor: pointer; }
.push-categories input { width: 17px; height: 17px; accent-color: #6ee7dc; }
.push-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.push-status { min-height: 18px; margin: 8px 0 0; color: #ffd96a; font-size: 11px; }
.push-privacy { display: block; margin-top: 10px; color: rgba(196,205,224,.7); font-size: 10px; line-height: 1.45; }
.push-privacy a { color: #baf8f1; }
.push-disable { display: none; }
.push-prompt[data-mode="manage"] .push-disable { display: inline-flex; }
.push-manage { border: 0; background: transparent; color: #baf8f1; font: inherit; text-decoration: underline; cursor: pointer; }
@media (max-width: 520px) { .push-prompt { right: 12px; bottom: 12px; left: 12px; width: auto; max-height: calc(100vh - 24px); overflow-y: auto; } }

/* Reserved only when an ad provider is enabled; prevents banner CLS. */
.ad-reserved-slot[hidden] { display: none; }
.ad-reserved-slot { display: grid; place-items: center; width: min(100% - 24px, 970px); min-height: 250px; margin: 24px auto; overflow: hidden; contain: layout paint; border: 1px solid rgba(174,185,207,.12); border-radius: 12px; background: rgba(255,255,255,.018); }
.ad-reserved-slot > span { color: rgba(190,199,218,.55); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

/* Crawlable 16:9 primary-page graphics */
.visual-seo-section { margin-top: 18px; margin-bottom: 18px; }
.visual-seo-figure { width: 100%; margin: 20px 0 18px; overflow: hidden; border: 1px solid rgba(174,185,207,.15); border-radius: 18px; background: #090d1b; box-shadow: 0 18px 44px rgba(0,0,0,.22); }
.visual-seo-figure picture { display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg,rgba(123,47,247,.12),rgba(110,231,220,.08)); }
.visual-seo-figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.visual-seo-figure figcaption { padding: 10px 14px; color: rgba(218,224,238,.78); font-size: 12px; line-height: 1.5; }
.subpage-hero .visual-seo-figure { margin-bottom: 20px; }
@media (max-width: 640px) { .visual-seo-figure { border-radius: 13px; } .visual-seo-figure figcaption { font-size: 11px; } }

/* Pure HTML/CSS/SVG infographic system */
.interactive-infographic { position: relative; display: grid; grid-template-columns: minmax(260px,.8fr) minmax(420px,1.2fr); min-height: 360px; margin: 20px 0; overflow: hidden; border: 1px solid color-mix(in srgb,var(--infographic-accent) 35%,transparent); border-radius: 20px; background: #080d1c; }
.infographic-copy { z-index: 2; align-self: center; padding: clamp(22px,4vw,44px); }
.infographic-copy h2 { margin: 5px 0 20px; font-size: clamp(27px,4vw,48px); line-height: 1.04; }
.infographic-metrics { display: grid; gap: 9px; }
.infographic-metrics span { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.035); }
.infographic-metrics strong { color: var(--infographic-accent); font-size: 12px; letter-spacing: .08em; }
.infographic-svg { display: block; align-self: stretch; width: 100%; height: 100%; min-height: 360px; }
.comparison-table { width: 100%; min-width: 820px; border-collapse: separate; border-spacing: 0; color: #e9edf7; }
.comparison-table caption { padding: 12px; color: #baf8f1; text-align: left; font-weight: 800; }
.comparison-table th,.comparison-table td { min-height: 44px; padding: 13px 14px; border-bottom: 1px solid rgba(174,185,207,.13); text-align: left; vertical-align: middle; }
.comparison-table thead th { position: sticky; z-index: 2; top: 0; background: #11182b; color: #fff; font-weight: 900; }
.comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,.035); }
.comparison-table tbody tr:hover { background: rgba(110,231,220,.065); }
.pending-data { color: #ffd96a; font-size: 12px; font-weight: 750; }
.vector-brand-mark,.team-badge-css,.css-visual-token,.css-trophy { display: inline-grid; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: 50%; color: #fff; font-weight: 950; letter-spacing: -.04em; }
.vector-brand-mark { width: 44px; height: 44px; border: 2px solid #ffd23f; background: radial-gradient(circle at 35% 30%,#7b2ff7,#11182b 70%); font-size: 12px; }
.team-badge-css { width: 54px; height: 54px; margin-right: 8px; border: 2px solid rgba(255,255,255,.65); box-shadow: inset 0 0 0 4px rgba(0,0,0,.18); font-size: 12px; }
.team-abf{background:linear-gradient(135deg,#00a6a6,#17233f)}.team-bbt{background:linear-gradient(135deg,#123f8c,#ffd23f)}.team-gaw{background:linear-gradient(135deg,#00824b,#ffd23f)}.team-jkm{background:linear-gradient(135deg,#101820,#f7d117)}.team-slk{background:linear-gradient(135deg,#145fc2,#f0d14a)}.team-snp{background:linear-gradient(135deg,#c51f2f,#111)}.team-tkr{background:linear-gradient(135deg,#d71920,#171252)}
.css-visual-token { width: 76px; height: 76px; border-radius: 16px; background: linear-gradient(135deg,#7b2ff7,#152344); font-size: 10px; }
.css-trophy { width: 196px; height: 207px; border-radius: 38% 38% 48% 48%; background: radial-gradient(circle at 50% 28%,#fff1a0,#f4aa14 48%,#72500a); color: #111; font-size: 24px; clip-path: polygon(18% 0,82% 0,76% 55%,61% 70%,67% 91%,82% 100%,18% 100%,33% 91%,39% 70%,24% 55%); }
.h2h-widget { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; text-align: center; }
.h2h-widget>div { display: grid; justify-items: center; gap: 7px; }.h2h-widget .team-badge-css{width:82px;height:82px;margin:0;font-size:17px}.h2h-widget small{color:#b8c0d3}.h2h-widget>p{grid-column:1/-1;color:#d9deeb}.h2h-vs{color:#ffd23f;font-size:24px;font-weight:950}
.playoff-progress-list { display: grid; gap: 12px; margin-top: 18px; }
.playoff-progress-row { display: grid; grid-template-columns: minmax(220px,1fr) 2fr minmax(180px,auto); align-items: center; gap: 12px; min-height: 64px; padding: 8px 12px; border: 1px solid rgba(174,185,207,.12); border-radius: 12px; }
.playoff-progress-row>span { display:flex;align-items:center }.playoff-progress-row .team-badge-css{width:40px;height:40px;font-size:10px}
.progress-track { height: 12px; overflow: hidden; border-radius: 999px; background: #20283a; }.progress-track i{display:block;width:var(--progress);height:100%;background:linear-gradient(90deg,#7b2ff7,#6ee7dc);transition:width .4s ease}
.playoff-progress-row small { color: #b8c0d3; }
@media(max-width:780px){.interactive-infographic{grid-template-columns:1fr;min-height:620px}.infographic-svg{min-height:300px}.h2h-widget{grid-template-columns:1fr}.h2h-vs{transform:rotate(90deg)}.h2h-widget>p{grid-column:auto}.playoff-progress-row{grid-template-columns:1fr}.comparison-table th,.comparison-table td{padding:12px;min-height:44px}}

/* Schedule search, snippets and time-zone experience */
html { scroll-behavior: smooth; }
.snippet-answer { max-width: 78ch; margin: 14px 0 0; color: rgba(245,247,252,.92); font-size: 17px; line-height: 1.7; }
.schedule-toc .panel { display: flex; align-items: center; gap: 20px; }
.schedule-toc ol { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding-left: 22px; }
.schedule-toc a { color: #baf8f1; text-underline-offset: 4px; }
.snippet-list ol, .check-list { display: grid; gap: 10px; padding-left: 24px; color: rgba(231,235,246,.86); }
.schedule-tools { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr auto; gap: 12px; align-items: end; margin: 18px 0 8px; }
.schedule-field { display: grid; gap: 6px; min-width: 0; }
.schedule-field label { color: #dfe5f3; font-size: 12px; font-weight: 800; }
.schedule-field input, .schedule-field select { width: 100%; min-height: 44px; padding: 9px 11px; border: 1px solid rgba(174,185,207,.22); border-radius: 10px; background: #0b1020; color: #f7f9fd; }
.schedule-results { margin: 8px 0 14px; color: #baf8f1; font-size: 13px; }
.converted-time { display: block; margin-top: 4px; color: #6ee7dc; font-size: 11px; font-weight: 800; white-space: nowrap; }
.venue-insight-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.timezone-examples { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 16px; }
.timezone-examples p { margin: 0; padding: 14px; border: 1px solid rgba(174,185,207,.14); border-radius: 12px; background: rgba(255,255,255,.025); }
.venue-insight-grid section { padding: 16px; border: 1px solid rgba(174,185,207,.14); border-radius: 14px; background: rgba(255,255,255,.025); }
.venue-insight-grid h3 { margin: 0 0 8px; font-size: 17px; }
.venue-insight-grid p, .venue-disclaimer { color: rgba(224,229,242,.8); line-height: 1.65; }
.pdf-download { margin-top: 10px; }
@media (max-width: 900px) { .schedule-tools { grid-template-columns: 1fr 1fr; } .schedule-search { grid-column: 1/-1; } }
@media (max-width: 640px) { .schedule-toc .panel { align-items: flex-start; flex-direction: column; } .schedule-toc ol { display: grid; } .schedule-tools, .venue-insight-grid, .timezone-examples { grid-template-columns: 1fr; } }

/* JSON-driven live match banner: fixed overlay avoids layout shift. */
.live-match-banner[hidden] { display: none; }
.live-match-banner { position: fixed; z-index: 1200; top: 76px; right: 14px; left: 14px; max-width: 1160px; margin-inline: auto; border: 1px solid rgba(110,231,220,.38); border-radius: 14px; background: rgba(7,10,24,.97); box-shadow: 0 16px 42px rgba(0,0,0,.42); color: #f7f9fd; backdrop-filter: blur(12px); }
.live-match-inner { display: grid; grid-template-columns: auto minmax(160px,1fr) minmax(220px,2fr) auto auto; align-items: center; gap: 12px 18px; padding: 12px 16px; }
.live-match-pill { display: inline-flex; align-items: center; gap: 7px; color: #ff9d9d; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.live-match-pill::before { width: 8px; height: 8px; border-radius: 50%; background: #ff5252; box-shadow: 0 0 0 5px rgba(255,82,82,.12); content: ""; animation: live-pulse 1.8s infinite; }
.live-match-banner[data-phase="scheduled"] .live-match-pill { color: #ffd96a; }
.live-match-banner[data-phase="scheduled"] .live-match-pill::before { background: #ffd23f; box-shadow: 0 0 0 5px rgba(255,210,63,.12); animation: none; }
.live-match-teams { font-size: 15px; font-weight: 900; }
.live-match-copy { min-width: 0; }
.live-match-status { display: block; overflow: hidden; color: rgba(242,245,252,.9); font-size: 14px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.live-match-updated { display: block; margin-top: 2px; color: rgba(192,201,221,.68); font-size: 10px; }
.live-match-rate { color: #6ee7dc; font-size: 13px; font-weight: 900; white-space: nowrap; }
.live-match-stream { min-height: 38px; padding: 9px 13px; white-space: nowrap; }
@keyframes live-pulse { 50% { opacity: .45; transform: scale(.82); } }
@media (prefers-reduced-motion: reduce) { .live-match-pill::before { animation: none; } }
@media (max-width: 760px) {
  .live-match-banner { top: 68px; right: 8px; left: 8px; }
  .live-match-inner { grid-template-columns: auto 1fr auto; gap: 7px 10px; padding: 10px 12px; }
  .live-match-pill { grid-row: 1 / span 2; }
  .live-match-copy { grid-column: 2 / 4; }
  .live-match-rate { grid-column: 2; }
  .live-match-stream { grid-column: 3; grid-row: 3; }
  .live-match-teams { font-size: 13px; }
  .live-match-status { font-size: 12px; }
}
