:root {
  --bg: #07131c;
  --bg-soft: #0d1d2a;
  --surface: rgba(8, 20, 30, 0.94);
  --surface-2: rgba(14, 30, 45, 0.88);
  --line: rgba(255, 255, 255, 0.09);
  --text: #edf6fd;
  --muted: #9eb8cb;
  --accent: #f4a840;
  --accent-2: #30d3ff;
  --success: #68db8b;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-sm: 18px;
  --radius-xs: 14px;
  --container: min(1280px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(48, 211, 255, 0.08), transparent 32%),
    radial-gradient(circle at top left, rgba(244, 168, 64, 0.14), transparent 22%),
    linear-gradient(180deg, #07131c 0%, #0a1925 48%, #06111a 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-main {
  padding-bottom: 80px;
}

.breaking-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 13, 20, 0.82);
  backdrop-filter: blur(10px);
}

.breaking-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 48px;
}

.breaking-bar__label,
.story-card__badge,
.section-kicker,
.footer-brand__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
}

.breaking-bar__label::before,
.section-kicker::before,
.footer-brand__kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(244, 168, 64, 0.1);
}

.breaking-bar__ticker {
  overflow: hidden;
  white-space: nowrap;
  color: var(--muted);
}

.breaking-bar__ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 18s linear infinite;
}

.breaking-bar__ticker.is-paused span {
  animation-play-state: paused;
}

.breaking-bar__date {
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 19, 28, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-branding__logo img {
  max-height: 56px;
  width: auto;
}

.site-title {
  font-family: "Barlow", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-description {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a,
.footer-menu a {
  color: #d7e5ef;
  font-weight: 600;
  font-size: 0.95rem;
}

.primary-menu a:hover,
.footer-menu a:hover,
.section-link:hover,
.score-card__footer a:hover,
.story-card__title a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button,
.search-submit,
.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffcb69 100%);
  color: #0c1722;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(244, 168, 64, 0.24);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.button:hover,
.search-submit:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 36px rgba(244, 168, 64, 0.3);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: rgba(244, 168, 64, 0.4);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  padding: 0;
  position: relative;
}

.menu-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #fff;
  transition: .2s ease;
}

.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle span:nth-child(3) { top: 32px; }

.card-surface,
.widget-card,
.footer-widget {
  background: linear-gradient(180deg, rgba(10, 23, 35, 0.94) 0%, rgba(8, 18, 28, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-section {
  padding: 46px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-feature {
  padding: 34px;
}

.hero-copy h1,
.hero-feature h2,
.page-header h1,
.single-entry__header h1,
.page-entry__header h1,
.not-found h1 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 0.95;
  margin: 14px 0 18px;
  letter-spacing: -0.03em;
}

.hero-copy p,
.hero-feature p,
.page-header p,
.single-entry__excerpt {
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 62ch;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.hero-stats li {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.hero-stats strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: .92rem;
}

.hero-feature {
  display: grid;
  gap: 18px;
}

.hero-feature__media {
  overflow: hidden;
  border-radius: 20px;
}

.hero-feature__media img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.hero-feature__content h2 {
  font-size: clamp(1.6rem, 2.8vw, 3.1rem);
  margin-top: 10px;
  margin-bottom: 12px;
}

.eyebrow-row,
.entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.story-card__meta,
.entry-meta span,
.score-card__footer span,
.archive-description,
.footer-bottom p,
.widget,
.comment-metadata,
.comment-notes,
.logged-in-as {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

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

.section-heading h2,
.sidebar-section h2,
.single-entry__gallery-link h2 {
  margin: 10px 0 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1;
}

.section-link {
  color: #d7e5ef;
  font-weight: 700;
}

.top-headlines-section,
.video-hub,
.news-river,
.page-shell,
.archive-shell {
  padding-top: 20px;
}

.headline-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.homepage-content {
  padding-top: 22px;
}

.homepage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.content-column,
.sidebar-column,
.sidebar-stack {
  display: grid;
  gap: 24px;
}

.story-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 29, 42, 0.96) 0%, rgba(8, 18, 28, 0.96) 100%);
  box-shadow: var(--shadow);
}

.story-card__image,
.story-card__placeholder {
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(48, 211, 255, 0.14), rgba(244, 168, 64, 0.18)),
    #102132;
  min-height: 220px;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.story-card--compact .story-card__image,
.story-card--compact .story-card__placeholder,
.story-card--sidebar .story-card__image,
.story-card--sidebar .story-card__placeholder,
.story-card--video .story-card__image,
.story-card--video .story-card__placeholder {
  min-height: 180px;
}

.story-card__content {
  display: grid;
  gap: 10px;
}

.story-card__title {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1.55rem;
  line-height: 1.02;
}

.story-card--compact .story-card__title,
.story-card--sidebar .story-card__title,
.story-card--video .story-card__title {
  font-size: 1.28rem;
}

.story-card__excerpt {
  margin: 0;
  color: var(--muted);
}

.live-scores,
.sidebar-section,
.partner-block,
.page-header,
.single-entry__header,
.single-entry__body,
.single-entry__media,
.single-entry__video,
.single-entry__score,
.single-entry__footer,
.single-entry__gallery-link,
.page-entry,
.comments-area {
  padding: 28px;
}

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

.score-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 29, 42, 0.96) 0%, rgba(9, 18, 28, 0.96) 100%);
  border: 1px solid var(--line);
}

