:root {
  --bg: #020817;
  --bg-2: #07132b;
  --ink: #ffffff;
  --muted: #b8c3dd;
  --line: rgba(255, 255, 255, 0.13);
  --panel: rgba(17, 18, 53, 0.88);
  --panel-2: rgba(34, 17, 67, 0.88);
  --yellow: #ffd000;
  --yellow-2: #ffb400;
  --purple: #7a23d3;
  --pink: #e010ab;
  --cyan: #39c5ff;
  --green: #13ba4a;
  --red: #ed2024;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(122, 35, 211, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 35%, rgba(255, 208, 0, 0.09), transparent 30rem),
    linear-gradient(180deg, #020817 0%, #071124 42%, #07051d 100%);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.8), rgba(6, 8, 31, 0.96));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.site-ad-slot {
  display: grid;
  justify-items: center;
  min-height: 290px;
  padding: 18px clamp(10px, 4vw, 44px) 22px;
  overflow: hidden;
  background: #040918;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-ad-label {
  margin-bottom: 8px;
  color: #8f9bb3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-ad-frame {
  width: 300px;
  height: 250px;
  max-width: 100%;
  overflow: hidden;
}

.site-ad-frame iframe {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 250px;
  border: 0;
  position: relative;
  z-index: 2;
}

.top-strip,
.main-header,
main,
.site-footer {
  padding-left: clamp(18px, 4vw, 44px);
  padding-right: clamp(18px, 4vw, 44px);
}

.top-strip {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #020712;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8deee;
  font-size: 12px;
}

.top-strip p {
  margin: 0;
  font-weight: 600;
}

.top-strip nav,
.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.top-strip nav {
  gap: 22px;
  white-space: nowrap;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(4, 12, 32, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #061128;
  background: conic-gradient(from 90deg, var(--yellow), var(--pink), #20e269, #39c5ff, var(--yellow));
  clip-path: polygon(50% 0, 62% 30%, 96% 16%, 77% 50%, 100% 80%, 62% 70%, 50% 100%, 38% 70%, 0 80%, 23% 50%, 4% 16%, 38% 30%);
  font-family: Anton, sans-serif;
  font-size: 16px;
}

.year {
  color: var(--yellow);
  font-family: Anton, sans-serif;
  font-size: 36px;
}

.primary-nav {
  justify-content: center;
  gap: clamp(12px, 1.7vw, 28px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 38px 0;
  color: #edf2ff;
  white-space: nowrap;
}

.primary-nav a.active {
  color: var(--yellow);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  background: var(--yellow);
}

.header-actions {
  gap: 14px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 24px;
  height: 24px;
}

.ticket-button,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-button,
.newsletter button {
  color: #061128;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 10px 24px rgba(255, 208, 0, 0.24);
}

.compact {
  min-height: 40px;
  padding: 0 22px;
  font-size: 15px;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(3, 8, 22, 0.94) 0%, rgba(6, 10, 32, 0.7) 42%, rgba(5, 8, 24, 0.28) 100%),
    url("/assets/images/venues/sabina-park.webp") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -6% -12% 35%;
  height: 70%;
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 208, 0, 0.5), transparent 18%),
    radial-gradient(circle at 58% 45%, rgba(224, 16, 171, 0.65), transparent 28%),
    radial-gradient(circle at 74% 58%, rgba(57, 197, 255, 0.5), transparent 28%);
  filter: saturate(1.3);
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span,
h2 span {
  color: var(--yellow);
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: clamp(28px, 2.7vw, 42px);
}


.panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(21, 24, 62, 0.94), rgba(14, 17, 45, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.newsletter svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

main {
  padding-top: 24px;
  padding-bottom: 0;
}

.panel {
  border-radius: var(--radius);
  padding: 20px;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

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

.countdown div {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 10px 6px;
  border-radius: 6px;
  background: rgba(80, 30, 148, 0.58);
}

.countdown strong,
.countdown span {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.countdown strong {
  font-size: 38px;
  line-height: 1;
}

.countdown span {
  color: #dce3fa;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
}


.newsletter,
.site-footer .legal {
  display: flex;
  align-items: center;
}


.newsletter,
.site-footer {
  margin-top: 22px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 10px 6px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.newsletter {
  justify-content: space-between;
  gap: 28px;
  padding: 22px 30px;
  border-radius: 6px;
  background: linear-gradient(90deg, #4c16bc, #8a23dc 55%, #5316a7);
}

.newsletter > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.newsletter h2,
.newsletter p {
  margin: 0;
}

.newsletter p {
  color: #e7ddff;
}

.newsletter form {
  flex: 1;
  display: flex;
  max-width: 860px;
  min-width: 280px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.13);
}

.newsletter input::placeholder {
  color: #cab8ee;
}

.newsletter button {
  min-width: 250px;
  border: 0;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.site-footer {
  padding-top: 34px;
  padding-bottom: 28px;
  background: #040b1c;
}

.site-footer {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer .legal {
  grid-column: 1 / -1;
  gap: 18px;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .legal span {
  margin-right: auto;
}

@media (max-width: 1220px) {
  .main-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .primary-nav a {
    padding: 0 0 18px;
  }
}

@media (max-width: 820px) {
  .top-strip,
  .main-header,
  main,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-strip {
    display: none;
  }

  .main-header {
    position: static;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 8px;
    gap: 12px;
  }

  .year {
    font-size: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 780px;
  }

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

  .hero h1 span {
    font-size: 28px;
  }

  
  .site-footer,
  .site-footer nav {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .newsletter,
  .newsletter > div,
  .newsletter form {
    display: grid;
  }

  .newsletter button,
  .newsletter input {
    width: 100%;
    min-width: 0;
    border-radius: 4px;
    border: 0;
  }

  .site-footer .legal {
    display: grid;
    gap: 8px;
  }
}

/* User-provided image hero mode. Put the supplied image at:
   /assets/images/hero/cpl-2026-reference-hero.webp */

/* Reference polish pass: tighter CPL dashboard layout with player-led hero. */
.site-shell {
  width: min(100%, 1440px);
}

.top-strip {
  min-height: 34px;
  font-size: 11px;
}

.main-header {
  min-height: 86px;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(5, 13, 37, 0.98), rgba(4, 10, 29, 0.96));
}

.brand-mark {
  width: 52px;
  height: 52px;
}

.year {
  font-size: 32px;
}

.primary-nav {
  gap: clamp(11px, 1.35vw, 22px);
  font-size: 15px;
}

.primary-nav a {
  padding: 34px 0;
}

.ticket-button,
.newsletter button {
  min-height: 42px;
  padding: 0 22px;
  font-size: 15px;
}

.hero {
  min-height: 540px;
  grid-template-columns: minmax(390px, 0.9fr) minmax(560px, 1.1fr);
  background:
    linear-gradient(90deg, rgba(3, 7, 22, 0.96) 0%, rgba(4, 9, 27, 0.82) 35%, rgba(6, 8, 26, 0.42) 72%, rgba(4, 7, 20, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 11, 35, 0.18), rgba(5, 8, 24, 0.82)),
    url("/assets/images/venues/sabina-park.webp") center/cover;
}

.hero::before {
  inset: auto -6% -10% 31%;
  height: 78%;
  background:
    radial-gradient(circle at 34% 64%, rgba(255, 208, 0, 0.76), transparent 15%),
    radial-gradient(circle at 49% 55%, rgba(224, 16, 171, 0.75), transparent 25%),
    radial-gradient(circle at 68% 59%, rgba(57, 197, 255, 0.58), transparent 27%),
    linear-gradient(100deg, rgba(255, 208, 0, 0.42), rgba(224, 16, 171, 0.36), rgba(57, 197, 255, 0.32));
  clip-path: polygon(0 42%, 16% 26%, 24% 46%, 38% 12%, 48% 44%, 64% 16%, 72% 46%, 94% 28%, 100% 78%, 0 100%);
  filter: saturate(1.35);
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 19px;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(58px, 5.8vw, 88px);
  line-height: 1.05;
}

.hero h1 span {
  max-width: 520px;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 0.92;
}

.panel {
  padding: 18px;
  border-color: rgba(127, 91, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(22, 24, 65, 0.96), rgba(10, 14, 40, 0.94));
}

h2 {
  font-size: 24px;
}

.countdown div {
  min-height: 76px;
}

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

@media (max-width: 1220px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 850px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 780px;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 48px;
  }

  .hero h1 span {
    max-width: 100%;
    font-size: 27px;
  }
}

/* Portal upgrade: reference-inspired hero and match-center homepage flow. */
.hero {
  min-height: 620px;
  grid-template-columns: minmax(480px, 0.96fr) minmax(560px, 1.04fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(3, 7, 22, 0.98) 0%, rgba(5, 8, 24, 0.9) 29%, rgba(12, 8, 30, 0.55) 58%, rgba(4, 5, 18, 0.2) 100%),
    radial-gradient(circle at 74% 42%, rgba(255, 128, 35, 0.46), transparent 27%),
    radial-gradient(circle at 68% 58%, rgba(143, 38, 255, 0.34), transparent 36%),
    url("/assets/images/venues/sabina-park.webp") center/cover;
}

.hero::before {
  inset: 0 0 auto 0;
  height: 100%;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 208, 0, 0.42), transparent 15%),
    linear-gradient(160deg, transparent 36%, rgba(255, 96, 0, 0.22) 56%, rgba(149, 48, 255, 0.2) 78%, transparent);
  clip-path: none;
  opacity: 0.88;
}

.eyebrow {
  color: #a45bff;
  font-size: 22px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(74px, 6.7vw, 118px);
  line-height: 1.05;
}

.hero h1 span {
  max-width: 760px;
  margin-top: 14px;
  color: var(--yellow);
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 0.92;
}

.versus {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 208, 0, 0.62);
  border-radius: 50%;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
}

@media (max-width: 1220px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 980px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 760px;
  }

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

  .hero h1 span {
    max-width: 350px;
    font-size: 34px;
  }

  .versus {
    justify-self: center;
  }
}

/* Final hero crop: keep the user's supplied artwork, remove its baked-in menu strip,
   and let the real site header be the only navigation. */

.top-strip {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.main-header {
  min-height: 96px;
  background: linear-gradient(180deg, rgba(3, 8, 24, 0.99), rgba(4, 10, 30, 0.98));
}


.year,
.primary-nav,
.ticket-button {
  font-family: "Barlow Condensed", Anton, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.year {
  font-size: 40px;
  font-weight: 900;
}

.primary-nav {
  gap: clamp(14px, 1.6vw, 30px);
  font-size: 19px;
  font-weight: 900;
}

.primary-nav a {
  padding: 37px 0;
  line-height: 1;
}

.ticket-button {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 1220px) {
  .primary-nav {
    font-size: 18px;
  }
}

@media (max-width: 820px) {

  .year {
    font-size: 32px;
  }

  .primary-nav {
    font-size: 17px;
  }

  .ticket-button {
    min-height: 46px;
    font-size: 16px;
  }
}

/* Site-wide readability polish for generated CPL Insider pages. */
:root {
  --copy: #e8eefc;
  --muted-readable: #b8c3dd;
  --panel-readable: rgba(17, 21, 58, 0.94);
}

html {
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--copy);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
li,
dd,
small,
input,
button,
table {
  letter-spacing: 0;
}

p,
li,
dd,
.footer-brand p {
  color: var(--copy);
  line-height: 1.68;
}

small,
.site-footer a,
.site-footer span {
  color: var(--muted-readable);
}

h2,
h3,
.ticket-button,
.newsletter button {
  letter-spacing: 0;
}

h2 {
  line-height: 1.08;
}

h3 {
  line-height: 1.12;
}

a,
button {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 208, 0, 0.9);
  outline-offset: 3px;
}

.panel {
  background: linear-gradient(145deg, var(--panel-readable), rgba(12, 17, 48, 0.94));
}

.panel {
  padding: 22px;
}

.countdown strong {
  font-family: "Barlow Condensed", Anton, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

table {
  min-width: 560px;
  font-size: 14px;
  line-height: 1.35;
}

th,
td {
  padding: 11px 8px;
}

td:nth-child(2),
th:nth-child(2) {
  min-width: 170px;
}

.newsletter input {
  color: #fff;
  font-size: 15px;
}

.site-footer a,
.site-footer span {
  line-height: 1.35;
}

.site-footer strong {
  line-height: 1.08;
}

@media (max-width: 1220px) {
  .primary-nav {
    scrollbar-width: thin;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .main-header {
    align-items: start;
  }

  .primary-nav {
    width: 100%;
    padding-bottom: 6px;
    line-height: 1;
  }

  .primary-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  .panel {
    padding: 18px;
  }

  .site-footer {
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .year {
    font-size: 28px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .ticket-button {
    min-height: 42px;
    padding-inline: 18px;
  }

  .newsletter {
    padding: 18px;
  }
}

/* Visual typography refresh v3: contrast, no-wrap nav, and cleaner font loading. */
body {
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.site-shell {
  width: min(100%, 1460px);
}

.top-strip {
  min-height: 38px;
  font-size: 14px !important;
}

.main-header {
  min-height: 104px;
  gap: 30px;
}

.brand-mark {
  width: 62px;
  height: 62px;
}

.year {
  font-size: 44px !important;
}

.primary-nav {
  gap: clamp(18px, 1.9vw, 34px) !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.primary-nav a {
  padding: 40px 0 !important;
  white-space: nowrap !important;
}

.ticket-button {
  min-height: 58px !important;
  padding-inline: 32px !important;
  font-size: 20px !important;
}

main {
  padding-top: 28px;
}

.panel {
  border-color: rgba(255, 255, 255, 0.17);
}

.panel {
  padding: 24px !important;
}


.newsletter,
.site-footer {
  margin-top: 26px !important;
}

h2,
.newsletter h2,
.site-footer strong {
  font-family: "Barlow Condensed", Anton, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

h2 {
  font-size: 34px !important;
  line-height: 1.02 !important;
}


.compact {
  font-size: 17px !important;
}

table {
  font-size: 14px !important;
}

th {
  font-size: 12px !important;
}

th,
td {
  padding: 12px 9px !important;
}


.site-footer a,
.site-footer span {
  font-size: 13px !important;
  line-height: 1.48 !important;
}

.newsletter {
  padding: 24px !important;
}

.newsletter h2 {
  font-size: 31px !important;
}

.newsletter p,
.footer-brand p {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.newsletter input {
  min-height: 52px !important;
  font-size: 16px !important;
}

.newsletter button {
  min-height: 52px !important;
  font-size: 18px !important;
}

.site-footer {
  padding-top: 40px !important;
  padding-bottom: 34px !important;
}

.site-footer strong {
  font-size: 20px !important;
}

@media (max-width: 1220px) {
  .primary-nav {
    font-size: 20px !important;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15.5px !important;
  }

  .main-header {
    min-height: auto;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .year {
    font-size: 34px !important;
  }

  .primary-nav {
    gap: 18px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .primary-nav a {
    padding: 0 0 16px !important;
    white-space: nowrap !important;
  }

  h2 {
    font-size: 30px !important;
  }
}

/* ── Mobile Navigation Hamburger ─────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .top-strip nav {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .main-header {
    grid-template-columns: auto 1fr auto !important;
    min-height: 70px !important;
  }

  .primary-nav {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    z-index: 200 !important;
    width: min(300px, 80vw) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 80px 0 30px !important;
    background: rgba(4, 10, 28, 0.98) !important;
    backdrop-filter: blur(22px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    transform: translateX(110%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
  }

  .primary-nav.is-open {
    transform: translateX(0) !important;
  }

  .primary-nav a {
    display: block !important;
    padding: 16px 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    font-size: 20px !important;
    white-space: normal !important;
  }

  .primary-nav a.active {
    color: var(--yellow) !important;
    background: rgba(255, 208, 0, 0.06) !important;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
  }

  .nav-overlay.is-open {
    display: block;
  }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE VISUAL HIERARCHY — 5 ZONE REDESIGN
   v20260714-hierarchy1
   ═══════════════════════════════════════════════════════════════ */

/* ── Zone 1: Match Hub (purple / yellow stadium energy) ───────── */

/* Opening match: full-width feature strip, not a small card */

.versus {
  font-family: Anton, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  letter-spacing: -0.02em;
  flex: 0 0 auto;
}

/* Match quick cards — distinct from generic .panel */

/* ── Zone 2: Teams Band (dark transparent with accent) ─────────── */

/* Zone 2: Section heading style — with left accent bar + eyebrow */

/* Team cards: enhanced glow, no flat panel look */

/* ── Zone 3: Media / Dashboard (editorial / newspaper style) ──── */

/* Editorial section label for dashboard */

/* Fixtures card: cleaner data-list style, less decorative */

/* News cards: horizontal editorial style */

/* Points table: data-table style */

/* Highlights card */

/* Numbers / stats card */

/* ── Zone 4: Match Center lower grid ────────────────────────────── */

/* Top performers card */

/* Live score in match center */

/* ── Zone 5: Venues / Fan Zone ──────────────────────────────────── */

/* Fan zone: icon grid clean style */

/* ── Zone 6: SEO Guide — article layout, reading-friendly ─────── */

/* Eyebrow label */

/* Topic cards: article blocks, not decorative cards */

/* ── Zone 7: FAQ — compact answer grid ──────────────────────────── */

/* FAQ section heading */

/* FAQ cards: compact, not same height as match panels */

/* ── Zone 8: Social / Newsletter — polished ──────────────────────── */

.newsletter {
  margin-top: 18px !important;
  background: linear-gradient(90deg, #4c16bc, #8a23dc 55%, #5316a7) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 40px rgba(122, 35, 211, 0.35) !important;
}

/* ── Spacing rhythm: zone vertical gaps ─────────────────────────── */

/* Generous top spacing for each zone within main */

/* ── Responsive: zone adjustments ───────────────────────────────── */

/* Homepage visual hierarchy v1 final overrides. */
.home-page {
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0) 0, rgba(2, 8, 23, 0) 720px, rgba(3, 6, 20, 0.72) 720px),
    radial-gradient(circle at 12% 36%, rgba(255, 208, 0, 0.06), transparent 24rem),
    radial-gradient(circle at 88% 62%, rgba(57, 197, 255, 0.06), transparent 26rem);
}

.home-page #teams {
  margin-inline: calc(clamp(18px, 4vw, 44px) * -1);
  padding-inline: clamp(18px, 4vw, 44px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 208, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(2, 6, 20, 0.98), rgba(4, 11, 29, 0.98)) !important;
}

.home-page .panel {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

@media (max-width: 820px) {
  
  .home-page #teams {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

/* Homepage polish v2: rebalance media, article, and FAQ zones. */

/* Custom Mobile Navigation & Squad Slider Fixes */
.team-silo-nav {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.team-silo-nav::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .team-silo-nav {
    top: 8px !important;
  }
}

@media (min-width: 901px) {
  .team-silo-nav {
    top: 92px !important;
  }
}

/* CPL live-score hub: the same data state renders pre-match, live, and completed matches. */
.live-score-page {
  margin-inline: auto;
  max-width: 1280px;
  padding: 34px clamp(16px, 3vw, 34px) 72px;
}
.ls-status > span.is-live,
.live-feed-badge.is-live { border-color: #29e08a; color: #29e08a; }
.ls-status > span.is-complete { border-color: #ffd000; color: #ffd000; }
.ls-recent-overs span.is-boundary { background: #168d4d; }
.ls-recent-overs span.is-wicket { background: #b92845; }
.ls-lineups.is-visible { display: block; }
.ls-lineups-heading { align-items: end; display: flex; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.ls-lineups-heading h3 { font-size: 1.55rem; margin: 3px 0 0; }
.ls-lineups-heading > span { color: #aeb9d5; font-size: .82rem; text-align: right; }
.ls-lineup-groups { display: grid; gap: 18px; }
.ls-lineup-groups article { min-width: 0; }

@media (max-width: 820px) {
  .live-score-page { padding: 20px 12px 52px; }
}

@media (max-width: 440px) {
  .ls-lineups-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .ls-lineups-heading > span { text-align: left; }
}

/* Mobile Dark Card Container for Team Hero Copy */

/* CPL match centre reference layout */
.mc-player-fallback { align-items: center; align-self: center; background: #18213b; border-radius: 50%; color: #d8c3ff; display: flex; font-family: "Barlow Condensed", sans-serif; font-weight: 900; height: 46px; justify-content: center; justify-self: center; width: 46px; }
.mc-tabs a.is-active { border-bottom-color: var(--mc-pink); color: var(--mc-pink); }
.mc-over-row i.is-boundary { background: #287b45; }
.mc-over-row i.is-wicket { background: #bb2e3f; }
.mc-mini-tabs span.is-active { border-bottom-color: var(--mc-pink); color: var(--mc-pink); }

/* Compact live match centre: progressive disclosure keeps the page focused. */
.lc-match-strip > span.is-live { background: #d72d2d; }
.lc-score-centre > span.is-live { background: #dd2f2f; }

.lc-recent > small {
  color: #9aa8be;
  display: block;
  font-size: 10px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.lc-player-row {
  align-items: center;
  color: #fff;
  display: grid;
  gap: 9px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  min-height: 58px;
  position: relative;
  text-decoration: none;
}
.lc-player-row img { align-self: end; height: 56px; object-fit: contain; object-position: center bottom; width: 48px; }
.lc-player-row > span:not(.lc-player-fallback) { display: grid; gap: 4px; min-width: 0; }
.lc-player-row strong { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lc-player-row small { color: #bdc7d7; font-size: 10px; }
.lc-player-row > b { font-family: "Barlow Condensed", sans-serif; font-size: 22px; }
.lc-player-row > em {
  background: #6a278a;
  border-radius: 2px;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  padding: 3px 5px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 2px;
}

.lc-player-row .mc-player-fallback {
  align-items: center;
  background: #17243a;
  border-radius: 50%;
  color: #d9b7ff;
  display: flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.lc-recent { align-content: center; display: grid; }
.lc-recent-over i.is-boundary { background: #277f3b; }
.lc-recent-over i.is-wicket { background: #d83434; }
.lc-tabs button.is-active { border-bottom-color: var(--lc-pink); color: #fff; }

.lc-lineups > header {
  align-items: center;
  border-bottom: 1px solid var(--lc-line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 34px;
}

.lc-lineups h2 {
  color: #f3f6fb;
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
}
.lc-commentary-list b.is-boundary { background: #693294; }
.lc-commentary-list b.is-wicket { background: #d63030; }
.lc-lineups { grid-column: 1 / -1; }
.lc-lineups header span { color: #98a6bb; font-size: 10px; }
.lc-lineups .ls-lineup-groups { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; padding-top: 14px; }
.lc-lineups h3 { border-bottom: 1px solid var(--lc-line); color: var(--team-accent); font-size: 12px; margin: 0 0 8px; padding-bottom: 8px; text-transform: uppercase; }
.lc-lineups ol { display: grid; gap: 4px; list-style: none; margin: 0; padding: 0; }
.lc-lineups li { align-items: center; display: grid; gap: 8px; grid-template-columns: 32px 1fr; min-height: 34px; }
.lc-lineups li img { height: 34px; object-fit: contain; object-position: bottom; width: 32px; }
.lc-lineups li > span { align-items: center; display: flex; gap: 8px; }
.lc-lineups li b { align-items: center; background: #6d2c95; border-radius: 50%; display: flex; font-size: 9px; height: 20px; justify-content: center; width: 20px; }
.lc-lineups li a,
.lc-lineups li div { color: #dce4ef; font-size: 11px; text-decoration: none; }
.lc-lineups article > p { color: #aab6c8; font-size: 13px; line-height: 1.45; }
.is-feed-stale [data-live-connection],
.is-feed-stale [data-live-refresh-copy] { color: #ffd45c; }

@media (max-width: 650px) {
  .lc-lineups .ls-lineup-groups { grid-template-columns: 1fr; }
}

/* Match-state clarity and readable live-centre typography. */

.lc-lineups article > p { font-size: 15px; }

.site-ad-frame { position: relative; }
.site-ad-fallback {
  align-content: center;
  background: linear-gradient(145deg, #101735, #251052);
  border: 1px solid rgba(180, 108, 255, .42);
  color: #fff;
  display: grid;
  gap: 14px;
  height: 250px;
  inset: 0;
  padding: 28px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  width: 300px;
  z-index: 1;
}
.site-ad-fallback small { color: #ffd400; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.site-ad-fallback strong { font-family: "Barlow Condensed", sans-serif; font-size: 28px; line-height: 1.05; text-transform: uppercase; }
.site-ad-fallback span { border: 1px solid rgba(255, 255, 255, .34); font-size: 13px; font-weight: 800; margin-inline: auto; padding: 9px 14px; text-transform: uppercase; }
.site-ad-frame.is-fallback .site-ad-fallback { display: grid; }
.site-ad-frame.is-fallback iframe { display: none; }

@media (max-width: 650px) {
  
  .lc-lineups article > p { font-size: 14px; }
}

/* CPL Insider premium interface layer - 2026-07-15 */
:root {
  --premium-bg: #0a1530;
  --premium-surface: #111f3d;
  --premium-card: #17284c;
  --premium-elevated: #2a2454;
  --premium-yellow: #ffd400;
  --premium-purple: #7a3ff2;
  --premium-text: #ffffff;
  --premium-copy: #d6dbea;
  --premium-muted: #9aa3bc;
  --premium-line: rgba(255, 255, 255, 0.12);
  --premium-radius: 8px;
  --premium-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  --content-width: 1380px;
  --reading-width: 780px;
}

/* How to Watch CPL 2026: dedicated broadcast guide */
.watch-guide-page {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto 72px;
  display: grid;
  gap: 18px;
}
.watch-guide-page > * { min-width: 0; }
.watch-guide-page [hidden] { display: none !important; }
.watch-guide-page h1, .watch-guide-page h2, .watch-guide-page h3, .watch-guide-page p { margin: 0; }
 .watch-guide-page .eyebrow { color: #e65ee8; font-weight: 800; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; margin-bottom: 12px; }
.wg-country-picker button.is-active { background: #7a3ff2; border-color: #a173ff; color: white; }
@media (max-width: 760px) { .watch-guide-page { width: min(calc(100% - 24px), 620px); margin-top: 0; gap: 14px; } }

body {
  background: #071126;
  color: var(--premium-text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
p,
li,
dd,
input,
button {
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: #061128;
  background: var(--premium-yellow);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-shell {
  width: min(100%, 1600px);
  background: var(--premium-bg);
}

.top-strip {
  min-height: 30px;
  padding-inline: clamp(18px, 2.5vw, 34px);
  background: #140c2f;
  font-size: 11px !important;
}

.utility-messages,
.utility-messages span {
  display: flex;
  align-items: center;
}

.utility-messages {
  gap: 20px;
}

.utility-messages span {
  gap: 7px;
}

.utility-messages span + span {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.utility-messages svg {
  width: 13px;
  height: 13px;
  color: #b372ff;
}

.main-header {
  min-height: 78px;
  gap: 20px;
  padding-inline: clamp(18px, 2.5vw, 34px);
  background: rgba(5, 8, 22, 0.96);
}

.brand-mark {
  width: 48px;
  height: 48px;
}

.year {
  font-size: 32px !important;
}

.brand {
  align-items: center;
  display: flex;
  gap: 11px;
  min-width: 220px;
}

.brand-symbol {
  display: block;
  flex: 0 0 44px;
  height: 54px;
  overflow: hidden;
  position: relative;
  width: 44px;
}

.brand-symbol img {
  height: 54px;
  left: 0;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  position: absolute;
  top: 0;
  width: 167px;
}

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

.brand-copy strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-copy small {
  color: #b5bfdc;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
}

.primary-nav {
  gap: clamp(10px, 1.15vw, 20px) !important;
  font-size: 15px !important;
}

.primary-nav > a {
  min-height: 44px;
  padding: 28px 0 !important;
}

.nav-more {
  position: relative;
}

.nav-more summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #edf2ff;
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
}

.nav-more summary.active,
.nav-more > div a.active {
  color: var(--premium-yellow);
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary svg {
  width: 15px;
  height: 15px;
}

.nav-more > div {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 20;
  width: 210px;
  padding: 8px;
  border: 1px solid var(--premium-line);
  border-radius: var(--premium-radius);
  background: #0b1024;
  box-shadow: var(--premium-shadow);
}

.nav-more > div a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px !important;
  border-radius: 5px;
  color: var(--premium-copy);
  font-size: 15px;
}

.nav-more > div a:hover {
  color: var(--premium-text);
  background: rgba(255, 255, 255, 0.07);
}

.icon-button,
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
}

.ticket-button {
  min-height: 48px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 22px !important;
  font-size: 16px !important;
}

.ticket-button svg {
  width: 18px;
  height: 18px;
}

.home-page {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--premium-bg) !important;
}

.pm-section {
  padding-block: clamp(22px, 2.4vw, 36px);
}

.pm-section + .pm-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pm-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.pm-section-heading {
  margin-bottom: 16px;
}

.pm-section-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.pm-section-heading h2 {
  max-width: 760px;
  font-size: clamp(25px, 2.2vw, 32px) !important;
  line-height: 1.08;
}

.pm-section-heading > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--premium-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.pm-section-heading svg {
  width: 18px;
  height: 18px;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--premium-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Tournament hub alignment: equal desktop tabs and compact tablet/mobile data cards. */

/* Team and player topic silos */

.team-silo-nav {
  position: sticky;
  z-index: 12;
  top: 92px;
  display: flex;
  gap: 4px;
  margin: 12px 0 42px;
  padding: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 1px solid rgba(133, 151, 209, 0.2);
  border-radius: 8px;
  background: rgba(4, 8, 25, 0.94);
  backdrop-filter: blur(12px);
}

.team-silo-nav::-webkit-scrollbar {
  display: none;
}

.team-silo-nav a {
  min-width: max-content;
  padding: 10px 18px;
  color: #bec8e2;
  font: 700 14px/1 "Inter", sans-serif;
}

.team-silo-nav a:hover,
.team-silo-nav a:focus-visible,
.team-silo-nav a.is-active {
  color: #ffffff;
  background: color-mix(in srgb, var(--team-accent) 20%, transparent);
}

.team-silo-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--team-accent);
}

@media (max-width: 640px) {

  .team-silo-nav {
    top: 8px;
    margin-bottom: 34px;
  }
}

/* Player directory and profile states */

.pm-player-showcase {
  background: #070b1b;
}

.pm-player-showcase .pm-section-heading {
  align-items: end;
}

.pm-player-showcase .pm-section-heading > div > p:last-child {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--premium-copy);
  font-size: 15px;
  line-height: 1.5;
}

.pm-player-showcase-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: -8px 0 16px;
  color: var(--premium-muted);
  font-size: 13px;
  line-height: 1.4;
}

.pm-player-showcase-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

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

.pm-player-watch-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--player-accent) 72%, #59617a);
  border-radius: 7px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--player-accent) 7%, #0b1026), #090e20 64%);
  box-shadow:
    inset 0 3px 0 color-mix(in srgb, var(--player-accent) 82%, white),
    0 14px 30px rgba(0, 0, 0, 0.16);
}

.pm-player-watch-card > a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--premium-text);
}

.pm-player-watch-card > a:focus-visible {
  outline: 3px solid #42d4ff;
  outline-offset: -4px;
}

.pm-player-watch-visual {
  position: relative;
  isolation: isolate;
  min-height: 306px;
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: end;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--player-accent) 45%, #2c3453);
  background:
    radial-gradient(circle at 20% 38%, color-mix(in srgb, var(--player-accent) 26%, transparent), transparent 44%),
    linear-gradient(135deg, color-mix(in srgb, var(--player-accent) 10%, #0a1025), #070b19 72%);
}

.pm-player-watch-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: 58%;
  background:
    linear-gradient(155deg, color-mix(in srgb, var(--player-accent) 28%, transparent), transparent 66%);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.pm-player-watch-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 0 52%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(5, 9, 23, 0.78) 18%, #070b19 52%);
}

.pm-player-role {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 4px 8px;
  border-radius: 3px;
  color: color-mix(in srgb, var(--player-accent) 75%, white);
  background: color-mix(in srgb, var(--player-accent) 26%, #071020);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pm-player-team-logo {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 16px;
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.4));
}

.pm-player-cutout-frame {
  position: relative;
  z-index: 1;
  grid-column: 1;
  width: 100%;
  height: 306px;
  align-self: end;
  overflow: hidden;
}

.pm-player-cutout {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translate(var(--portrait-x, -2%), var(--portrait-y, 2%)) scale(var(--portrait-scale, 1.06));
  transform-origin: center bottom;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.42));
}

.pm-player-watch-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: end;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 86px 14px 18px 4px;
}

.pm-player-watch-copy h3 {
  max-width: 170px;
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.pm-player-watch-copy p {
  min-height: 36px;
  display: flex;
  align-items: flex-start;
  margin: 10px 0 3px;
  color: color-mix(in srgb, var(--player-accent) 72%, white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.pm-player-watch-copy span {
  min-height: 34px;
  display: block;
  color: var(--premium-copy);
  font-size: 13px;
  line-height: 1.35;
}

.pm-player-watch-copy em {
  width: fit-content;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--player-accent) 62%, #786d38);
  border-radius: 4px;
  color: var(--premium-yellow);
  background: rgba(255, 212, 0, 0.06);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.pm-player-watch-stats {
  display: grid;
  grid-template-columns: 0.88fr 1.24fr 0.88fr;
  margin: 0;
  padding: 17px 12px;
}

.pm-player-watch-stats > div {
  min-width: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  text-align: center;
}

.pm-player-watch-stats > div + div {
  border-left: 1px solid var(--premium-line);
}

.pm-player-watch-stats dt {
  min-height: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--premium-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.pm-player-watch-stats dd {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--premium-text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.pm-player-watch-stats .pm-player-primary-stat dd {
  color: color-mix(in srgb, var(--player-accent) 78%, white);
  font-size: 36px;
  overflow-wrap: normal;
}

.pm-player-watch-link {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  border-top: 1px solid var(--premium-line);
  color: color-mix(in srgb, var(--player-accent) 76%, white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.pm-player-watch-link svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.pm-player-watch-card > a:hover .pm-player-watch-link svg {
  transform: translateX(4px);
}

@media (min-width: 701px) and (max-width: 1100px) {
  .pm-player-watch-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 14px) / 2);
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--premium-purple) #080d20;
  }

  .pm-player-watch-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 700px) {
  .pm-player-showcase .pm-section-heading {
    align-items: flex-start;
  }

  .pm-player-showcase-note {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
  }

  .pm-player-watch-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(88%, 350px);
    overflow-x: auto;
    padding: 2px 0 12px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--premium-purple) #080d20;
  }

  .pm-player-watch-card {
    scroll-snap-align: start;
  }

  .pm-player-watch-visual {
    min-height: 294px;
    grid-template-columns: 56% 44%;
  }

  .pm-player-team-logo {
    width: 58px;
    height: 58px;
  }

  .pm-player-cutout-frame {
    height: 294px;
  }

  .pm-player-cutout {
    transform: translate(var(--portrait-x, -2%), var(--portrait-y-mobile, var(--portrait-y, 2%))) scale(var(--portrait-scale-mobile, var(--portrait-scale, 1.03)));
  }

  .pm-player-watch-copy {
    padding: 80px 12px 16px 2px;
  }

  .pm-player-watch-copy h3 {
    font-size: 28px;
  }

  .pm-player-watch-stats {
    padding-inline: 8px;
  }

  .pm-player-watch-stats > div {
    padding-inline: 6px;
  }

  .pm-player-watch-stats .pm-player-primary-stat dd {
    font-size: 32px;
  }
}

details[open] summary svg {
  transform: rotate(45deg);
}

.pm-newsletter .form-status.is-error {
  color: #ffb1b1;
}

.pm-newsletter .form-status.is-success {
  color: #9af0c6;
}

.pm-bottom-newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2b1457;
}

.pm-bottom-newsletter > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pm-bottom-newsletter > div > svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--premium-yellow);
}

.pm-bottom-newsletter h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px !important;
  line-height: 1.02;
  text-transform: uppercase;
}

.pm-bottom-newsletter p {
  margin: 7px 0 0;
  color: var(--premium-copy);
  font-size: 13px;
  line-height: 1.45;
}

.pm-bottom-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
}

.pm-bottom-newsletter input,
.pm-bottom-newsletter button {
  min-height: 44px;
  border: 0;
  font-size: 13px;
}

.pm-bottom-newsletter input {
  min-width: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px 0 0 5px;
  color: var(--premium-text);
  background: rgba(255, 255, 255, 0.1);
}

.pm-bottom-newsletter button {
  padding-inline: 14px;
  border-radius: 0 5px 5px 0;
  color: #061128;
  background: var(--premium-yellow);
  font-weight: 850;
  cursor: pointer;
}

.pm-bottom-newsletter form > small,
.pm-bottom-newsletter .form-status {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  color: #d7cbed;
  font-size: 10px;
  line-height: 1.4;
}

.pm-bottom-newsletter .form-status.is-error {
  color: #ffb1b1;
}

.pm-bottom-newsletter .form-status.is-success {
  color: #9af0c6;
}

/* CPL 2026 pillar page */

/* Search and empty states */

.data-state.is-confirmed {
  border-color: rgba(31, 203, 124, 0.25);
  border-left-color: #1fcb7c;
  background: rgba(31, 203, 124, 0.06);
}

.data-state.is-confirmed > svg {
  color: #1fcb7c;
}

.data-state.is-confirmed span {
  color: #67e3a7;
}

.search-tool {
  margin: clamp(32px, 5vw, 64px) auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--premium-line);
  border-radius: var(--premium-radius);
  background: var(--premium-surface);
}

.search-tool {
  max-width: 980px;
}

.search-tool form > label {
  display: block;
  margin-bottom: 10px;
  font-weight: 750;
}

.search-tool form > div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
}

.search-tool form svg {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 20px;
  color: var(--premium-muted);
}

.search-tool input,
.search-tool button {
  min-height: 52px;
}

.search-tool input {
  min-width: 0;
  padding: 0 16px 0 46px;
  border: 1px solid var(--premium-line);
  border-radius: 5px 0 0 5px;
  color: var(--premium-text);
  background: #080b1c;
}

.search-tool button {
  padding: 0 24px;
  border: 0;
  border-radius: 0 5px 5px 0;
  color: #061128;
  background: var(--premium-yellow);
  font-weight: 850;
}

.search-summary {
  color: var(--premium-muted);
  font-size: 14px;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-results article {
  padding: 16px;
  border: 1px solid var(--premium-line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
}

.search-results span {
  color: var(--premium-yellow);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-results h2 {
  margin: 4px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
}

.search-results p {
  margin: 0;
  color: var(--premium-copy);
  font-size: 14px;
}

.site-footer {
  margin-top: 0 !important;
  padding-top: 24px;
  padding-bottom: 18px;
  background: #040713;
}

.site-footer a {
  display: flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 2px;
  font-size: 13px !important;
}

.site-footer span {
  margin-bottom: 4px;
  font-size: 12px !important;
}

.site-footer strong {
  margin-bottom: 8px;
  font-size: 14px !important;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.55;
}

.footer-logo-lockup {
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-logo-lockup > span:last-child {
  display: grid;
  gap: 3px;
}

.footer-logo-lockup strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px !important;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.footer-logo-lockup small {
  color: #9aa7ca;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer .legal {
  padding-top: 16px;
}

.site-footer nav details {
  min-width: 0;
}

.site-footer nav summary {
  margin-bottom: 8px;
  color: #ffffff;
  font: 800 14px/1.2 "Inter", sans-serif;
  list-style: none;
  cursor: default;
}

.site-footer nav summary::-webkit-details-marker {
  display: none;
}

.site-footer nav details > div {
  display: grid;
}

@media (max-width: 1260px) {
  .top-strip {
    display: none;
  }

  .pm-bottom-newsletter {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}

@media (max-width: 1080px) {
  .primary-nav {
    font-size: 14px !important;
  }
}

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

  .primary-nav.is-open {
    display: flex !important;
    transform: translateX(0) !important;
  }

  .main-header {
    min-height: 70px;
  }

  .primary-nav > a:nth-of-type(7),
  .primary-nav > a:nth-of-type(8) {
    display: block;
  }

  .nav-more {
    width: 100%;
  }

  .nav-more summary {
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 20px;
  }

  .nav-more > div {
    position: static;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-more > div a {
    padding-left: 42px !important;
  }

  .pm-bottom-newsletter {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .pm-section {
    padding-block: 28px;
  }

  .pm-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pm-section-heading h2 {
    font-size: 32px;
  }

  .pm-bottom-newsletter form {
    grid-template-columns: minmax(0, 1fr);
  }

  .pm-bottom-newsletter input,
  .pm-bottom-newsletter button {
    border-radius: 5px;
  }

  .pm-bottom-newsletter button {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .year {
    font-size: 27px !important;
  }

  .header-actions .ticket-button {
    min-height: 44px !important;
    display: inline-flex;
    padding-inline: 12px !important;
    font-size: 14px !important;
  }

  .header-actions .icon-button {
    display: none;
  }
}

/* Homepage premium10: live score replaces the pre-season video placeholder. */

/* Homepage premium11: supplied header and hero rebuilt as editable HTML/CSS. */
.home-body .top-strip {
  display: none;
}

.home-body .main-header {
  min-height: 108px;
  margin: 10px;
  padding-inline: 34px;
  border: 1px solid rgba(148, 166, 226, 0.2);
  border-radius: 9px;
  background: rgba(5, 9, 27, 0.94);
}

.home-body .brand {
  flex: 0 0 auto;
  gap: 0;
}

.home-body .primary-nav {
  margin-left: auto;
  gap: 28px !important;
  font-size: 15px !important;
}

.home-body .primary-nav > a {
  padding-block: 31px !important;
}

.home-body .header-actions {
  gap: 18px;
}

.home-body .header-actions .icon-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(148, 166, 226, 0.22);
  border-radius: 50%;
}

.home-body .ticket-button {
  min-width: 186px;
  justify-content: center;
  min-height: 58px !important;
  border-radius: 8px;
  font-size: 18px !important;
}

@media (max-width: 1260px) {
  .home-body .primary-nav {
    gap: 16px !important;
  }
}

@media (max-width: 900px) {
  .home-body .main-header {
    min-height: 78px;
    padding-inline: 18px;
  }
}

/* CPL 2026 player directory */

/* Permanent fixture pages: preview, live and result states share one URL. */

.mp-status.is-live {
  background: #df262d;
  border-color: #df262d;
  color: #fff;
}

.mp-status.is-final {
  background: rgba(44, 188, 103, .16);
  border-color: #2cbc67;
  color: #62e694;
}

@media (max-width: 900px) {
  #venue { order: 6; }
}

/* Reference-matched CPL player profile */

/* Shared header geometry for inner pages. */
.main-header-inner {
  width: min(calc(100% - 48px), 1429px);
  min-height: 90px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(230px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.mobile-nav-close {
  display: none;
}

@media (max-width: 1300px) and (min-width: 901px) {
  .main-header-inner {
    grid-template-columns: minmax(205px, 220px) minmax(0, 1fr) auto;
    gap: 12px;
  }

  .primary-nav {
    gap: 10px;
  }

  .primary-nav > a,
  .primary-nav > .nav-more > summary {
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .main-header-inner {
    width: calc(100% - 24px);
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
  }

  .mobile-nav-close span {
    transform: translateY(-1px);
  }
}

/* Shared homepage container: every major section follows the hero edges. */
.home-page > .pm-section {
  width: auto;
  margin-inline: clamp(10px, 2.125vw, 34px) !important;
}

/* Matchday desk: verified live-score state plus upcoming fixtures only. */

/* Full-width upcoming fixtures table based on the supplied match-centre reference. */

@media (max-width: 600px) {
  .home-body .main-header {
    margin: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Homepage premium12: balanced two-column hero with separate player artwork. */

/* Homepage premium9: explicit layers and reference-led section hierarchy. */

.pm-bottom-newsletter {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: 22px clamp(20px, 3vw, 34px);
}

.pm-bottom-newsletter form {
  margin-top: 0;
}

@media (max-width: 900px) {
  
  .pm-bottom-newsletter {
    grid-template-columns: minmax(0, 1fr);
  }

  .pm-bottom-newsletter {
    gap: 18px;
  }
}

/* Homepage readability pass: stable type scale, spacing and pixel alignment. */
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body {
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  overflow-x: clip;
}

.home-page .pm-section {
  padding-block: clamp(28px, 3vw, 44px);
}

.home-page .pm-section-heading {
  margin-bottom: 20px;
}

.home-page .pm-section-heading h2 {
  line-height: 1.16;
}


.home-page .pm-bottom-newsletter p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .home-page .pm-section {
    padding-block: 28px;
  }
}

/* Desktop header readability pass: tighter grid, clearer navigation and balanced controls. */
@media (min-width: 1261px) {
  .home-body .main-header {
    min-height: 90px;
    margin-inline: clamp(24px, 4.875vw, 78px);
    grid-template-columns: minmax(250px, 250px) minmax(0, 1fr) auto;
    gap: 24px;
    padding-inline: 28px;
    border: 0;
    border-bottom: 1px solid rgba(148, 166, 226, 0.18);
    border-radius: 0;
    border-radius: 18px;
  }

  .home-body .primary-nav {
    margin-left: 0;
    justify-content: center;
    gap: 22px !important;
    font-size: 16px !important;
    line-height: 1.1;
  }

  .home-body .primary-nav > a {
    min-height: 42px;
    padding-block: 24px !important;
  }

  .home-body .header-actions {
    gap: 10px;
  }

  .home-body .header-actions .icon-button {
    width: 44px;
    height: 44px;
  }

  .home-body .ticket-button {
    min-width: 150px;
    min-height: 48px !important;
    padding-inline: 18px;
    font-size: 16px !important;
  }
}

/* Mobile header: keep the brand readable and leave the menu room to breathe. */
@media (max-width: 900px) {
  .home-body .main-header {
    min-height: 76px !important;
    margin-inline: 24px;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px;
    padding-inline: 16px;
    border: 0;
    border-bottom: 1px solid rgba(148, 166, 226, 0.18);
    border: 1px solid rgba(148, 166, 226, 0.2);
    border-radius: 18px;
  }

  .home-body .brand {
    min-width: 0;
    overflow: visible;
  }

  .home-body .header-actions {
    gap: 8px;
  }

  .home-body .ticket-button {
    display: none !important;
  }

  .home-body .header-actions .icon-button {
    display: grid;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 900px) {
  .brand { min-width: 0; }
  .brand-symbol { flex-basis: 35px; height: 42px; width: 35px; }
  .brand-symbol img { height: 42px; width: 130px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 8px; }
}

/* Mobile hero: copy and controls finish before the artwork begins. */

/* Hybrid shell: full-width navigation background with content aligned to the hero. */
.home-body .main-header {
  min-height: 90px;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(148, 166, 226, 0.18);
  border-radius: 0;
}

.home-body .main-header-inner {
  width: min(calc(100% - 48px), 1429px);
  min-height: 90px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(250px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1260px) {
  .home-body .main-header-inner {
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) auto;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .home-body .main-header {
    min-height: 76px !important;
  }

  .home-body .main-header-inner {
    width: calc(100% - 48px);
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
}

/* ── CPL 2026 Players & Squads Page Enhancements ──────────────── */


.pd-pill.is-active {
  background: #6c24df;
  border-color: #a963ff;
  color: #fff;
  box-shadow: 0 0 14px rgba(108, 36, 223, 0.5);
}

/* ── CPL 2026 Teams Directory Enhancements ──────────────── */

/* Premium data-driven team detail template */

@media (min-width: 901px) {
  .team-silo-nav {
    top: 92px !important;
  }
}

@media (max-width: 900px) {
  .team-silo-nav {
    top: 8px !important;
  }
}

@media (max-width: 640px) {
  .site-footer {
    display: grid;
    gap: 18px;
    padding-inline: 18px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer nav details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .site-footer nav summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    margin: 0;
    padding-right: 28px;
    cursor: pointer;
  }

  .site-footer nav summary::after {
    position: absolute;
    right: 4px;
    color: #ffd400;
    content: "+";
    font-size: 20px;
    line-height: 1;
  }

  .site-footer nav details[open] summary::after {
    content: "-";
  }

  .site-footer nav details > div {
    padding: 0 0 10px;
  }

  .site-footer a {
    min-height: 38px;
    font-size: 14px !important;
  }

  .site-footer .legal {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  .site-footer .legal span {
    flex-basis: 100%;
    line-height: 1.55;
  }
}

/* Team fixture hubs */

.tfh-matchup .is-focus strong {
  color: var(--team-accent);
}

/* Custom Mobile Navigation & Squad Slider Fixes */
nav.team-silo-nav,
.team-silo-nav {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

nav.team-silo-nav::-webkit-scrollbar,
.team-silo-nav::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

/* Quick Answer / At a Glance Component */

/* Next Match Tag in Hero */

/* Quick Answer Summary Paragraph */

/* Dark Cinematic Stadium Overlay for Team Hero */

/* Compact How to Watch page */

.watch-guide-compact .wt-country-card.is-confirmed {
  border-color: rgba(57, 215, 157, 0.42);
}

.watch-guide-compact .wt-partner-grid article.is-pending {
  opacity: 0.76;
}

/* How to Watch: editorial hierarchy, verified market flags and crawlable guides. */

.watch-guide-compact .wt-country-card.is-confirmed {
  border-color: #39d79d;
}

.watch-guide-compact .is-confirmed .wt-status-pill {
  color: #9ef1cf;
  background: rgba(57, 215, 157, 0.12);
}

.watch-guide-compact .wt-partner-grid article.is-pending {
  opacity: 0.72;
}
.watch-guide-compact .wt-country-card.is-pending .wt-provider-logo { filter: grayscale(.35); opacity: .62; }
.watch-guide-compact .wt-country-card.is-pending { background: rgba(8, 16, 34, .7); }

/* Match pages: dark broadcast hero, light editorial reading surface. */

/* Reusable permanent match-centre enhancements. */

@media (max-width: 900px) {
  #venue { order: 8; }
}

/* Locked fixture-page design: 2026-08-03 reference. */
.mp-status.is-live{background:#df2a2a;color:#fff}.mp-status.is-final{background:#198754;color:#fff}
.mp-commentary-list b.is-boundary{background:#67369a}.mp-commentary-list b.is-wicket{background:#c92d38}

/* Keep the locked mobile reading order across main and sidebar sections. */

:root {
  --hub-bg: #030816;
  --hub-bg-soft: #080d20;
  --hub-panel: rgba(11, 18, 39, .78);
  --hub-line: rgba(154, 87, 238, .34);
  --hub-purple: #a449ff;
  --hub-purple-deep: #6420c7;
  --hub-gold: #ffc800;
  --hub-text: #f6f7fb;
  --hub-muted: #aeb8d3;
}

body:has(.cpl-hub) { background: var(--hub-bg); }
body:has(.cpl-hub) .site-shell { max-width: none; }
.cpl-hub { background: var(--hub-bg); color: var(--hub-text); font-family: Inter, system-ui, sans-serif; overflow: hidden; }
.cpl-hub *, .cpl-hub *::before, .cpl-hub *::after { box-sizing: border-box; }
.cpl-hub a { color: inherit; text-decoration: none; }
.cpl-hub img { display: block; max-width: 100%; }
.cpl-hub h1, .cpl-hub h2, .cpl-hub h3, .cpl-hub p, .cpl-hub dl, .cpl-hub dd { margin: 0; }
.hub-shell { margin: 0 auto; max-width: 1480px; padding-inline: 52px; position: relative; width: 100%; z-index: 2; }
.hub-section { background: linear-gradient(180deg, #040918 0%, #070a1c 55%, #030816 100%); border-top: 1px solid rgba(115, 72, 188, .14); min-height: 720px; overflow: hidden; padding-block: 94px; position: relative; }
.hub-section::before { background: radial-gradient(circle at 8% 55%, rgba(119, 35, 209, .19), transparent 30%), radial-gradient(circle at 92% 42%, rgba(255, 180, 0, .08), transparent 26%); content: ""; inset: 0; pointer-events: none; position: absolute; }
.hub-section::after { background: linear-gradient(90deg, transparent, rgba(255, 193, 7, .42), transparent); bottom: 0; content: ""; height: 2px; left: 3%; opacity: .45; position: absolute; right: 3%; }
.hub-eyebrow { color: var(--hub-gold); font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hub-heading { max-width: 720px; }
.hub-heading h2 { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.8rem, 4.2vw, 4.7rem); font-weight: 800; letter-spacing: 0; line-height: .98; margin-top: 12px; text-transform: none; }
.hub-rule { background: linear-gradient(90deg, var(--hub-purple), var(--hub-gold)); display: block; height: 3px; margin: 22px 0; width: 74px; }
.hub-copy { color: #d3d8e8; font-size: 1rem; line-height: 1.75; max-width: 640px; }

/* Header and hero */

/* About and format */
.hub-about { min-height: 820px; }
.hub-about::before { background: radial-gradient(circle at 12% 74%, rgba(104, 26, 184, .3), transparent 31%), radial-gradient(circle at 92% 34%, rgba(127, 45, 215, .12), transparent 28%); }
.hub-about-grid { display: grid; gap: 70px; grid-template-columns: minmax(330px, .78fr) minmax(620px, 1.42fr); }
.hub-feature-list { display: grid; gap: 16px; margin-top: 38px; }
.hub-feature-list > div { align-items: center; display: grid; gap: 18px; grid-template-columns: 56px 1fr; padding: 12px 0; }
.hub-feature-list svg { color: var(--hub-purple); height: 42px; width: 42px; }
.hub-feature-list span { border-left: 1px solid rgba(210, 198, 239, .26); display: grid; gap: 4px; padding-left: 20px; }
.hub-feature-list strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.25rem; text-transform: uppercase; }
.hub-feature-list small { color: var(--hub-muted); font-size: .9rem; line-height: 1.5; }
.hub-format { padding-top: 16px; }
.hub-format ol { display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; margin: 44px 0 0; padding: 0; position: relative; }
.hub-format ol::before { background: linear-gradient(90deg, var(--hub-purple), var(--hub-gold)); content: ""; height: 2px; left: 9%; position: absolute; right: 9%; top: 108px; }
.hub-format li { display: grid; justify-items: center; padding: 0 13px; position: relative; text-align: center; }
.hub-format li > b { color: rgba(164, 73, 255, .58); font-family: "Barlow Condensed", sans-serif; font-size: 4.8rem; line-height: 1; }
.hub-format li.is-final > b, .hub-format li.is-final > strong { color: var(--hub-gold); }
.hub-format li > span { align-items: center; background: #171035; border: 2px solid var(--hub-purple); border-radius: 50%; box-shadow: 0 0 24px rgba(164, 73, 255, .35); display: flex; height: 82px; justify-content: center; margin: 14px 0 24px; width: 82px; z-index: 1; }
.hub-format li.is-final > span { border-color: var(--hub-gold); box-shadow: 0 0 24px rgba(255, 200, 0, .3); }
.hub-format li svg { height: 36px; width: 36px; }
.hub-format li > strong { color: var(--hub-purple); font-family: "Barlow Condensed", sans-serif; font-size: 1.12rem; text-transform: uppercase; }
.hub-format li > small { color: #c6ccdd; font-size: .82rem; line-height: 1.55; margin-top: 10px; }
.hub-format-stats { border-top: 1px solid rgba(185, 158, 234, .25); display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 54px; }
.hub-format-stats > div { padding: 24px 18px 0; text-align: center; }
.hub-format-stats > div + div { border-left: 1px solid rgba(185, 158, 234, .25); }
.hub-format-stats dt { color: var(--hub-muted); font-family: "Barlow Condensed", sans-serif; font-size: .85rem; text-transform: uppercase; }
.hub-format-stats dd { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; margin-top: 8px; }

/* Fixtures */

/* Teams */

/* Players */

/* Points table and venues */

/* Final */

/* Tickets and watching */
.hub-watch-table .is-confirmed { color: #74dc4a; }
.hub-watch-table .is-pending { color: var(--hub-gold); }

/* News and records */

/* FAQ, guide links and trust */

@media (max-width: 1180px) {
  .hub-shell { padding-inline: 32px; }
  .hub-about-grid { grid-template-columns: 1fr; }
  .hub-about-grid { gap: 54px; }
  .hub-format ol::before { left: 10%; right: 10%; }
}

@media (max-width: 900px) {
  body:has(.cpl-hub) .primary-nav {
    align-items: stretch !important;
    background: rgba(4, 8, 24, .99) !important;
    border-left: 1px solid rgba(164, 73, 255, .42) !important;
    box-shadow: -22px 0 52px rgba(0, 0, 0, .48) !important;
    padding: 76px 18px 28px !important;
    width: min(360px, 88vw) !important;
  }
  body:has(.cpl-hub) .primary-nav > a,
  body:has(.cpl-hub) .primary-nav > .nav-more > summary {
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    font-size: 1.1rem !important;
    min-height: 54px;
    padding: 16px 18px !important;
    text-align: left;
    width: 100%;
  }
  body:has(.cpl-hub) .primary-nav > .nav-more > div a {
    font-size: 1rem !important;
    padding: 14px 28px !important;
    width: 100%;
  }
  .hub-section { min-height: 0; padding-block: 72px; }
  .hub-format ol { gap: 18px; grid-template-columns: repeat(3, 1fr); }
  .hub-format ol::before { display: none; }
  .hub-format li:nth-child(n + 4) { margin-top: 26px; }
  .hub-format-stats { grid-template-columns: repeat(3, 1fr); }
  .hub-format-stats > div:nth-child(4) { border-left: 0; }
  .hub-format-stats > div:nth-child(n + 4) { border-top: 1px solid rgba(185,158,234,.25); margin-top: 20px; }
}

@media (max-width: 640px) {
  .hub-shell { padding-inline: 18px; }
  .hub-section { padding-block: 58px; }
  .hub-heading h2 { font-size: 2.75rem; }
  .hub-copy { font-size: .9rem; line-height: 1.65; }
  .hub-about-grid { gap: 46px; grid-template-columns: 1fr; }
  .hub-format ol { grid-template-columns: 1fr; }
  .hub-format li { grid-template-columns: 44px 60px 1fr; justify-items: start; min-height: 116px; padding: 0; text-align: left; }
  .hub-format li:nth-child(n + 4) { margin-top: 0; }
  .hub-format li > b { font-size: 2.7rem; grid-row: 1 / span 2; }
  .hub-format li > span { grid-row: 1 / span 2; height: 52px; margin: 0; width: 52px; }
  .hub-format li svg { height: 24px; width: 24px; }
  .hub-format li > strong { align-self: end; font-size: 1rem; }
  .hub-format li > small { align-self: start; font-size: .76rem; margin-top: 4px; }
  .hub-format-stats { grid-template-columns: repeat(2, 1fr); }
  .hub-format-stats > div:nth-child(3), .hub-format-stats > div:nth-child(5) { border-left: 0; }
  .hub-format-stats > div:nth-child(n + 3) { border-top: 1px solid rgba(185,158,234,.25); margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cpl-hub *, .cpl-hub *::before, .cpl-hub *::after { scroll-behavior: auto !important; transition: none !important; }
}

:root {
  --rh-bg: #050817;
  --rh-panel: #0b1128;
  --rh-panel-2: #101735;
  --rh-line: rgba(151, 169, 224, .22);
  --rh-copy: #f5f7ff;
  --rh-muted: #9aa7ca;
  --rh-yellow: #ffd000;
  --rh-purple: #6d20e8;
  --rh-cyan: #17d8ef;
}

.rh-home {
  width: min(100% - 32px, 1380px);
  margin: 0 auto;
  padding: 0 0 48px;
  color: var(--rh-copy);
}

.rh-home a { color: inherit; }
.rh-home h1, .rh-home h2, .rh-home h3, .rh-home p { margin-top: 0; }
.rh-home h2 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: 0; }
.rh-eyebrow { color: var(--rh-yellow); font-family: "Barlow Condensed", sans-serif; font-size: .82rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 7px; }

.rh-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.rh-button:hover, .rh-feature-tile:hover, .rh-team-card:hover, .rh-upcoming-card:hover { filter: brightness(1.1); transform: translateY(-2px); }
.rh-button-yellow { background: var(--rh-yellow); color: #111425 !important; }
.rh-button-purple { background: linear-gradient(135deg, #7b2df5, #4913b8); color: #fff !important; }
.rh-button-outline { background: rgba(4, 9, 25, .5); border-color: rgba(255,255,255,.58); color: #fff !important; }

.rh-hero {
  min-height: 580px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.rh-hero::after {
  background: linear-gradient(90deg, rgba(3, 6, 20, .98) 0%, rgba(3, 6, 20, .84) 30%, rgba(3, 6, 20, .22) 65%, rgba(3, 6, 20, .08) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.rh-hero-art { inset: 0; position: absolute; z-index: -2; }
.rh-hero-art picture { display: block; height: 100%; width: 100%; }
.rh-hero-art img { height: 100%; object-fit: cover; object-position: center right; width: 100%; }
.rh-hero-content { max-width: 450px; padding: 94px 0 24px 14px; position: relative; z-index: 2; }
.rh-hero-content h1 { font-family: "Barlow Condensed", sans-serif; font-size: 3.25rem; font-weight: 900; line-height: .92; margin: 0 0 20px; max-width: 100%; text-transform: uppercase; }
.rh-hero-content h1 > span, .rh-hero-content h1 > strong { display: block; white-space: nowrap; }
.rh-hero-content h1 strong { color: var(--rh-yellow); font-weight: 900; }
.rh-hero-content h1 .rh-hero-season { color: var(--rh-yellow); font-size: .42em; line-height: 1.1; margin-bottom: 7px; }
.rh-mode-live .rh-hero-launch.is-live { border-color: rgba(33, 224, 157, .62); color: #79f6c8; }
.rh-hero-content > p:not(.rh-eyebrow) { color: #e3e7f9; font-size: 1rem; line-height: 1.55; margin-bottom: 23px; max-width: 500px; }
.rh-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rh-hero-facts {
  background: rgba(5, 10, 28, .82);
  border: 1px solid rgba(157, 179, 242, .3);
  border-radius: 8px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(3, minmax(130px, 1fr));
  left: auto;
  margin: 0;
  max-width: 760px;
  position: absolute;
  right: 14px;
  width: min(760px, calc(100% - 28px));
  z-index: 2;
}
.rh-hero-facts > div {
  align-items: center;
  border-right: 1px solid var(--rh-line);
  column-gap: 11px;
  display: grid;
  grid-template-areas: "icon label" "icon value";
  grid-template-columns: 32px minmax(0, 1fr);
  min-height: 76px;
  padding: 13px 16px;
  row-gap: 1px;
}
.rh-hero-facts > div:last-child { border-right: 0; }
.rh-hero-facts dt { display: contents; }
.rh-hero-facts dt svg { color: var(--rh-yellow); grid-area: icon; height: 26px; width: 26px; }
.rh-hero-facts dt span {
  align-self: end;
  color: var(--rh-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: .74rem;
  font-weight: 800;
  grid-area: label;
  line-height: 1;
  text-transform: uppercase;
}
.rh-hero-facts dd {
  align-self: start;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  grid-area: value;
  line-height: 1.08;
  margin: 0;
}
.rh-hero-facts > div:first-child dd { font-size: 1rem; white-space: normal; }
.rh-hero-facts dd small { color: var(--rh-muted); display: block; font-family: Inter, sans-serif; font-size: .59rem; font-weight: 600; margin-top: 3px; white-space: nowrap; }

.rh-next-match {
  background: linear-gradient(145deg, #111936 0%, #090e24 70%, #170b35 100%);
  border: 1px solid rgba(166, 109, 255, .36);
  border-radius: 10px;
  color: #f7f8ff;
  display: grid;
  grid-template-columns: 1fr 300px;
  margin: -2px 0 24px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.rh-next-match-main { display: flex; flex-direction: column; padding: 22px 24px; }
.rh-match-intro { align-items: end; display: grid; gap: 24px; grid-template-columns: minmax(220px, .7fr) minmax(300px, 1fr); margin-bottom: 10px; }
.rh-match-intro h3 { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.65rem; line-height: 1; margin: 0; text-transform: uppercase; }
.rh-match-intro > p { color: #c3cbe4; font-size: .95rem; line-height: 1.55; margin: 0; max-width: 510px; }
.rh-match-kicker { color: var(--rh-yellow); font-family: "Barlow Condensed", sans-serif; font-size: .78rem; font-weight: 800; margin-bottom: 4px; text-transform: uppercase; }
.rh-match-kicker svg { height: 14px; vertical-align: -2px; width: 14px; }
.rh-match-line { align-items: center; display: grid; grid-template-columns: 1fr 150px 1fr; gap: 12px; }
.rh-match-team { align-items: center; display: flex; gap: 12px; min-width: 0; }
.rh-match-team-right { justify-content: flex-end; text-align: right; }
.rh-match-team img { flex: 0 0 90px; height: 90px; object-fit: contain; width: 90px; }
.rh-match-team span { display: grid; gap: 2px; }
.rh-match-team small { color: var(--rh-muted); font-size: .78rem; }
.rh-match-team strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; line-height: .95; text-transform: uppercase; }
.rh-match-team em { background: #5f22c7; border-radius: 3px; color: #fff; font-size: .62rem; font-style: normal; font-weight: 800; justify-self: start; padding: 3px 6px; }
.rh-match-team-right em { justify-self: end; }
.rh-match-vs { display: grid; gap: 3px; justify-items: center; text-align: center; }
.rh-match-vs span { color: #b481ff; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; font-weight: 900; }
.rh-match-vs strong { color: #dfe4f5; font-size: .78rem; }
.rh-match-vs b { background: var(--rh-yellow); border-radius: 3px; color: #101425; font-size: .72rem; padding: 4px 9px; }
.rh-match-meta { border-top: 1px solid var(--rh-line); display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; padding-top: 13px; }
.rh-match-meta span { color: #d9dff1; font-size: .8rem; font-weight: 700; }
.rh-match-meta svg { color: var(--rh-yellow); height: 15px; margin-right: 5px; vertical-align: -3px; width: 15px; }
.rh-match-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 15px; }
.rh-match-actions .rh-button { min-height: 42px; padding: 0 16px; }
.rh-countdown { background: linear-gradient(160deg, #080d29, #121b4b); color: #fff; display: grid; padding: 24px 18px; place-content: center; text-align: center; }
.rh-countdown p { font-family: "Barlow Condensed", sans-serif; font-size: .9rem; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; }
.rh-countdown-values { display: flex; gap: 15px; }
.rh-countdown-values b { color: var(--rh-yellow); font-family: "Barlow Condensed", sans-serif; font-size: 2rem; line-height: .8; }
.rh-countdown-values small { color: #fff; display: block; font-family: Inter, sans-serif; font-size: .52rem; margin-top: 8px; text-transform: uppercase; }
.rh-countdown > strong { border-top: 1px solid rgba(255,255,255,.2); font-family: "Barlow Condensed", sans-serif; margin-top: 18px; padding-top: 14px; text-transform: uppercase; }
.rh-mini-mark { color: var(--rh-yellow); margin-right: 5px; }

.rh-section { margin: 0 0 25px; }
.rh-section-title, .rh-panel-heading { align-items: flex-start; display: flex; gap: 18px; justify-content: space-between; margin-bottom: 10px; }
.rh-section-title > div, .rh-panel-heading > div { min-width: 0; }
.rh-section-title h2, .rh-section-title h3, .rh-panel-heading h2 { font-family: "Barlow Condensed", sans-serif; font-size: 1.65rem; margin-bottom: 0; text-transform: uppercase; }
.rh-section-copy { color: var(--rh-muted); font-family: Inter, sans-serif; font-size: 1rem; line-height: 1.55; margin: 5px 0 0; max-width: 760px; text-transform: none; }
.rh-section-title a, .rh-panel-heading a { color: var(--rh-yellow); font-family: "Barlow Condensed", sans-serif; font-size: .78rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.rh-section-title svg, .rh-panel-heading svg { height: 14px; vertical-align: -3px; width: 14px; }

.rh-live-score-card {
  align-items: stretch;
  background: linear-gradient(145deg, #111a3b, #080d22 72%);
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.35fr) minmax(190px, .72fr);
  min-width: 0;
  overflow: hidden;
}
.rh-live-status, .rh-live-actions { min-width: 0; padding: 22px; }
.rh-live-status { align-content: center; display: grid; }
.rh-live-status > span {
  align-items: center;
  background: rgba(255, 208, 0, .09);
  border: 1px solid rgba(255, 208, 0, .26);
  border-radius: 4px;
  color: var(--rh-yellow);
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  gap: 6px;
  justify-self: start;
  margin-bottom: 12px;
  padding: 5px 9px;
  text-transform: uppercase;
}
.rh-live-status > span svg { height: 14px; width: 14px; }
.rh-live-status > strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; line-height: 1.05; text-transform: uppercase; }
.rh-live-status > p { color: var(--rh-muted); font-size: .95rem; line-height: 1.5; margin: 7px 0 0; max-width: 340px; }
.rh-live-actions { align-content: center; display: grid; gap: 9px; }
.rh-live-actions .rh-button { width: 100%; }
.rh-live-actions > small { color: var(--rh-muted); font-size: .72rem; line-height: 1.45; margin-top: 2px; text-align: center; }
.rh-live-actions svg { height: 15px; width: 15px; }

.rh-slider-shell { position: relative; }
.rh-upcoming-grid { background: linear-gradient(145deg, rgba(16, 23, 53, .72), rgba(8, 13, 32, .72)); border: 1px solid var(--rh-line); display: grid; gap: 0; grid-auto-flow: column; grid-auto-columns: 25%; grid-template-columns: none; overflow-x: auto; padding: 0; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.rh-upcoming-grid::-webkit-scrollbar { display: none; }
.rh-upcoming-card { background: transparent; border: 0; border-right: 1px solid var(--rh-line); border-radius: 0; display: grid; gap: 10px; min-height: 174px; padding: 18px 16px; transition: .2s ease; }
.rh-upcoming-card:hover { background: rgba(111, 38, 232, .09); filter: none; transform: none; }
.rh-upcoming-card { scroll-snap-align: start; }
.rh-upcoming-card > div:first-child { display: grid; gap: 3px; }
.rh-upcoming-card > div:first-child b { color: var(--rh-yellow); font-family: "Barlow Condensed", sans-serif; font-size: .95rem; }
.rh-upcoming-card > div:first-child span, .rh-upcoming-card > small, .rh-upcoming-card > time { color: var(--rh-muted); font-size: .8rem; line-height: 1.4; }
.rh-upcoming-card > time { font-style: normal; }
.rh-upcoming-pair { align-items: center; display: grid; grid-template-columns: 1fr 18px 1fr; }
.rh-upcoming-pair > span { align-items: center; display: grid; gap: 3px; justify-items: center; }
.rh-upcoming-pair img { height: 48px; object-fit: contain; width: 48px; }
.rh-upcoming-pair strong { font-family: "Barlow Condensed", sans-serif; font-size: .95rem; }
.rh-upcoming-pair em { color: #a66dff; font-family: "Barlow Condensed", sans-serif; font-size: .85rem; font-style: normal; font-weight: 900; }
.rh-upcoming-card > small svg { height: 11px; margin-right: 3px; vertical-align: -2px; width: 11px; }
button.rh-slider-prev, button.rh-slider-next { align-items: center !important; background: #6c24df !important; border: 1px solid rgba(255,255,255,.35) !important; border-radius: 50% !important; box-shadow: 0 4px 14px rgba(108, 36, 223, 0.45) !important; color: #ffffff !important; cursor: pointer !important; display: flex !important; height: 42px !important; justify-content: center !important; outline: none !important; padding: 0 !important; position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: 42px !important; z-index: 10 !important; transition: background .2s ease, transform .2s ease, box-shadow .2s ease !important; }
button.rh-slider-prev { left: -14px !important; }
button.rh-slider-next { right: -14px !important; }
button.rh-slider-prev:hover, button.rh-slider-next:hover { background: #8b3dff !important; box-shadow: 0 6px 20px rgba(139, 61, 255, 0.6) !important; transform: translateY(-50%) scale(1.1) !important; }
button.rh-slider-prev svg, button.rh-slider-next svg { height: 20px !important; stroke: #ffffff !important; stroke-width: 2.5px !important; width: 20px !important; }


.rh-team-grid { display: grid; gap: 9px; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.rh-team-card { align-items: center; background: linear-gradient(180deg, rgba(19, 27, 60, .64), rgba(8, 13, 32, .28)); border: 0; border-bottom: 1px solid rgba(151,169,224,.16); border-radius: 2px; border-top: 2px solid color-mix(in srgb, var(--team-accent) 72%, #fff); display: grid; justify-items: center; min-width: 0; padding: 16px 8px 13px; text-align: center; transition: .2s ease; }
.rh-team-card img { height: 82px; object-fit: contain; width: 82px; }
.rh-team-card strong { font-family: "Barlow Condensed", sans-serif; font-size: 1rem; line-height: 1; margin-top: 8px; text-transform: uppercase; }
.rh-team-card span { background: var(--team-accent); border-radius: 3px; color: #101226; font-size: .57rem; font-weight: 900; margin-top: 5px; padding: 2px 7px; }
.rh-team-card small { color: var(--rh-muted); font-size: .72rem; margin-top: 7px; }
.rh-team-card em { color: #c3cbe4; font-size: .7rem; font-style: normal; margin-top: 4px; }
.rh-team-card .rh-squad-status { border-radius: 3px; font-size: .54rem; font-style: normal; font-weight: 800; margin-top: 5px; padding: 3px 7px; text-transform: uppercase; }
.rh-team-card .rh-squad-status.confirmed { background: #105e3b; color: #a8f0c7; }
.rh-team-card b { background: linear-gradient(135deg,#7021e8,#4311a8); border-radius: 3px; font-size: .62rem; margin-top: 8px; padding: 6px 9px; text-transform: uppercase; }
.rh-team-card b svg { height: 11px; vertical-align: -2px; width: 11px; }

.rh-two-column { display: grid; gap: 12px; grid-template-columns: minmax(0, 55fr) minmax(0, 45fr); margin-bottom: 24px; }
.rh-two-column > *, .rh-support-grid > *, .rh-bottom-grid > * { min-width: 0; }
.rh-panel { background: linear-gradient(150deg, #101735, #090e23); border: 1px solid var(--rh-line); border-radius: 7px; min-width: 0; padding: 15px; }
.rh-panel-heading { border-bottom: 1px solid rgba(151, 169, 224, .14); min-width: 0; padding-bottom: 10px; }
.rh-panel-heading h2 { font-size: 1.3rem; }
.rh-table-wrap { overflow-x: auto; }
.rh-standings table { border-collapse: collapse; min-width: 550px; width: 100%; }
.rh-standings th, .rh-standings td { border-bottom: 1px solid rgba(151, 169, 224, .13); font-size: .875rem; padding: 8px 5px; text-align: left; white-space: nowrap; }
.rh-standings thead th { color: var(--rh-muted); font-size: .72rem; text-transform: uppercase; }
.rh-standings tbody th { align-items: center; display: flex; gap: 7px; font-weight: 700; }
.rh-standings tbody th img { height: 24px; object-fit: contain; width: 24px; }
.rh-panel-button { background: linear-gradient(135deg,#7021e8,#4311a8); border-radius: 4px; display: block; font-family: "Barlow Condensed", sans-serif; font-size: .75rem; font-weight: 800; margin-top: 12px; padding: 9px; text-align: center; text-transform: uppercase; }
.rh-panel-button svg { height: 13px; vertical-align: -3px; width: 13px; }
.rh-news-list { display: grid; min-width: 0; }
.rh-news-list a { align-items: center; border-bottom: 1px solid rgba(151, 169, 224, .14); display: flex; gap: 12px; min-width: 0; padding: 10px 0; width: 100%; }
.rh-news-list a:last-child { border-bottom: 0; }
.rh-news-list img { border-radius: 4px; flex: 0 0 96px; height: 62px; object-fit: cover; width: 96px; }
.rh-news-list span { display: grid; gap: 4px; min-width: 0; }
.rh-news-list strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.05rem; line-height: 1.2; overflow-wrap: anywhere; }
.rh-news-list small { color: var(--rh-muted); font-size: .75rem; }
.rh-news-list .rh-news-result {
  background: rgba(45, 181, 94, .08);
  border: 1px solid rgba(73, 191, 86, .3);
  border-radius: 6px;
  margin-bottom: 7px;
  padding: 12px;
}
.rh-news-result-mark {
  align-items: center;
  background: rgba(73, 191, 86, .16);
  border-radius: 50%;
  color: #63df72;
  display: flex !important;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.rh-news-result-mark svg { height: 22px; width: 22px; }
.rh-news-list .rh-news-result small { color: #63df72; font-weight: 800; text-transform: uppercase; }
.rh-news-list .rh-news-result em { color: var(--rh-muted); font-size: .78rem; font-style: normal; line-height: 1.35; }

.rh-feature-tiles { margin-bottom: 24px; }
.rh-feature-grid { display: grid; gap: 9px; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.rh-feature-tile {
  --tile-accent: #ffd400;
  align-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--tile-accent) 15%, #111835), #080d20 74%);
  border: 1px solid color-mix(in srgb, var(--tile-accent) 42%, #283251);
  border-top-width: 2px;
  border-radius: 6px;
  display: grid;
  gap: 5px;
  justify-items: center;
  min-height: 125px;
  padding: 15px 8px;
  position: relative;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.rh-feature-tile:nth-child(2) { --tile-accent: #9d63ff; }
.rh-feature-tile:nth-child(3) { --tile-accent: #19d4e8; }
.rh-feature-tile:nth-child(4) { --tile-accent: #f04fa4; }
.rh-feature-tile:nth-child(5) { --tile-accent: #35d17f; }
.rh-feature-tile:nth-child(6) { --tile-accent: #ff8b3d; }
.rh-feature-tile:hover { border-color: var(--tile-accent); filter: none; transform: translateY(-4px); }
.rh-feature-tile > svg, .rh-feature-tile b svg { transition: transform .2s ease; }
.rh-feature-tile:hover > svg { transform: translateY(-2px); }
.rh-feature-tile:hover b svg { transform: translateX(3px); }
.rh-feature-tile > svg { color: var(--tile-accent); height: 32px; width: 32px; }
.rh-feature-tile strong { font-family: "Barlow Condensed", sans-serif; font-size: .92rem; text-transform: uppercase; }
.rh-feature-tile span { color: var(--rh-muted); font-size: .78rem; line-height: 1.45; }
.rh-feature-tile b { bottom: 8px; color: var(--tile-accent); position: absolute; right: 9px; }
.rh-feature-tile b svg { height: 14px; width: 14px; }

.rh-home > .pm-player-showcase { margin-bottom: 24px !important; padding-block: 18px; }
.rh-home .pm-player-watch-card { background: #0b1128; box-shadow: inset 0 2px 0 color-mix(in srgb, var(--player-accent) 76%, white); }
.rh-home .pm-player-watch-visual { background: linear-gradient(145deg, #111934, #080d20 76%); }
.rh-home .pm-player-watch-visual::before { background: linear-gradient(155deg, color-mix(in srgb, var(--player-accent) 16%, transparent), transparent 68%); }
.rh-home .pm-player-watch-visual::after { background: linear-gradient(90deg, transparent, rgba(5, 9, 23, .82) 22%, #080d20 58%); }
.rh-home .pm-player-watch-link { background: #0d1530; border-top: 1px solid color-mix(in srgb, var(--player-accent) 42%, #2c3453); }
.rh-support-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin-bottom: 24px; }
.rh-support-grid > .rh-panel { padding: 14px; }
.rh-venue-grid { display: grid; gap: 9px; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(3, 1fr); }
.rh-venue-grid a { background: #0a1026; border: 1px solid rgba(151,169,224,.16); border-radius: 5px; display: grid; gap: 3px; grid-template-columns: 118px 1fr; min-width: 0; overflow: hidden; padding: 7px; }
.rh-venue-grid a.featured { grid-row: 1 / span 3; grid-template-columns: 1fr; }
.rh-venue-grid img { border-radius: 3px; height: 70px; object-fit: cover; width: 118px; }
.rh-venue-grid a.featured img { aspect-ratio: 16 / 9; height: auto; width: 100%; }
.rh-venue-grid span { font-family: "Barlow Condensed", sans-serif; font-size: .92rem; line-height: 1.1; }
.rh-venue-grid small { color: var(--rh-muted); font-size: .72rem; }
.rh-venue-grid b { align-items: center; color: var(--rh-yellow); display: flex; font-family: "Barlow Condensed", sans-serif; font-size: .72rem; gap: 4px; text-transform: uppercase; }
.rh-venue-grid b svg { height: 11px; width: 11px; }
.rh-watch > p { color: var(--rh-muted); font-size: .82rem; line-height: 1.45; }
.rh-watch-list { display: grid; }
.rh-watch-list div { align-items: center; border-bottom: 1px solid rgba(151, 169, 224, .14); display: flex; font-size: .82rem; justify-content: space-between; padding: 9px 0; }
.rh-watch-list b { border-radius: 3px; font-size: .58rem; padding: 3px 7px; }
.rh-watch-list .confirmed { background: #126843; color: #aaf3ca; }
.rh-watch-list .pending { background: #45321a; color: #ffd873; }
.rh-watch-note { align-items: flex-start; border-top: 1px solid rgba(151,169,224,.14); display: flex; gap: 7px; margin: 10px 0 0 !important; padding-top: 10px; }
.rh-watch-note svg { flex: 0 0 14px; height: 14px; margin-top: 2px; width: 14px; }

.rh-bottom-grid { align-items: stretch; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin-bottom: 12px; }
.rh-bottom-grid > article { height: 100%; }
.rh-faq details { border-bottom: 1px solid rgba(151, 169, 224, .15); transition: background .2s ease; }
.rh-faq summary { align-items: center; cursor: pointer; display: flex; font-family: "Barlow Condensed", sans-serif; font-size: .95rem; justify-content: space-between; list-style: none; padding: 12px 2px; user-select: none; transition: color .2s ease; }
.rh-faq summary::-webkit-details-marker { display: none; }
.rh-faq summary svg { height: 14px; width: 14px; transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1); }
.rh-faq details[open] summary svg { transform: rotate(90deg); color: var(--rh-yellow); }
.rh-faq details p { color: var(--rh-muted); font-size: .95rem; line-height: 1.55; padding: 0 2px 12px; animation: faqSlideDown .25s ease-out; }
@keyframes faqSlideDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.rh-newsletter { background: linear-gradient(135deg, #2f0f72, #7717df); border: 1px solid rgba(198, 140, 255, .4); border-radius: 7px; display: grid; padding: 24px; }
.rh-newsletter h2 { font-family: "Barlow Condensed", sans-serif; font-size: 2rem; margin-bottom: 7px; text-transform: uppercase; }
.rh-newsletter > div > p:last-child { color: #efe4ff; font-size: .95rem; line-height: 1.55; max-width: 430px; }
.rh-newsletter form { align-self: end; display: grid; grid-template-columns: 1fr auto; margin-top: 15px; }
.rh-newsletter input { background: #fff; border: 0; border-radius: 4px 0 0 4px; color: #16152a; min-height: 44px; min-width: 0; padding: 0 12px; }
.rh-newsletter button { background: var(--rh-yellow); border: 0; border-radius: 0 4px 4px 0; color: #121322; font-family: "Barlow Condensed", sans-serif; font-size: .78rem; font-weight: 800; min-height: 44px; padding: 0 18px; text-transform: uppercase; }
.rh-newsletter > small { color: #e2d2ff; font-size: .6rem; margin-top: 8px; }
.rh-newsletter .form-status { color: #f2e9ff; font-size: .65rem; grid-column: 1 / -1; margin: 7px 0 0; min-height: 1em; }

/* Keep the reference header actions compact and visible beside the main nav. */

.home-body .brand {
  align-items: center;
  display: flex;
  gap: 11px;
  min-width: 220px;
}
.home-body .brand-symbol {
  display: block;
  flex: 0 0 44px;
  height: 54px;
  overflow: hidden;
  position: relative;
  width: 44px;
}
.home-body .brand-symbol img {
  height: 54px;
  left: 0;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  position: absolute;
  top: 0;
  width: 167px;
}
.home-body .brand-copy { display: grid; line-height: 1; }
.home-body .brand-copy strong { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; font-weight: 900; text-transform: uppercase; }
.home-body .brand-copy small { color: #b5bfdc; font-family: "Barlow Condensed", sans-serif; font-size: .6rem; font-weight: 700; margin-top: 4px; text-transform: uppercase; }
.home-body .primary-nav { gap: clamp(10px, 1.15vw, 18px) !important; }
.home-body .primary-nav > a, .home-body .primary-nav > .nav-more > summary { font-size: .9rem; }

@media (max-width: 1050px) {
  .rh-home { width: min(100% - 24px, 960px); }
  .rh-hero { min-height: 620px; }
  .rh-hero-content { max-width: 370px; }
  .rh-hero-content h1 { font-size: 2.625rem; }
  .rh-hero-facts { grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(92px, 1fr)); max-width: 570px; width: 570px; }
  .rh-hero-facts > div { column-gap: 8px; grid-template-columns: 28px minmax(0, 1fr); padding: 12px 10px; }
  .rh-hero-facts dt svg { height: 23px; width: 23px; }
  .rh-hero-facts dt span { font-size: .67rem; }
  .rh-hero-facts dd { font-size: 1rem; }
  .rh-hero-facts > div:first-child dd { font-size: .9rem; }
  .rh-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .rh-upcoming-grid { grid-auto-columns: calc((100% - 20px) / 3); grid-template-columns: none; }
  .rh-support-grid { grid-template-columns: 1fr 1fr; }
  .rh-live-score-card { grid-template-columns: minmax(250px, .9fr) minmax(360px, 1.35fr); }
  .rh-live-actions {
    border-top: 1px solid var(--rh-line);
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr auto;
  }
}

@media (max-width: 1300px) and (min-width: 901px) {
  .rh-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-body .main-header-inner { grid-template-columns: minmax(205px, 220px) minmax(0, 1fr) auto; gap: 12px; }
  .home-body .brand { min-width: 205px; }
  .home-body .brand-copy strong { font-size: 1.35rem; }
  .home-body .primary-nav { gap: 10px !important; }
  .home-body .primary-nav > a, .home-body .primary-nav > .nav-more > summary { font-size: .78rem; }
}

@media (max-width: 900px) {
  .home-body .main-header { position: sticky; top: 0; z-index: 220; }
  .home-body .nav-toggle { position: relative; z-index: 201; }
  .home-body .nav-overlay { z-index: 9; }
  .home-body .primary-nav {
    align-items: stretch !important;
    inset: 0 0 0 auto !important;
    margin: 0 !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
    box-shadow: -12px 0 35px rgba(0, 0, 0, 0.65);
  }
  .home-body .primary-nav > a, .home-body .primary-nav > .nav-more { width: 100%; }
  .home-body .primary-nav > a { text-align: left; }
  .home-body .primary-nav > .nav-more > summary { justify-content: flex-start; padding: 16px 28px; }
  .home-body .primary-nav > .nav-more > div { position: static; width: 100%; }
  .home-body .mobile-nav-close {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 44px;
    font-size: 2rem;
    height: 44px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    min-height: 44px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 44px;
    z-index: 2;
  }
  .home-body .mobile-nav-close span { transform: translateY(-1px); }
  .rh-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rh-hero { min-height: 720px; }
  .rh-hero::after { background: linear-gradient(180deg, rgba(3, 6, 20, .98) 0%, rgba(3, 6, 20, .78) 46%, rgba(3, 6, 20, .2) 100%); }
  .rh-hero-art img { object-position: 67% center; }
  .rh-hero-content { max-width: 520px; padding: 46px 8px 0; }
  .rh-hero-content h1 { font-size: 3.75rem; max-width: 500px; }
  .rh-hero-content > p:not(.rh-eyebrow) { max-width: 430px; }
  .rh-hero-facts { bottom: 12px; grid-template-columns: repeat(2, 1fr); left: 8px; max-width: none; right: 8px; width: auto; }
  .rh-hero-facts > div { min-height: 70px; padding: 11px 14px; }
  .rh-hero-facts > div:nth-child(2) { border-right: 0; }
  .rh-hero-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--rh-line); }
  .home-body .brand { min-width: 0; }
  .home-body .brand-symbol { flex-basis: 35px; height: 42px; width: 35px; }
  .home-body .brand-symbol img { height: 42px; width: 130px; }
  .home-body .brand-copy strong { font-size: 1.2rem; }
  .home-body .brand-copy small { font-size: .5rem; }
}

@media (min-width: 901px) {
  .mobile-nav-close { display: none; }
}

@media (max-width: 760px) {
  .rh-home { width: min(100% - 16px, 640px); padding-bottom: 28px; }
  .rh-hero { display: grid; grid-template-rows: auto clamp(280px, 86vw, 350px) auto; min-height: 0; }
  .rh-hero::after { display: none; }
  .rh-hero-art { grid-row: 2; inset: auto; min-height: 0; position: relative; z-index: 0; }
  .rh-hero-art img { object-position: right center; }
  .rh-hero-content { background: #030614; grid-row: 1; max-width: 100%; padding: 38px 8px 24px; }
  .rh-hero-content h1 { font-size: 3rem; max-width: 430px; }
  .rh-hero-content > p:not(.rh-eyebrow) { font-size: .86rem; max-width: 350px; }
  .rh-hero-facts { bottom: auto; grid-row: 3; grid-template-columns: repeat(2, 1fr); left: auto; margin: 0 8px 12px; max-width: none; position: relative; right: auto; width: auto; }
  .rh-hero-facts > div:nth-child(2) { border-right: 0; }
  .rh-hero-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--rh-line); }
  .rh-hero-facts > div { column-gap: 8px; grid-template-columns: 26px minmax(0, 1fr); min-height: 68px; padding: 10px 9px; }
  .rh-hero-facts dt svg { height: 21px; width: 21px; }
  .rh-hero-facts dt span { font-size: .64rem; }
  .rh-hero-facts dd { font-size: .94rem; }
  .rh-hero-facts > div:first-child dd { font-size: .82rem; }
  .rh-next-match { grid-template-columns: 1fr; margin-top: 0; }
  .rh-match-intro { align-items: start; gap: 6px; grid-template-columns: 1fr; }
  .rh-match-intro > p { font-size: .875rem; }
  .rh-countdown { min-height: 145px; }
  .rh-match-line { grid-template-columns: 1fr 48px 1fr; gap: 4px; }
  .rh-match-team { gap: 5px; }
  .rh-match-team-right { gap: 5px; }
  .rh-match-team img { flex-basis: 45px; height: 45px; width: 45px; }
  .rh-match-team strong { font-size: .88rem; }
  .rh-match-team small { font-size: .55rem; }
  .rh-match-vs span { font-size: 1.3rem; }
  .rh-match-meta { gap: 8px; }
  .rh-match-meta span { font-size: .58rem; }
  .rh-match-actions .rh-button { flex: 1; font-size: .7rem; padding: 0 5px; }
  .rh-section-title h2, .rh-panel-heading h2 { font-size: 1.35rem; }
  .rh-section-title a, .rh-panel-heading a { font-size: .65rem; }
  .rh-live-score-card { grid-template-columns: minmax(0, 1fr); }
  .rh-live-status, .rh-live-actions { padding: 17px; }
  .rh-live-actions { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .rh-live-actions > small { grid-column: 1 / -1; }
  .rh-upcoming-grid { display: flex; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; }
  .rh-upcoming-card { flex: 0 0 205px; scroll-snap-align: start; }
  .rh-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rh-team-card img { height: 64px; width: 64px; }
  .rh-team-card strong { font-size: .8rem; }
  .rh-two-column, .rh-bottom-grid { grid-template-columns: 1fr; }
  .rh-two-column .rh-news { order: -1; }
  .rh-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-support-grid { grid-template-columns: 1fr; }
  .rh-support-grid .rh-watch { order: -1; }
  .rh-venue-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .rh-venue-grid a, .rh-venue-grid a.featured { grid-row: auto; grid-template-columns: 112px 1fr; }
  .rh-venue-grid a.featured img, .rh-venue-grid img { height: 70px; width: 112px; }
  .rh-newsletter { min-height: 220px; }
}

@media (max-width: 420px) {
  .rh-hero { grid-template-rows: auto clamp(280px, 92vw, 330px) auto; min-height: 0; }
  .rh-hero-content { padding-top: 30px; }
  .rh-hero-content h1 { font-size: 2.75rem; }
  .rh-hero-actions { display: grid; }
  .rh-button { width: 100%; }
  .rh-hero-facts > div:nth-child(-n+2) { min-height: 82px; }
  .rh-next-match-main { padding: 13px 12px; }
  .rh-match-team strong { font-size: .75rem; }
  .rh-match-team em { font-size: .52rem; }
  .rh-match-meta { display: grid; gap: 6px; }
  .rh-live-actions { grid-template-columns: 1fr; }
  .rh-live-actions > small { grid-column: auto; }
  .rh-standings { padding: 10px; }
  .rh-standings table { min-width: 500px; }
  .rh-newsletter form { grid-template-columns: 1fr; gap: 6px; }
  .rh-newsletter input, .rh-newsletter button { border-radius: 4px; min-height: 44px; }
}

@media (max-width: 480px) {
  .home-body .main-header-inner { width: calc(100% - 24px); }
  .home-body .brand { gap: 7px; }
  .home-body .brand-symbol { flex-basis: 32px; height: 40px; width: 32px; }
  .home-body .brand-symbol img { height: 40px; width: 124px; }
  .home-body .brand-copy strong { font-size: 18px; }
  .home-body .brand-copy small { font-size: 7px; }
  .home-body .header-actions { gap: 2px; }
  .home-body .header-actions .icon-button, .home-body .nav-toggle { height: 42px; min-height: 42px; min-width: 42px; width: 42px; }
}

@media (max-width: 390px) {
  .rh-hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 360px) {
  .rh-hero-content h1 { font-size: 2.375rem; }
}

@media (max-width: 340px) {
  .rh-hero-content h1 { font-size: 2.125rem; }
}

/* Reference-image sections merged into the established homepage. */
.rh-home > .hub-section {
  border: 0;
  border-bottom: 1px solid rgba(151, 169, 224, .18);
  border-radius: 0;
  border-top: 1px solid rgba(166, 109, 255, .28);
  margin: 0 0 24px;
  min-height: 0;
  padding-block: 48px;
}
.rh-home > .hub-section::after { height: 1px; opacity: .35; }
.rh-home > .hub-section .hub-shell { max-width: none; padding-inline: 28px; }
.rh-home > .hub-section .hub-heading { max-width: 630px; }
.rh-home > .hub-section .hub-heading h2 {
  font-size: clamp(2.15rem, 3.3vw, 3.7rem);
  text-transform: uppercase;
}
.rh-home > .hub-section .hub-copy { font-size: 1rem; line-height: 1.65; }
.rh-home > .hub-section .hub-eyebrow { font-size: .875rem; }
.rh-home > .hub-section .hub-rule { margin-block: 15px; }

.rh-home > .hub-about { background: linear-gradient(100deg, rgba(22, 10, 48, .78), rgba(5, 8, 23, .86) 48%, rgba(12, 25, 47, .7)); min-height: 0; }
.rh-home > .hub-about::after { display: none; }
.rh-home > .hub-about .hub-about-grid {
  align-items: center;
  gap: 44px;
  grid-template-columns: minmax(300px, .72fr) minmax(620px, 1.28fr);
}
.rh-home > .hub-about .hub-feature-list { gap: 8px; margin-top: 24px; }
.rh-home > .hub-about .hub-feature-list > div { gap: 13px; grid-template-columns: 42px 1fr; padding: 8px 0; }
.rh-home > .hub-about .hub-feature-list svg { height: 31px; width: 31px; }
.rh-home > .hub-about .hub-feature-list strong { font-size: 1rem; }
.rh-home > .hub-about .hub-feature-list small { font-size: .86rem; line-height: 1.5; }
.rh-home > .hub-about .hub-about-links { color: #d2ddf1; font-size: .92rem; line-height: 1.65; margin: 20px 0 0; max-width: 560px; }
.rh-home > .hub-about .hub-about-links a { color: var(--rh-yellow); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(255, 208, 0, .45); text-underline-offset: 3px; }
.rh-home > .hub-about .hub-format { padding-top: 0; }
.rh-home > .hub-about .hub-format ol { margin-top: 24px; }
.rh-home > .hub-about .hub-format ol::before { top: 72px; }
.rh-home > .hub-about .hub-format li { padding-inline: 8px; }
.rh-home > .hub-about .hub-format li > b { font-size: 3.1rem; }
.rh-home > .hub-about .hub-format li > span { height: 58px; margin: 8px 0 15px; width: 58px; }
.rh-home > .hub-about .hub-format li svg { height: 25px; width: 25px; }
.rh-home > .hub-about .hub-format li > strong { font-size: .9rem; }
.rh-home > .hub-about .hub-format li > small { font-size: .78rem; line-height: 1.45; margin-top: 6px; }
.rh-home > .hub-about .hub-format-stats { margin-top: 30px; }
.rh-home > .hub-about .hub-format-stats > div { padding: 16px 8px 0; }
.rh-home > .hub-about .hub-format-stats dd { font-size: 1.45rem; }

.rh-player-index {
  align-items: center;
  background: linear-gradient(100deg, rgba(24, 12, 58, .92), rgba(8, 13, 32, .76) 48%, rgba(12, 29, 52, .72));
  border-bottom: 1px solid rgba(151, 169, 224, .2);
  border-top: 1px solid rgba(166, 109, 255, .34);
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(300px, .75fr) minmax(620px, 1.25fr);
  margin: 4px 0 28px;
  min-height: 210px;
  padding: 26px 28px;
}
.rh-player-index-copy h2 { font-family: "Barlow Condensed", sans-serif; font-size: 2.25rem; line-height: 1; margin-bottom: 9px; text-transform: uppercase; }
.rh-player-index-copy > p:not(.rh-eyebrow) { color: #c5cee4; font-size: 1rem; line-height: 1.55; margin-bottom: 9px; max-width: 520px; }
.rh-player-index-copy > strong { color: #c38cff; display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.05rem; margin-bottom: 12px; }
.rh-player-index-copy > a { align-items: center; color: var(--rh-yellow); display: inline-flex; font-family: "Barlow Condensed", sans-serif; font-size: .9rem; font-weight: 800; gap: 7px; text-transform: uppercase; }
.rh-player-index-copy > a svg { height: 15px; width: 15px; }
.rh-player-role-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rh-player-role-grid a { align-items: center; border-bottom: 1px solid rgba(151, 169, 224, .16); display: grid; gap: 10px; grid-template-columns: 30px minmax(0, 1fr) 16px; min-height: 70px; padding: 10px 16px; }
.rh-player-role-grid a:nth-child(3n + 2), .rh-player-role-grid a:nth-child(3n + 3) { border-left: 1px solid rgba(151, 169, 224, .16); }
.rh-player-role-grid a:nth-last-child(-n + 3) { border-bottom: 0; }
.rh-player-role-grid a > svg:first-child { color: #a96fff; height: 25px; width: 25px; }
.rh-player-role-grid a:nth-child(even) > svg:first-child { color: var(--rh-yellow); }
.rh-player-role-grid a > svg:last-child { color: var(--rh-muted); height: 14px; transition: transform .2s ease; width: 14px; }
.rh-player-role-grid a:hover > svg:last-child { transform: translateX(3px); }
.rh-player-role-grid strong { font-family: "Barlow Condensed", sans-serif; font-size: 1rem; text-transform: uppercase; }

.rh-trust {
  border: 1px solid var(--rh-line);
  border-radius: 7px;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}
.rh-trust > div { align-items: flex-start; display: grid; gap: 13px; grid-template-columns: 30px 1fr; padding: 18px 20px; }
.rh-trust > div + div { border-left: 1px solid var(--rh-line); }
.rh-trust svg { color: var(--rh-yellow); height: 25px; width: 25px; }
.rh-trust span { display: grid; gap: 4px; }
.rh-trust strong { font-family: "Barlow Condensed", sans-serif; font-size: .9rem; text-transform: uppercase; }
.rh-trust p { color: #c1cae1; font-size: .9rem; line-height: 1.55; margin-bottom: 0; }
.rh-trust small { color: var(--rh-muted); font-size: .72rem; line-height: 1.45; }

@media (max-width: 1050px) {
  .rh-home > .hub-about .hub-about-grid { gap: 30px; grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .rh-home > .hub-section { padding-block: 32px; }
  .rh-home > .hub-section .hub-shell { padding-inline: 16px; }
  .rh-home > .hub-section .hub-heading h2 { font-size: 2.15rem; }
  .rh-home > .hub-about .hub-format { min-width: 0; overflow: hidden; }
  .rh-home > .hub-about .hub-format ol {
    gap: 8px;
    grid-auto-columns: 150px;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--rh-purple) #080d20;
  }
  .rh-home > .hub-about .hub-format ol::before { display: none; }
  .rh-home > .hub-about .hub-format li {
    display: grid;
    gap: 4px;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 220px;
    padding: 10px 8px;
    scroll-snap-align: start;
    text-align: center;
  }
  .rh-home > .hub-about .hub-format li > b { font-size: 2rem; grid-row: auto; }
  .rh-home > .hub-about .hub-format li > span { grid-row: auto; height: 48px; margin: 2px 0 8px; width: 48px; }
  .rh-home > .hub-about .hub-format li > strong { align-self: auto; }
  .rh-home > .hub-about .hub-format li > small { align-self: auto; margin: 4px 0 0; }
  .rh-home > .hub-about .hub-format-stats { grid-template-columns: repeat(3, 1fr); }
  .rh-home > .hub-about .hub-format-stats > div:nth-child(4) { border-left: 0; }
  .rh-match-team, .rh-match-team-right { flex-direction: column; justify-content: center; text-align: center; }
  .rh-match-team-right img { order: -1; }
  .rh-match-team em, .rh-match-team-right em { justify-self: center; }
  .rh-match-team img { flex-basis: 58px; height: 58px; width: 58px; }
  .rh-match-team strong { font-size: .86rem; line-height: 1; }
  .rh-match-team small { font-size: .58rem; }
  .rh-trust { grid-template-columns: 1fr; }
  .rh-trust > div + div { border-left: 0; border-top: 1px solid var(--rh-line); }
}

/* Homepage information architecture and responsive refinements. */
.rh-match-centre {
  border-bottom: 1px solid rgba(151, 169, 224, .14);
  margin: 0 0 28px;
  padding: 22px 0 26px;
}
.rh-match-centre-heading {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rh-match-centre-heading h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.rh-match-centre-heading a {
  color: var(--rh-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.rh-match-centre-heading svg { height: 14px; vertical-align: -3px; width: 14px; }
.rh-match-centre-grid { align-items: stretch; display: grid; gap: 12px; grid-template-columns: minmax(0, 1.75fr) minmax(390px, 1fr); }
.rh-match-centre .rh-next-match,
.rh-match-centre .rh-live-score { margin: 0; min-width: 0; }
.rh-match-centre .rh-next-match { grid-template-columns: minmax(0, 1fr) 235px; }
.rh-match-centre .rh-countdown { padding-inline: 12px; }
.rh-match-centre .rh-countdown-values { gap: 10px; }
.rh-match-centre .rh-live-score { background: linear-gradient(145deg, #101735, #080d20); border: 1px solid var(--rh-line); border-radius: 8px; padding: 14px; }
.rh-match-centre .rh-live-score .rh-section-title { margin-bottom: 10px; }
.rh-match-centre .rh-live-score .rh-section-copy { font-size: .95rem; line-height: 1.5; }
.rh-match-centre .rh-live-score-card { border-radius: 6px; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.rh-match-centre .rh-live-status,
.rh-match-centre .rh-live-actions { padding: 13px; }
.rh-match-centre .rh-live-status > strong { font-size: 1.15rem; }
.rh-match-centre .rh-live-status > p { font-size: .95rem; line-height: 1.5; }
.rh-match-centre .rh-live-actions { border-top: 1px solid var(--rh-line); grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
.rh-match-centre .rh-live-actions > small { grid-column: 1 / -1; line-height: 1.4; }
.rh-match-centre .rh-upcoming { margin: 18px 0 0; }

.rh-plan {
  align-items: center;
  background: linear-gradient(135deg, #101735, #080d20 72%);
  border: 0;
  border-bottom: 1px solid var(--rh-line);
  border-radius: 0;
  border-top: 1px solid var(--rh-line);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr);
  padding: 26px 28px;
}
.rh-plan-copy h2 { font-size: 2.35rem; margin-bottom: 8px; }
.rh-plan-copy > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.rh-plan-status { border: 1px solid var(--rh-line); border-radius: 7px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.rh-plan-status article { align-items: center; display: grid; gap: 13px; grid-template-columns: 42px 1fr; min-height: 116px; padding: 18px; }
.rh-plan-status article + article { border-left: 1px solid var(--rh-line); }
.rh-plan-status article > svg { color: var(--rh-yellow); height: 32px; width: 32px; }
.rh-plan-status span { display: grid; gap: 4px; }
.rh-plan-status small { color: var(--rh-muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.rh-plan-status strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.08rem; line-height: 1.1; text-transform: uppercase; }
.rh-plan-status em { color: #ffe188; font-size: .75rem; font-style: normal; }

.rh-newsletter-link {
  align-items: center;
  align-self: end;
  background: var(--rh-yellow);
  border-radius: 4px;
  color: #111425 !important;
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  justify-self: start;
  margin-top: 16px;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}
.rh-newsletter-link svg { height: 15px; width: 15px; }

.rh-support-grid > .rh-panel { background: transparent; border: 0; border-radius: 0; border-top: 1px solid rgba(151,169,224,.22); }

.rh-home > .hub-about { padding-block: 38px; }
.rh-home > .hub-about .hub-format li > small { min-height: 38px; }

@media (max-width: 1179px) {
  .rh-match-centre-grid { grid-template-columns: 1fr; }
  .rh-match-centre .rh-next-match { grid-template-columns: 1fr 280px; }
  .rh-match-centre .rh-live-score-card { grid-template-columns: minmax(250px, .9fr) minmax(360px, 1.35fr); }
  .rh-match-centre .rh-live-actions { grid-template-columns: 1fr 1fr auto; }
  .rh-match-centre .rh-live-actions > small { grid-column: auto; align-self: center; }
  .rh-player-index { gap: 20px; grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .home-body .primary-nav {
    border-left: 0 !important;
    border-top: 1px solid rgba(151, 169, 224, .2) !important;
    inset: 70px 0 0 0 !important;
    max-width: none !important;
    opacity: 0;
    padding: 66px 0 28px !important;
    pointer-events: none;
    transform: none !important;
    transition: opacity .18s ease, visibility .18s ease !important;
    visibility: hidden;
    width: 100% !important;
  }
  .home-body .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    visibility: visible;
  }
  .home-body .mobile-nav-close { right: 18px; top: 12px; }
}

@media (max-width: 760px) {
  .rh-match-centre { margin-bottom: 22px; padding: 18px 0 22px; }
  .rh-match-centre-heading { align-items: flex-start; }
  .rh-match-centre-heading h2 { font-size: 1.65rem; }
  .rh-match-centre-heading a { font-size: .68rem; }
  .rh-match-centre .rh-next-match { grid-template-columns: 1fr; }
  .rh-match-centre .rh-countdown { min-height: 116px; padding-block: 16px; }
  .rh-match-centre .rh-countdown p { margin-bottom: 9px; }
  .rh-match-centre .rh-countdown > strong { margin-top: 12px; padding-top: 10px; }
  .rh-match-centre .rh-live-score-card { grid-template-columns: 1fr; }
  .rh-match-centre .rh-live-actions { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .rh-match-centre .rh-live-actions > small { grid-column: 1 / -1; }
  .rh-plan { gap: 20px; grid-template-columns: 1fr; padding: 21px 16px; }
  .rh-plan-copy h2 { font-size: 2rem; }
  .rh-plan-status { grid-template-columns: 1fr; }
  .rh-plan-status article { min-height: 94px; }
  .rh-plan-status article + article { border-left: 0; border-top: 1px solid var(--rh-line); }
  .rh-newsletter { min-height: 0; }
  .rh-player-index { gap: 18px; margin-bottom: 22px; min-height: 0; padding: 23px 16px; }
  .rh-player-index-copy h2 { font-size: 2rem; }
  .rh-player-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rh-player-role-grid a { border-bottom: 1px solid rgba(151, 169, 224, .16); border-left: 0 !important; min-height: 66px; padding: 9px 11px; }
  .rh-player-role-grid a:nth-child(even) { border-left: 1px solid rgba(151, 169, 224, .16) !important; }
  .rh-player-role-grid a:nth-last-child(-n + 2) { border-bottom: 0; }
  .rh-home > .hub-about .hub-format li { min-height: 176px; }
}

@media (max-width: 420px) {
  .rh-match-centre-heading { display: grid; gap: 5px; }
  .rh-match-centre .rh-live-actions { grid-template-columns: 1fr; }
  .rh-match-centre .rh-live-actions > small { grid-column: auto; }
  .rh-plan-copy > div { display: grid; }
}

/* Homepage editorial refinement - 2026-07-25. */
.rh-match-intro {
  align-items: center;
  grid-template-columns: minmax(220px, .8fr) minmax(220px, 1.2fr);
}
.rh-match-intro > p {
  align-items: center;
  display: inline-flex;
  font-size: .9rem;
  gap: 7px;
  justify-self: end;
  line-height: 1.35;
  white-space: nowrap;
}
.rh-match-intro > p svg { color: var(--rh-yellow); height: 15px; width: 15px; }

.rh-match-centre .rh-live-score-card.rh-live-score-compact {
  grid-template-columns: minmax(0, 1fr) minmax(180px, .72fr);
}
.rh-match-centre .rh-live-score-compact .rh-live-actions {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}
.rh-match-centre .rh-live-score-compact .rh-live-actions > small {
  align-self: center;
  grid-column: auto;
  white-space: nowrap;
}
.rh-live-readiness { display: grid; gap: 3px; line-height: 1.25; }
.rh-live-readiness b { color: #54df91; font-size: .72rem; text-transform: uppercase; }
.rh-live-readiness time { color: #aab5d0; font-size: .7rem; }

.rh-two-column {
  border-bottom: 1px solid rgba(151, 169, 224, .18);
  border-top: 1px solid rgba(151, 169, 224, .18);
  gap: 34px;
  padding-block: 18px;
}
.rh-two-column > .rh-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.rh-two-column > .rh-panel + .rh-panel {
  border-left: 1px solid rgba(151, 169, 224, .18);
  padding-left: 34px;
}
.rh-two-column .rh-panel-heading { padding-bottom: 12px; }

.rh-feature-grid {
  border-bottom: 1px solid rgba(151, 169, 224, .2);
  border-top: 1px solid rgba(151, 169, 224, .2);
  gap: 0;
}
.rh-feature-tile {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 142px;
  padding: 18px 13px;
}
.rh-feature-tile + .rh-feature-tile { border-left: 1px solid rgba(151, 169, 224, .16); }
.rh-feature-tile:hover { background: rgba(151, 169, 224, .05); transform: none; }
.rh-feature-tile span { font-size: .83rem; }

.rh-player-index {
  gap: 28px;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  min-height: 0;
  padding: 21px 24px;
}
.rh-player-index-copy h2 { font-size: 2rem; }
.rh-player-index-copy > p:not(.rh-eyebrow) { margin-bottom: 7px; }
.rh-player-role-grid a { min-height: 58px; padding-block: 8px; }

.rh-support-grid > .rh-panel {
  border-bottom: 1px solid rgba(151, 169, 224, .2);
  padding: 18px 0;
}
.rh-bottom-grid > .rh-faq {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(151, 169, 224, .2);
  border-radius: 0;
  border-top: 1px solid rgba(151, 169, 224, .2);
  padding: 18px 0;
}
.rh-trust {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
}

@media (max-width: 1179px) {
  .rh-match-centre .rh-live-score-card.rh-live-score-compact {
    grid-template-columns: minmax(250px, 1fr) minmax(220px, .75fr);
  }
  .rh-player-index { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .rh-hero-art,
  .rh-hero-content {
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
  }
  .rh-hero-art img { max-width: 100%; }
  .rh-hero-content h1 > span,
  .rh-hero-content h1 > strong { white-space: normal; }
  .rh-home .rh-hero-content > p:not(.rh-eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .rh-match-intro {
    align-items: start;
    gap: 6px;
    grid-template-columns: 1fr;
  }
  .rh-match-intro > p {
    font-size: .82rem;
    justify-self: start;
    white-space: normal;
  }
  .rh-match-centre .rh-live-score-card.rh-live-score-compact { grid-template-columns: 1fr; }
  .rh-match-centre .rh-live-score-compact .rh-live-actions {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }
  .rh-match-centre .rh-live-score-compact .rh-live-actions > small {
    grid-column: 1 / -1;
    white-space: normal;
  }

  .rh-upcoming-grid {
    display: grid;
    grid-auto-columns: 82%;
  }
  .rh-upcoming-card { min-height: 162px; }

  .rh-team-grid {
    gap: 10px;
    grid-auto-columns: minmax(210px, 74%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .rh-team-grid::-webkit-scrollbar { display: none; }
  .rh-team-card {
    min-height: 255px;
    padding: 18px 12px 14px;
    scroll-snap-align: start;
  }
  .rh-team-card img { height: 86px; width: 86px; }
  .rh-team-card strong { font-size: 1rem; }
  .rh-team-card small,
  .rh-team-card em { font-size: .8125rem; line-height: 1.35; }
  .rh-team-card .rh-squad-status { font-size: .66rem; }
  .rh-team-card b { font-size: .72rem; min-height: 34px; padding: 8px 11px; }

  .rh-two-column {
    gap: 0;
    grid-template-columns: 1fr;
    padding-block: 0;
  }
  .rh-two-column > .rh-panel { padding-block: 18px; }
  .rh-two-column > .rh-panel + .rh-panel {
    border-left: 0;
    border-top: 1px solid rgba(151, 169, 224, .18);
    padding-left: 0;
  }
  .rh-two-column .rh-news { order: -1; }

  .rh-feature-grid {
    grid-auto-columns: 74%;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .rh-feature-grid::-webkit-scrollbar { display: none; }
  .rh-feature-tile {
    min-height: 134px;
    scroll-snap-align: start;
  }

  .rh-player-index { gap: 16px; padding: 20px 0; }
  .rh-player-role-grid {
    gap: 0;
    grid-auto-columns: 170px;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .rh-player-role-grid::-webkit-scrollbar { display: none; }
  .rh-player-role-grid a,
  .rh-player-role-grid a:nth-child(even) {
    border-bottom: 0;
    border-left: 1px solid rgba(151, 169, 224, .16) !important;
    min-height: 60px;
    scroll-snap-align: start;
  }
  .rh-player-role-grid a:first-child { border-left: 0 !important; }

  .rh-venue-grid {
    gap: 10px;
    grid-auto-columns: 82%;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .rh-venue-grid::-webkit-scrollbar { display: none; }
  .rh-venue-grid a,
  .rh-venue-grid a.featured {
    grid-row: auto;
    grid-template-columns: 1fr;
    padding: 9px;
    scroll-snap-align: start;
  }
  .rh-venue-grid a.featured img,
  .rh-venue-grid img {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
  }

  .rh-home > .hub-about .hub-format { overflow: visible; }
  .rh-home > .hub-about .hub-format ol {
    display: grid;
    gap: 0;
    grid-auto-columns: auto;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .rh-home > .hub-about .hub-format li {
    align-items: center;
    gap: 10px;
    grid-template-columns: 38px 50px minmax(0, 1fr);
    justify-items: start;
    min-height: 88px;
    padding: 8px 0;
    text-align: left;
  }
  .rh-home > .hub-about .hub-format li + li { border-top: 1px solid rgba(151, 169, 224, .14); }
  .rh-home > .hub-about .hub-format li > b { font-size: 1.8rem; }
  .rh-home > .hub-about .hub-format li > span { height: 44px; margin: 0; width: 44px; }
  .rh-home > .hub-about .hub-format li > strong,
  .rh-home > .hub-about .hub-format li > small {
    grid-column: 3;
    margin: 0;
    min-height: 0;
  }
  .rh-home > .hub-about .hub-format li > strong { align-self: end; font-size: .95rem; }
  .rh-home > .hub-about .hub-format li > small { align-self: start; font-size: .82rem; }
  .rh-home > .hub-about .hub-format-stats { grid-template-columns: repeat(2, 1fr); }
  .rh-home > .hub-about .hub-format-stats > div:nth-child(3) { border-left: 0; }
}

/* ── SEO Overview Section ──────────────────────────────────── */

@media (max-width: 900px) {
  .rh-match-centre .rh-live-score-compact .rh-live-actions { grid-template-columns: 1fr; }
  .rh-match-centre .rh-live-score-compact .rh-live-actions > small { grid-column: auto; }
}

@media (max-width: 420px) {
  .rh-upcoming-grid,
  .rh-team-grid,
  .rh-feature-grid,
  .rh-venue-grid { grid-auto-columns: 86%; }
  .rh-player-role-grid { grid-auto-columns: 66%; }
}

/* Homepage tonal balance: retain the night-cricket identity while separating
   long-form sections into readable full-width bands. */
.home-body {
  background: #0a1530;
}

.home-body .site-shell {
  background: #0a1530;
}

.rh-home {
  --rh-bg: #0a1530;
  --rh-panel: #203865;
  --rh-panel-2: #294477;
  --rh-line: rgba(194, 211, 245, .42);
  --rh-muted: #d2ddf1;
}

.rh-home > :is(
  .rh-match-centre,
  .rh-teams,
  .rh-two-column,
  .rh-feature-tiles,
  .pm-player-showcase,
  .rh-support-grid,
  .hub-about,
  .rh-plan,
  .rh-bottom-grid,
  .rh-trust
) {
  position: relative;
}

.rh-match-centre {
  background: linear-gradient(110deg, #193466, #23487e 54%, #253a70);
  box-shadow: 0 0 0 100vmax #1b376a;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px 38px;
}

.rh-teams {
  background: linear-gradient(110deg, #123d60, #185170 52%, #26457a);
  box-shadow: 0 0 0 100vmax #164563;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px 38px;
}

.rh-player-index {
  background: linear-gradient(105deg, #3a1e70, #24396d 50%, #0e5260);
  border-block: 1px solid rgba(186, 204, 246, .28);
  border-radius: 0;
  box-shadow: 0 0 0 100vmax #223c6b;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 30px;
}

.rh-two-column {
  background: #102445;
  border-color: rgba(180, 198, 241, .28);
  box-shadow: 0 0 0 100vmax #102445;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px;
}

.rh-feature-tiles {
  background: linear-gradient(110deg, #254274, #31548a 55%, #164a66);
  box-shadow: 0 0 0 100vmax #294b7d;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px;
}

.rh-home > .pm-player-showcase {
  background: #102344;
  box-shadow: 0 0 0 100vmax #102344;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0 !important;
  padding-block: 36px;
}

.rh-support-grid {
  background: linear-gradient(110deg, #16445b, #1c5870 52%, #294276);
  box-shadow: 0 0 0 100vmax #1a4b64;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px;
}

.rh-home > .hub-about {
  background: linear-gradient(105deg, #44207e, #29477a 52%, #125565);
  box-shadow: 0 0 0 100vmax #2d3970;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
}

.rh-plan {
  background: linear-gradient(110deg, #24447b, #31548a 56%, #17546b);
  border: 1px solid rgba(180, 198, 241, .3);
  box-shadow: 0 0 0 100vmax #1d3b6d;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px;
}

.rh-bottom-grid {
  background: linear-gradient(110deg, #294879, #3a4d87 54%, #43246e);
  box-shadow: 0 0 0 100vmax #31477c;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
  padding-block: 34px;
}

.rh-trust {
  background: #132746;
  box-shadow: 0 0 0 100vmax #132746;
  clip-path: inset(0 -100vmax);
  margin-bottom: 0;
}

.rh-next-match,
.rh-match-centre .rh-live-score,
.rh-live-score-card,
.rh-upcoming-grid,
.rh-panel {
  background-color: #17244a;
  border-color: rgba(180, 198, 241, .34);
}

.rh-next-match {
  background: linear-gradient(145deg, #1c2b55 0%, #162249 66%, #2a174a 100%);
}

.rh-match-centre .rh-live-score {
  background: linear-gradient(145deg, #1b2c57, #132449);
}

.rh-live-score-card {
  background: linear-gradient(145deg, #1d2f5c, #132448 72%);
}

.rh-upcoming-grid {
  background: linear-gradient(145deg, #1a2a54, #112344);
}

.rh-team-card {
  background: linear-gradient(180deg, rgba(26, 50, 83, .96), rgba(16, 31, 65, .92));
  border-bottom-color: rgba(180, 198, 241, .3);
}

.rh-home .pm-player-watch-card {
  background: #152247;
}

.rh-home .pm-player-watch-visual {
  background: linear-gradient(145deg, #1c2d58, #132445 76%);
}

.rh-home .pm-player-watch-visual::after {
  background: linear-gradient(90deg, transparent, rgba(13, 25, 50, .76) 22%, #132445 58%);
}

.rh-home .pm-player-watch-link,
.rh-venue-grid a {
  background: #182851;
}

.rh-feature-tile {
  background: linear-gradient(145deg, color-mix(in srgb, var(--tile-accent) 14%, #1c2b55), #142748 76%);
}

.rh-feature-tile:hover {
  background: linear-gradient(145deg, color-mix(in srgb, var(--tile-accent) 22%, #213364), #183052 76%);
}

.rh-two-column > .rh-panel {
  background: rgba(24, 39, 78, .64);
  padding: 18px;
}

.rh-two-column > .rh-panel + .rh-panel {
  padding-left: 34px;
}

.rh-support-grid > .rh-panel {
  background: rgba(18, 45, 68, .72);
  border: 1px solid rgba(180, 198, 241, .28);
  padding: 18px;
}

.rh-bottom-grid > .rh-faq {
  background: rgba(22, 35, 73, .82);
  border: 1px solid rgba(180, 198, 241, .3);
  padding: 20px;
}

.rh-section-copy,
.rh-match-intro > p,
.rh-live-status > p,
.rh-upcoming-card > div:first-child span,
.rh-upcoming-card > small,
.rh-upcoming-card > time,
.rh-team-card small,
.rh-team-card em,
.rh-news-list small,
.rh-feature-tile span,
.rh-watch > p,
.rh-faq details p,
.rh-trust p,
.rh-trust small {
  color: #c7d1e7;
}

.rh-home .pm-section-heading > div > p:last-child,
.rh-home .pm-player-showcase-note {
  color: #ccd5e8;
}

@media (max-width: 760px) {
  .rh-hero-content {
    background: #09142b;
  }

  .rh-match-centre,
  .rh-teams,
  .rh-feature-tiles,
  .rh-home > .pm-player-showcase,
  .rh-support-grid,
  .rh-plan,
  .rh-bottom-grid {
    padding-block: 26px;
  }

  .rh-player-index {
    padding-block: 24px;
  }

  .rh-two-column {
    padding-block: 8px;
  }

  .rh-two-column > .rh-panel,
  .rh-two-column > .rh-panel + .rh-panel {
    background: transparent;
    padding-inline: 0;
  }

  .rh-support-grid > .rh-panel,
  .rh-bottom-grid > .rh-faq {
    padding: 16px;
  }
}

/* Tonal balance pass: the match module becomes the one light utility surface,
   while the rest of the homepage stays inside the navy CPL visual system. */
.rh-next-match {
  border-color: rgba(143, 164, 207, .72);
  background: linear-gradient(135deg, #f8faff 0%, #e7eefb 62%, #eee6ff 100%);
  box-shadow: 0 18px 42px rgba(2, 9, 27, .24);
}

.rh-next-match-main {
  background: transparent;
}

.rh-next-match :is(
  .rh-match-intro h3,
  .rh-match-team strong,
  .rh-match-vs strong
) {
  color: #0a1730;
}

.rh-next-match :is(
  .rh-match-intro > p,
  .rh-match-team small,
  .rh-match-meta span
) {
  color: #536581;
}

.rh-next-match .rh-match-meta {
  border-top-color: rgba(35, 59, 104, .2);
}

.rh-next-match .rh-button-outline {
  border-color: #5a3ca0;
  color: #17213d;
}

.rh-upcoming-grid,
.rh-match-centre .rh-live-score,
.rh-live-score-card {
  border-color: rgba(194, 211, 245, .42);
}

.rh-upcoming-grid {
  background: linear-gradient(145deg, #203c70, #16335f);
}

.rh-match-centre .rh-live-score {
  background: linear-gradient(145deg, #294b80, #193763);
}

.rh-live-score-card {
  background: linear-gradient(145deg, #2b4f88, #1a3865 72%);
}

/* State-driven homepage scoreboard: compact at rest, richer only while live. */
.rh-match-centre-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

.rh-match-centre .rh-live-score-card.rh-live-score-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.rh-live-scoreboard {
  border-top: 1px solid var(--rh-line);
  display: grid;
  gap: 5px;
  padding: 10px 13px;
}

.rh-live-scoreboard > a {
  align-items: center;
  color: #fff;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  min-height: 58px;
}

.rh-live-scoreboard > a img {
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.rh-live-scoreboard > a span { display: grid; gap: 1px; min-width: 0; }
.rh-live-scoreboard > a b {
  color: var(--rh-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: .82rem;
  line-height: 1;
}
.rh-live-scoreboard > a small {
  color: #d8e2f6;
  font-size: .73rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.rh-live-scoreboard > a strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.rh-live-scoreboard > em {
  color: #b98aff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  justify-self: center;
  line-height: 1;
}

.rh-live-metrics {
  border-top: 1px solid var(--rh-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}
.rh-live-metrics > div { min-width: 0; padding: 10px 12px; }
.rh-live-metrics > div:nth-child(2) { border-left: 1px solid var(--rh-line); }
.rh-live-metrics > div:nth-child(3) {
  border-top: 1px solid var(--rh-line);
  grid-column: 1 / -1;
}
.rh-live-metrics dt {
  color: #aebbd5;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
}
.rh-live-metrics dd {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}

.rh-live-over {
  align-items: center;
  border-top: 1px solid var(--rh-line);
  display: none;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 10px 13px;
}
.rh-home:is([data-live-state="live"], [data-live-state="innings-break"], [data-live-state="rain-delay"], [data-live-state="delayed"], [data-live-state="toss-delay"]) .rh-live-over { display: grid; }
.rh-live-over > span {
  color: #d8e2f6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.rh-live-over [data-live-recent-over] { align-items: center; color: #c7d2e8; display: flex; gap: 7px; min-width: 0; }
.rh-live-over [data-live-recent-over] > span { display: flex; gap: 5px; overflow-x: auto; }
.rh-live-over [data-live-recent-over] i {
  align-items: center;
  background: rgba(255, 255, 255, .09);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 26px;
  font-size: .7rem;
  font-style: normal;
  height: 26px;
  justify-content: center;
}
.rh-live-over [data-live-recent-over] i.is-wicket { background: #d9363e; }
.rh-live-over [data-live-recent-over] i.is-boundary { background: #5c2aae; }

.rh-live-meta {
  align-items: center;
  border-top: 1px solid var(--rh-line);
  color: #c5cee4;
  display: flex;
  font-size: .7rem;
  gap: 8px 14px;
  justify-content: space-between;
  line-height: 1.35;
  padding: 9px 13px;
}
.rh-live-meta span { min-width: 0; overflow-wrap: anywhere; text-align: right; }

.rh-match-centre .rh-live-score-compact .rh-live-actions {
  border-top: 1px solid var(--rh-line);
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr;
  padding: 12px 13px;
}
.rh-match-centre .rh-live-score-compact .rh-live-actions > small {
  align-items: center;
  display: flex;
  gap: 8px;
  grid-column: auto;
  justify-content: space-between;
  white-space: normal;
}
.rh-live-readiness span { color: #b8c4dd; font-size: .7rem; }

.rh-match-status-copy { display: none; gap: 7px; max-width: 210px; }
.rh-match-status-copy strong { font-size: .9rem; line-height: 1.35; }
.rh-match-status-copy small { color: #b9c5de; font-size: .68rem; line-height: 1.35; }
.rh-home:is([data-live-state="live"], [data-live-state="innings-break"], [data-live-state="rain-delay"], [data-live-state="delayed"], [data-live-state="toss-delay"], [data-live-state="completed"], [data-live-state="abandoned"], [data-live-state="cancelled"]) .rh-countdown-values { display: none; }
.rh-home:is([data-live-state="live"], [data-live-state="innings-break"], [data-live-state="rain-delay"], [data-live-state="delayed"], [data-live-state="toss-delay"], [data-live-state="completed"], [data-live-state="abandoned"], [data-live-state="cancelled"]) .rh-match-status-copy { display: grid; }

@media (min-width: 760px) and (max-width: 1179px) {
  .rh-live-scoreboard { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
  .rh-live-scoreboard > em { align-self: center; }
  .rh-live-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rh-live-metrics > div:nth-child(3) { border-left: 1px solid var(--rh-line); border-top: 0; grid-column: auto; }
  .rh-match-centre .rh-live-score-compact .rh-live-actions { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; }
  .rh-match-centre .rh-live-score-compact .rh-live-actions > small { align-content: center; display: grid; }
}

@media (min-width: 1180px) {
  .rh-match-centre .rh-live-score-card.rh-live-score-compact {
    grid-template-columns: minmax(260px, .9fr) minmax(300px, 1fr) minmax(360px, 1.15fr);
  }
  .rh-live-scoreboard { border-left: 1px solid var(--rh-line); border-top: 0; }
  .rh-live-metrics { border-left: 1px solid var(--rh-line); border-top: 0; }
  .rh-live-over,
  .rh-live-meta { grid-column: 1 / -1; }
  .rh-match-centre .rh-live-score-compact .rh-live-actions {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  }
  .rh-match-centre .rh-live-score-compact .rh-live-actions > small { align-content: center; display: grid; }
}

@media (max-width: 420px) {
  .rh-live-scoreboard > a { grid-template-columns: 42px minmax(0, 1fr) auto; }
  .rh-live-scoreboard > a img { height: 42px; width: 42px; }
  .rh-live-scoreboard > a strong { font-size: 1rem; }
  .rh-live-meta { align-items: flex-start; flex-direction: column; }
  .rh-live-meta span { text-align: left; }
}

/* A single live-only score strip keeps the current match reachable without
   duplicating the full scorecard that belongs in the Live Score hub. */
.rh-live-strip {
  align-items: center;
  background: linear-gradient(90deg, #171034, #23104a 54%, #10223b);
  border: 1px solid rgba(202, 160, 255, .4);
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  color: #fff;
  display: none;
  gap: 12px;
  grid-template-columns: auto auto auto auto minmax(120px, 1fr) auto;
  margin: 10px 0 16px;
  min-height: 58px;
  padding: 8px 14px;
  position: sticky;
  top: 8px;
  z-index: 210;
}
.rh-home.rh-mode-live .rh-live-strip { display: grid; }
.rh-live-strip:hover { border-color: var(--rh-yellow); color: #fff; }
.rh-live-strip-badge {
  align-items: center;
  background: #d51f3f;
  border-radius: 3px;
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .76rem;
  font-weight: 900;
  gap: 5px;
  padding: 6px 9px;
  text-transform: uppercase;
}
.rh-live-strip-badge svg, .rh-live-strip-action svg { height: 14px; width: 14px; }
.rh-live-strip-team { align-items: center; display: grid; gap: 8px; grid-template-columns: 34px auto auto; }
.rh-live-strip-team img { height: 34px; object-fit: contain; width: 34px; }
.rh-live-strip-team b { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: .9rem; }
.rh-live-strip-team strong { color: var(--rh-yellow); font-family: "Barlow Condensed", sans-serif; font-size: 1.05rem; white-space: nowrap; }
.rh-live-strip > em { color: #bd8cff; font-family: "Barlow Condensed", sans-serif; font-style: normal; font-weight: 900; text-transform: uppercase; }
.rh-live-strip-copy { color: #d4dcf1; font-size: .8rem; line-height: 1.35; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rh-live-strip-action { align-items: center; color: var(--rh-yellow); display: inline-flex; font-family: "Barlow Condensed", sans-serif; font-size: .82rem; font-weight: 800; gap: 6px; text-transform: uppercase; white-space: nowrap; }

@media (max-width: 900px) {
  .rh-live-strip { top: 74px; }
}

@media (max-width: 640px) {
  .rh-live-strip {
    gap: 7px;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
    margin-top: 8px;
    min-height: 54px;
    padding: 7px 9px;
  }
  .rh-live-strip-team { gap: 5px; grid-template-columns: 28px auto; }
  .rh-live-strip-team img { height: 28px; width: 28px; }
  .rh-live-strip-team b { display: none; }
  .rh-live-strip-team strong { font-size: .9rem; }
  .rh-live-strip-copy { display: none; }
  .rh-live-strip-action { font-size: 0; }
  .rh-live-strip-action svg { height: 18px; width: 18px; }
}

@media (max-width: 390px) {
  .rh-live-strip-badge { font-size: .66rem; padding: 5px 6px; }
  .rh-live-strip-team img { height: 25px; width: 25px; }
  .rh-live-strip-team strong { font-size: .82rem; }
}