.score-card__header,
.score-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.score-card__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}

.score-card__team {
  display: grid;
  gap: 6px;
  text-align: center;
}

.score-card__team strong {
  font-size: 1rem;
}

.score-card__team span {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.score-card__separator {
  color: var(--muted);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .12em;
}

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

.partner-block {
  position: relative;
  overflow: hidden;
}

.partner-block::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(48, 211, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.widget-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: "Barlow", sans-serif;
  font-size: 1.15rem;
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
  background: rgba(4, 9, 14, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 24px;
}

.footer-brand h2 {
  margin: 12px 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
}

.footer-brand p {
  max-width: 62ch;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #dceaf4;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.single-entry {
  padding-top: 36px;
}

.single-entry__container,
.page-shell__container {
  display: grid;
  gap: 20px;
}

.single-entry__media img,
.single-entry__video iframe {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.single-entry__body,
.page-entry__content {
  font-size: 1.04rem;
}

.single-entry__body > *:first-child,
.page-entry__content > *:first-child {
  margin-top: 0;
}

.single-entry__body p,
.page-entry__content p {
  color: #d8e8f4;
}

.single-entry__body h2,
.single-entry__body h3,
.page-entry__content h2,
.page-entry__content h3 {
  font-family: "Barlow", sans-serif;
  line-height: 1.05;
}

.page-header,
.page-entry,
.not-found {
  margin-top: 36px;
}

.pagination-wrap,
.navigation.post-navigation {
  margin-top: 28px;
}

.nav-links,
.page-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-numbers,
.post-page-numbers {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #d7e5ef;
  padding: 0 16px;
}

.current {
  background: rgba(244, 168, 64, 0.16);
  color: var(--accent);
  border-color: rgba(244, 168, 64, 0.3);
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 160px;
}

label {
  display: block;
}

.comment-list {
  padding-left: 20px;
}

.comment-body {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.empty-state {
  padding: 20px;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.alignwide {
  width: min(1280px, calc(100vw - 80px));
  max-width: none;
  margin-left: calc(50% - min(640px, calc((100vw - 80px)/2)));
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 1140px) {
  .hero-grid,
  .homepage-layout,
  .video-grid,
  .headline-grid,
  .news-grid,
  .footer-widgets,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .homepage-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-navigation {
    position: fixed;
    top: 134px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(10, 23, 35, 0.98);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .primary-menu,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-menu a,
  .header-actions a {
    width: 100%;
    text-align: center;
  }

  .scores-grid,
  .hero-grid,
  .headline-grid,
  .news-grid,
  .video-grid,
  .sidebar-column,
  .hero-stats,
  .footer-widgets,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    min-height: 78px;
  }

  .site-description,
  .breaking-bar__date {
    display: none;
  }

  .breaking-bar__inner {
    grid-template-columns: auto 1fr;
  }

  .footer-bottom {
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 1280px);
  }

  .hero-copy,
  .hero-feature,
  .live-scores,
  .sidebar-section,
  .partner-block,
  .page-header,
  .single-entry__header,
  .single-entry__body,
  .single-entry__media,
  .single-entry__video,
  .single-entry__score,
  .single-entry__footer,
  .single-entry__gallery-link,
  .page-entry,
  .comments-area {
    padding: 22px;
  }

  .hero-copy h1,
  .hero-feature h2,
  .page-header h1,
  .single-entry__header h1,
  .page-entry__header h1,
  .not-found h1 {
    line-height: 1;
  }

  .score-card__body {
    grid-template-columns: 1fr;
  }

  .score-card__separator {
    justify-self: center;
  }

  .story-card__image img,
  .story-card__placeholder {
    min-height: 200px;
  }
}

/* v2 portal upgrade */
.hero-section--portal {
  padding-bottom: 8px;
}

.portal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) 320px;
  gap: 24px;
  align-items: stretch;
}

.hero-rail,
.live-centre-side,
.broadcast-feed,
.network-grid {
  display: grid;
  gap: 24px;
}

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

.info-panel {
  padding: 24px;
}

.info-panel--accent {
  background:
    radial-gradient(circle at top right, rgba(48, 211, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(16, 35, 52, 0.98), rgba(9, 20, 30, 0.98));
}

.info-panel h3,
.spotlight-card h3,
.partner-banner h2,
.rankings-panel h2,
.regions-panel h2,
.side-module h2 {
  margin: 14px 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 1.55rem;
  line-height: 1.02;
}

.info-panel p,
.spotlight-card p,
.partner-banner p,
.side-module p,
.section-description {
  margin: 0;
  color: var(--muted);
}

.section-description {
  margin-top: 8px;
  max-width: 62ch;
}

.live-centre-section,
.tournament-spotlight-section,
.broadcast-section,
.network-section,
.partner-banner-section {
  padding-top: 34px;
}

.live-centre-grid,
.broadcast-grid,
.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 24px;
}

.live-centre-main {
  padding: 28px;
}

.lead-score-surface {
  margin-bottom: 18px;
}

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

.side-module {
  padding: 26px;
}

.side-module--cta {
  background:
    radial-gradient(circle at top left, rgba(244, 168, 64, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(10, 23, 35, 0.94), rgba(8, 18, 28, 0.97));
}

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

.spotlight-card {
  padding: 24px;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.spotlight-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spotlight-card__link,
.region-chip,
.ranking-row,
.story-card__footer-note {
  color: #dce9f2;
}

.spotlight-card__link {
  font-weight: 700;
}

.spotlight-card__link:hover,
.region-chip:hover {
  color: var(--accent);
}

.story-card--video-lead .story-card__image,
.story-card--video-lead .story-card__placeholder {
  min-height: 320px;
}

.story-card--video-lead .story-card__title {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.story-card__footer-note {
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.85;
}

.rankings-panel,
.regions-panel {
  padding: 28px;
}

.ranking-list {
  display: grid;
  gap: 12px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.ranking-row__position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(244, 168, 64, 0.12);
  color: var(--accent);
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.ranking-row__body {
  display: grid;
  gap: 3px;
}

.ranking-row__body strong {
  font-size: 1rem;
}

.ranking-row__body span,
.region-chip span {
  color: var(--muted);
}

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

.region-chip {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

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

.partner-block--member {
  background:
    radial-gradient(circle at top right, rgba(48, 211, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(13, 29, 42, 0.96), rgba(8, 18, 28, 0.96));
}

.partner-banner {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.partner-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1260px) {
  .portal-hero-grid,
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1140px) {
  .live-centre-grid,
  .broadcast-grid,
  .network-grid,
  .news-grid--portal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .portal-hero-grid,
  .hero-rail,
  .spotlight-grid,
  .region-chip-grid,
  .scores-grid--rail,
  .partner-banner {
    grid-template-columns: 1fr;
  }

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

  .partner-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .live-centre-main,
  .side-module,
  .rankings-panel,
  .regions-panel,
  .partner-banner,
  .spotlight-card,
  .info-panel {
    padding: 22px;
  }

  .story-card--video-lead .story-card__image,
  .story-card--video-lead .story-card__placeholder {
    min-height: 220px;
  }
}

.live-pulse-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(90deg, rgba(9,21,32,.95), rgba(12,28,42,.92));
}

.live-pulse-bar__inner {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 20px;
  align-items: center;
}

.live-pulse-bar__copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-pulse-bar__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.live-pulse-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.live-pill,
.term-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 12px 16px;
  border-radius: 999px;
}

.live-pill strong,
.term-chip strong {
  font-size: 0.92rem;
}

.live-pill span,
.term-chip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.term-chip--muted {
  background: rgba(255,255,255,0.02);
}

.page-header--live,
.competition-hero,
.calendar-panel,
.term-chip-grid,
.standings-panel,
.schedule-panel,
.competition-highlight,
.single-entry__info-panel {
  padding: 30px;
}

.page-header__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.archive-shell--matches .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.term-chip-grid__items,
.single-entry__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.match-board-section,
.calendar-section,
.competition-layout,
.single-entry__container--split {
  margin-top: 28px;
}

.match-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.match-mini-card {
  padding: 18px;
}

.match-mini-card__top,
.match-mini-card__bottom,
.match-mini-card__scoreline > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.match-mini-card__scoreline {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.match-mini-card__scoreline strong {
  font-size: 1rem;
}

.match-mini-card__scoreline span {
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.match-mini-card__bottom span {
  color: var(--muted);
  font-size: .9rem;
}

.competition-hero {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
}

.competition-hero__meta {
  display: grid;
  gap: 14px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  padding: 20px;
}

.metric-card strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  margin-bottom: 6px;
}

.metric-card span,
.archive-description,
.standings-table td,
.meta-list span,
.single-entry__info-panel p {
  color: var(--muted);
}

.competition-layout,
.single-entry__container--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.competition-sidebar,
.single-entry__sidebar {
  display: grid;
  gap: 20px;
  align-self: start;
}

.standings-table-wrap {
  overflow-x: auto;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
}

.standings-table th,
.standings-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.standings-table th {
  color: var(--text);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.single-entry--v3 .single-entry__main {
  display: grid;
  gap: 22px;
}

.single-entry__info-panel {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 140px;
}

.single-entry__sidebar > .widget-card,
.single-entry__sidebar > .widget {
  position: static;
}

.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.meta-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.meta-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.meta-list strong {
  font-size: .92rem;
}

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

.single-entry__nav .post-navigation,
.single-entry__nav .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.calendar-panel .section-heading > div > p {
  margin: 10px 0 0;
  max-width: 60ch;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .live-pulse-bar__inner,
  .competition-hero,
  .competition-layout,
  .single-entry__container--split,
  .archive-shell--matches .page-header {
    grid-template-columns: 1fr;
  }

  .archive-shell--matches .page-header {
    display: grid;
  }

  .match-board-grid,
  .news-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-entry__info-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .live-pulse-bar__copy,
  .live-pulse-bar__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .match-board-grid,
  .news-grid--related {
    grid-template-columns: 1fr;
  }

  .page-header--live,
  .competition-hero,
  .calendar-panel,
  .term-chip-grid,
  .standings-panel,
  .schedule-panel,
  .competition-highlight,
  .single-entry__info-panel {
    padding: 22px;
  }
}

/* v4 membership layer */
.story-card__badge-group {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.story-card__badge--premium {
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.28), rgba(255, 149, 0, 0.24));
	border-color: rgba(255, 193, 7, 0.45);
	color: #ffe28a;
}

.membership-section {
	padding: 2rem 0 1rem;
}

.membership-grid,
.membership-value-grid,
.membership-plan-grid {
	display: grid;
	gap: 1.25rem;
}

.membership-grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.membership-panel,
.membership-stories,
.membership-landing__hero,
.membership-content-preview,
.membership-value-card,
.plan-card {
	padding: 1.5rem;
}

.membership-price,
.plan-price {
	font-size: clamp(1.4rem, 2vw, 2rem);
	font-weight: 800;
	margin: 0.25rem 0 1rem;
	color: #ffffff;
}

.membership-benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1rem 0 1.25rem;
}

.membership-benefit {
	padding: 0.9rem 1rem;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
	font-weight: 600;
}

.membership-landing {
	padding: 1.5rem 0 2.5rem;
}

.membership-landing__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.membership-value-grid,
.membership-plan-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 1.5rem;
}

.plan-card--featured {
	border-color: rgba(255, 193, 7, 0.45);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.plan-list,
.meta-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.plan-list li {
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.premium-teaser {
	display: grid;
	gap: 1rem;
}

.premium-teaser__excerpt p {
	font-size: 1.05rem;
	line-height: 1.8;
}

.membership-paywall {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 193, 7, 0.35);
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 149, 0, 0.08));
}

.single-entry__info-panel--premium {
	border-color: rgba(255, 193, 7, 0.4);
}

@media (max-width: 960px) {
	.membership-grid,
	.membership-landing__hero,
	.membership-value-grid,
	.membership-plan-grid {
		grid-template-columns: 1fr;
	}

	.membership-paywall {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.membership-benefits {
		grid-template-columns: 1fr;
	}
}


/* v5 membership product layer */
.term-chip--premium {
	border-color: rgba(255, 193, 7, 0.35);
	background: rgba(255, 193, 7, 0.08);
	color: #ffe28a;
}

.membership-paywall--stack {
	align-items: flex-start;
	flex-direction: column;
}

.membership-paywall__copy {
	display: grid;
	gap: 0.35rem;
}

.membership-lock-grid,
.auth-grid,
.account-grid {
	display: grid;
	gap: 1.25rem;
}

.membership-lock-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1rem;
}

.auth-hub,
.pricing-page,
.account-dashboard {
	padding: 1.5rem 0 2.5rem;
}

.auth-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.auth-panel,
.auth-side,
.account-hero,
.account-status-card,
.account-benefits-card,
.comparison-table-wrap,
.pricing-hero,
.account-empty {
	padding: 1.5rem;
}

.auth-form-wrap .login-remember label,
.auth-form p {
	margin: 0 0 1rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form-wrap input[type="text"],
.auth-form-wrap input[type="password"] {
	margin-top: 0.4rem;
}

.auth-form .login-submit,
.auth-form-wrap .login-submit {
	margin-top: 1rem;
}

.auth-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.25rem;
	margin-top: 1rem;
}

.auth-links a,
.auth-note {
	color: var(--muted);
	font-size: 0.95rem;
}

.notice-card {
	padding: 1rem 1.1rem;
	border-radius: 18px;
	margin-bottom: 1rem;
	border: 1px solid var(--line);
	background: rgba(255,255,255,0.04);
}

.notice-card--error {
	border-color: rgba(255, 99, 99, 0.32);
	background: rgba(255, 99, 99, 0.1);
}

.notice-card--success {
	border-color: rgba(104, 219, 139, 0.28);
	background: rgba(104, 219, 139, 0.1);
}

.mini-plan-stack {
	display: grid;
	gap: 0.9rem;
}

.mini-plan-card {
	padding: 1rem;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}

.mini-plan-card strong,
.membership-tier-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.mini-plan-card span {
	display: block;
	margin-top: 0.35rem;
	color: #fff;
	font-weight: 700;
}

.mini-plan-card p {
	margin: 0.65rem 0 0;
	color: var(--muted);
}

.membership-tier-chip {
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.05);
	border: 1px solid var(--line);
	color: var(--text);
}

.membership-tier-chip--active {
	background: linear-gradient(135deg, rgba(244, 168, 64, 0.2), rgba(255, 193, 7, 0.14));
	border-color: rgba(255, 193, 7, 0.42);
	color: #ffe28a;
}

.account-hero {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.25rem;
}

.tier-chip-row {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
}

.account-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 1.5rem;
}

.comparison-table-scroll {
	overflow-x: auto;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

.comparison-table th,
.comparison-table td {
	padding: 0.95rem 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	text-align: left;
}

.comparison-table th {
	font-family: "Barlow", sans-serif;
	font-size: 0.92rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.comparison-table tbody tr:hover {
	background: rgba(255,255,255,0.03);
}

@media (max-width: 960px) {
	.auth-grid,
	.account-grid,
	.membership-lock-grid {
		grid-template-columns: 1fr;
	}

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


.checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1.25rem;
	align-items: start;
}

.checkout-main,
.checkout-summary,
.billing-state-card,
.account-pmpro-wrap {
	padding: 2rem;
}

.billing-plan-hero {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin: 1.25rem 0;
}

.checkout-meta-grid,
.billing-step-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1rem;
}

.checkout-meta-grid .membership-benefit,
.billing-step-grid .membership-benefit {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-height: 100%;
}

.checkout-meta-grid .membership-benefit span,
.billing-step-grid .membership-benefit span {
	font-size: 0.92rem;
	color: var(--muted);
	word-break: break-word;
}

.checkout-plugin-frame {
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 1rem;
	background: rgba(255,255,255,0.02);
}

.billing-state-page {
	padding: 3rem 0 4rem;
}

.billing-state-card {
	max-width: 900px;
	margin: 0 auto;
}

.billing-state-card--success {
	border: 1px solid rgba(98, 211, 161, 0.22);
}

.billing-state-card--cancel {
	border: 1px solid rgba(255, 191, 0, 0.22);
}

.plan-card .hero-actions {
	margin-top: 1rem;
}

.mini-plan-card--active {
	border-color: rgba(255, 193, 7, 0.38);
	background: linear-gradient(180deg, rgba(255, 193, 7, 0.08), rgba(255,255,255,0.02));
}

@media (max-width: 960px) {
	.checkout-grid,
	.checkout-meta-grid,
	.billing-step-grid {
		grid-template-columns: 1fr;
	}

	.billing-plan-hero {
		flex-direction: column;
	}
}


.account-billing-grid {
	margin: 1rem 0 0.75rem;
}

.notice-card {
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}

.notice-card--error {
	border-color: rgba(255, 107, 107, 0.28);
	background: rgba(255, 107, 107, 0.08);
}

.notice-card--success {
	border-color: rgba(98, 211, 161, 0.28);
	background: rgba(98, 211, 161, 0.08);
}


:root {
	--container-wide: min(1760px, calc(100vw - 48px));
}

.container,
.site-header__inner,
.breaking-bar__inner,
.live-pulse-bar__inner {
	max-width: var(--container-wide);
}

.stream-embed {
	position: relative;
	border-radius: 1.25rem;
	overflow: hidden;
	background: #000;
	box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.stream-embed iframe,
.stream-embed video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	background: #000;
}

.bsg-inline-player {
	width: 100%;
	height: auto;
	max-height: 78vh;
}

.page-copy-block {
	padding: 0 0 4rem;
}

.page-copy-block__inner {
	max-width: 980px;
	margin: 0 auto;
}

.page-copy-block .page-entry__content > *:first-child {
	margin-top: 0;
}

.page-copy-block .page-entry__content > *:last-child {
	margin-bottom: 0;
}

.page-copy-block .page-entry__content ul,
.page-copy-block .page-entry__content ol {
	padding-left: 1.2rem;
}

@media (min-width: 1680px) {
	:root {
		--container-wide: min(1880px, calc(100vw - 72px));
	}

	body {
		font-size: 18px;
	}

	.site-header__inner,
	.breaking-bar__inner,
	.live-pulse-bar__inner,
	.container {
		max-width: var(--container-wide);
	}
}

@media (min-width: 2200px) {
	:root {
		--container-wide: min(2200px, calc(100vw - 96px));
	}

	body {
		font-size: 20px;
	}

	.site-branding__logo img,
	.custom-logo {
		max-height: 96px;
		width: auto;
	}
}


@media (min-width: 1700px) {
  .container {
    max-width: 1560px;
  }

  .hero-section--portal h1,
  .membership-landing__hero h1,
  .pricing-hero h1,
  .account-hero h1 {
    font-size: clamp(3.2rem, 3vw, 4.6rem);
  }

  body {
    font-size: 18px;
  }
}
