:root {
  --rush-green: #CDFF21;
  --rush-black: #050608;
  --rush-ink: #0A0D12;
  --rush-card: #11161E;
  --rush-card-soft: #171E28;
  --rush-border: rgba(255, 255, 255, 0.12);
  --rush-text: #FFFFFF;
  --rush-muted: rgba(255, 255, 255, 0.68);
  --rush-dim: rgba(255, 255, 255, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--rush-black);
  color: var(--rush-text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.menu-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.site-header.menu-open {
  z-index: 9999;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(2, 5, 8, 0.96) 0%, rgba(2, 5, 8, 0.88) 72%, rgba(2, 5, 8, 0.72) 100%);
  border-bottom: 1px solid rgba(205,255,33,0.10);
  transition: background 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 5, 8, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 78px;
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 84px;
}

.brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 44px);
  margin-left: 10px;
}

.desktop-nav a {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--rush-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.desktop-nav a.is-active {
  color: #fff;
}

.mobile-nav a.is-active {
  color: var(--rush-green);
}

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

.league-switcher,
.mobile-league-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.league-switcher-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.league-switcher-link:hover {
  transform: translateY(-2px);
  border-color: rgba(205,255,33,0.58);
  background: rgba(205,255,33,0.09);
  box-shadow: 0 18px 42px rgba(205,255,33,0.10);
}

.league-switcher-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.36));
}

.mobile-league-switcher {
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(.2,.9,.2,1);
}

.site-header.menu-open .mobile-league-switcher {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 335ms;
}

.mobile-league-switcher .league-switcher-link {
  width: 60px;
  height: 60px;
}

.mobile-league-switcher .league-switcher-link img {
  width: 40px;
  height: 40px;
}

.mobile-league-switcher .league-switcher-link {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mobile-league-switcher .league-switcher-link:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.mobile-league-switcher .league-switcher-link::after {
  content: none;
}

.mobile-league-switcher .league-switcher-link img {
  width: 52px;
  height: 52px;
}

.pill-link {
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rush-green);
  color: #091000;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 0 28px rgba(205, 255, 33, 0.18);
}

.pill-link.ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.register-team-link {
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0,0,0,0.26);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.register-team-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.10));
  border-color: rgba(255,255,255,0.26);
}

.mobile-register-link {
  margin-top: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.mobile-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  padding: 11px;
  cursor: pointer;
  position: relative;
  z-index: 80;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 999px;
  transition: transform 260ms ease, opacity 220ms ease, background 220ms ease;
}

.site-header.menu-open .mobile-toggle {
  background: rgba(205,255,33,0.10);
  border-color: rgba(205,255,33,0.35);
  transform: rotate(90deg);
}

.site-header.menu-open .mobile-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--rush-green);
}

.site-header.menu-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--rush-green);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: max(108px, calc(env(safe-area-inset-top) + 96px)) 30px max(44px, calc(env(safe-area-inset-bottom) + 34px));
  background:
    radial-gradient(circle at 82% 18%, rgba(205,255,33,0.18), transparent 30%),
    radial-gradient(circle at 10% 86%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(145deg, rgba(3,5,8,0.98), rgba(8,12,17,0.98));
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px) scale(0.98);
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: opacity 280ms ease, visibility 280ms ease, transform 320ms cubic-bezier(.2,.9,.2,1);
}

.mobile-menu-logo {
  position: absolute;
  top: max(78px, calc(env(safe-area-inset-top) + 66px));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 108px;
  opacity: 0;
  transition: opacity 300ms ease, transform 360ms cubic-bezier(.2,.9,.2,1);
}

.mobile-menu-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 34px rgba(205,255,33,0.16));
}

.site-header.menu-open .mobile-menu-logo {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 80ms;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0;
  color: rgba(255,255,255,0.94);
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(38px, 13vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(.2,.9,.2,1), color 180ms ease;
}

.mobile-nav a::after {
  content: none;
  display: none;
}

.mobile-nav a:hover {
  color: var(--rush-green);
}

.site-header.menu-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.site-header.menu-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.site-header.menu-open .mobile-nav a:nth-of-type(1) { transition-delay: 110ms; }
.site-header.menu-open .mobile-nav a:nth-of-type(2) { transition-delay: 155ms; }
.site-header.menu-open .mobile-nav a:nth-of-type(3) { transition-delay: 200ms; }
.site-header.menu-open .mobile-nav a:nth-of-type(4) { transition-delay: 245ms; }
.site-header.menu-open .mobile-nav a:nth-of-type(5) { transition-delay: 290ms; }

.hero-slider {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: #04070c;
}

.hero-slide {
  min-height: 720px;
  position: absolute;
  inset: 0;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1,3,8,0.26) 0%, rgba(3,7,17,0.16) 34%, rgba(0,7,23,0.82) 75%, rgba(0,0,0,0.94) 100%),
    linear-gradient(0deg, rgba(5,6,8,0.95) 0%, rgba(5,6,8,0.32) 42%, rgba(5,6,8,0.18) 100%),
    radial-gradient(circle at 16% 86%, rgba(205,255,33,0.30) 0%, rgba(205,255,33,0.08) 18%, transparent 42%);
}

.hero-content {
  position: relative;
  width: min(1560px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 112px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rush-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: '';
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--rush-green);
}

.hero-content h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(54px, 7.1vw, 118px);
  line-height: 0.91;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 18px 0 18px;
  max-width: 980px;
  text-shadow: 0 20px 42px rgba(0,0,0,0.48);
}

.hero-content p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.main-cta,
.secondary-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.main-cta {
  padding: 0 26px;
  background: #fff;
  color: #071008;
}

.main-cta span {
  margin-left: 12px;
  color: var(--rush-green);
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.9));
}

.secondary-cta {
  padding: 0 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.slider-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1560px) / 2));
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 13px;
  z-index: 10;
}

.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}

.dot.active {
  width: 36px;
  background: var(--rush-green);
  box-shadow: 0 0 22px rgba(205,255,33,0.50);
}

 .match-strip {
  position: relative;
  padding: 96px 0 18px;
  z-index: 6;
  background:
    radial-gradient(circle at 18% 0%, rgba(205,255,33,0.12), transparent 32%),
    linear-gradient(180deg, #050608 0%, #070A0F 76%, rgba(7,10,15,0.92) 100%);
  border-bottom: 1px solid rgba(205,255,33,0.10);
}

.match-timeline {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(1080px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.match-timeline.is-dragging,
.news-row.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.match-timeline.is-dragging * {
  pointer-events: none;
}

.match-timeline::-webkit-scrollbar {
  display: none;
}

.matchday-block {
  scroll-snap-align: start;
  min-width: 0;
  position: relative;
}

.matchday-date {
  display: block;
  position: sticky;
  left: 2px;
  z-index: 8;
  width: max-content;
  margin: 0 0 10px 2px;
  padding: 0 14px 0 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.matchday-games {
  display: grid;
  grid-template-columns: repeat(4, minmax(246px, 1fr));
  gap: 14px;
}

.match-card {
  min-height: 118px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    var(--rush-card);
  border: 1px solid var(--rush-border);
  border-radius: 18px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(205,255,33,0.10), transparent 48%);
  pointer-events: none;
}

.match-card.live {
  border-color: rgba(205,255,33,0.56);
  box-shadow: 0 18px 54px rgba(205,255,33,0.10), 0 16px 44px rgba(0,0,0,0.34);
}

.team-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.team-side.right {
  align-items: flex-end;
  text-align: right;
}

.team-side img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.team-side span {
  display: none;
}

.score-block {
  display: grid;
  grid-template-columns: 28px 52px 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 8px;
  row-gap: 6px;
  position: relative;
}

.score {
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.score.muted {
  color: rgba(255,255,255,0.38);
}

.score-block small {
  color: rgba(255,255,255,0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.score-block .live-badge {
  min-width: 42px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rush-green);
  color: #071008;
  font-size: 10px;
  box-shadow: 0 0 20px rgba(205,255,33,0.26);
}



.match-meta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 46%;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.match-meta-top {
  top: 15px;
}

.match-meta-bottom {
  bottom: 15px;
  color: rgba(255,255,255,0.68);
}

.score-block.upcoming .score {
  background: rgba(255,255,255,0.045);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .pill-link.ghost {
    display: none;
  }

  .match-timeline {
    grid-auto-columns: 590px;
  }
}

@media (max-width: 840px) {
  .header-inner {
    width: calc(100% - 32px);
    height: 70px;
  }

  .brand img {
    width: 62px;
  }

  .desktop-nav,
  .league-switcher,
  .pill-link.ghost,
  .register-team-link {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-slider,
  .hero-slide {
    min-height: 680px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,5,8,0.25) 0%, rgba(3,5,8,0.55) 48%, rgba(3,5,8,0.96) 100%),
      radial-gradient(circle at 16% 80%, rgba(205,255,33,0.28), transparent 44%);
  }

  .hero-content {
    width: calc(100% - 32px);
    min-height: 680px;
    padding-bottom: 92px;
  }

  .hero-content h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .slider-dots {
    right: 24px;
    bottom: 54px;
  }

  .match-timeline {
    width: calc(100% - 24px);
    grid-auto-columns: 100%;
    gap: 14px;
    padding-bottom: 8px;
  }

  .matchday-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .match-card {
    min-height: 92px;
    border-radius: 14px;
    padding: 14px 10px;
    gap: 6px;
  }

  .team-side img {
    width: 52px;
    height: 52px;
  }

  .score-block {
    grid-template-columns: 21px 38px 21px;
    column-gap: 4px;
  }

  .score {
    height: 26px;
    border-radius: 7px;
    font-size: 13px;
  }

  .score-block small {
    font-size: 8px;
  }

  .score-block .live-badge {
    min-width: 34px;
    min-height: 20px;
    font-size: 8px;
  }

  .match-meta {
    font-size: 7px;
    letter-spacing: 0.06em;
  }

  .match-meta-top {
    top: 9px;
  }

  .match-meta-bottom {
    bottom: 9px;
  }
}

@media (max-width: 520px) {
  .pill-link {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .main-cta,
  .secondary-cta {
    width: 100%;
  }

  .match-timeline {
    width: calc(100% - 20px);
    grid-auto-columns: 100%;
  }

  .matchday-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .match-card {
    min-height: 86px;
    padding: 12px 8px;
  }

  .team-side img {
    width: 47px;
    height: 47px;
  }

  .score-block {
    grid-template-columns: 19px 34px 19px;
    column-gap: 3px;
  }

  .score {
    height: 24px;
    font-size: 12px;
  }
}


.news-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(205,255,33,0.10), transparent 30%),
    linear-gradient(180deg, #070A0F 0%, #050608 100%);
  padding: 82px 0 96px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.news-header {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.news-header h2 {
  font-family: 'Anton', Impact, sans-serif;
  margin: 12px 0 0;
  font-size: clamp(34px, 3.6vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.all-news-link {
  min-height: 42px;
  padding: 0 18px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.all-news-link span {
  color: var(--rush-green);
  font-size: 20px;
  line-height: 1;
}

.news-row {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.news-row::-webkit-scrollbar {
  display: none;
}

.news-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(0,0,0,0.32);
}

.news-image-link {
  height: 260px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #10151d;
}

.news-image-link::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5,6,8,0.82));
}

.news-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.news-card:hover .news-image-link img {
  transform: scale(1.045);
}

.news-body {
  flex: 1;
  padding: 18px 20px 24px;
}

.news-category {
  margin: 0 0 10px;
  color: var(--rush-green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.news-footer {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 850;
}

.news-footer span::before {
  content: '';
  width: 20px;
  height: 3px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--rush-green);
  opacity: 0.75;
}

@media (max-width: 840px) {
  .news-section {
    padding: 58px 0 72px;
  }

  .news-header {
    width: calc(100% - 32px);
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .news-row {
    width: calc(100% - 32px);
    grid-auto-columns: 82%;
    gap: 12px;
  }

  .news-card {
    min-height: 390px;
    border-radius: 16px;
  }

  .news-image-link {
    height: 218px;
  }

  .news-body {
    padding: 16px 16px 22px;
  }

  .news-footer {
    padding: 0 16px;
  }
}

@media (max-width: 520px) {
  .news-row {
    grid-auto-columns: 88%;
  }

  .news-image-link {
    height: 198px;
  }
}

/* Footer */
.site-footer {
  background: var(--rush-black);
  color: #ffffff;
  padding: 64px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-sponsors,
.footer-divider,
.footer-menu-grid,
.footer-teams,
.footer-bottom {
  width: min(1560px, calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
}

.footer-sponsors {
  display: grid;
  grid-template-columns: repeat(10, minmax(80px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 36px 42px;
}

.footer-sponsors img {
  max-width: 126px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: grayscale(1);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.16);
  margin-top: 62px;
  margin-bottom: 72px;
}

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

.footer-column {
  border: 0;
}

.footer-column summary {
  list-style: none;
  margin: 0 0 48px;
  color: rgba(255,255,255,0.96);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: default;
}

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

.footer-links {
  display: block;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--rush-green);
  transform: translateX(3px);
}

.footer-teams {
  margin-top: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 0 10px;
}

.footer-teams img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: none;
}

.footer-bottom {
  margin-top: 76px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  font-weight: 650;
}

.footer-bottom img {
  width: 76px;
  height: auto;
  object-fit: contain;
  opacity: 0.74;
}

@media (max-width: 1100px) {
  .footer-sponsors {
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    gap: 34px 30px;
  }

  .footer-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 80px;
  }

  .footer-teams {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-sponsors,
  .footer-divider,
  .footer-menu-grid,
  .footer-teams,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .footer-sponsors {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .footer-sponsors img {
    max-width: 98px;
    max-height: 38px;
  }

  .footer-divider {
    margin-top: 46px;
    margin-bottom: 44px;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-column {
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    overflow: hidden;
  }

  .footer-column summary {
    margin: 0;
    padding: 18px 18px;
    font-size: 13px;
    cursor: pointer;
    position: relative;
  }

  .footer-column summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rush-green);
    font-size: 18px;
    line-height: 1;
  }

  .footer-column[open] summary::after {
    content: '–';
  }

  .footer-links {
    display: none;
    padding: 0 18px 16px;
  }

  .footer-column[open] .footer-links {
    display: block;
  }

  .footer-column a {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .footer-teams {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 24px 18px;
  }

  .footer-teams img {
    width: 46px;
    height: 46px;
  }

  .footer-bottom {
    margin-top: 54px;
  }
}

/* Standings page */
.page-hero {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  background: #050608;
  isolation: isolate;
}

.compact-page-hero {
  padding-top: 66px;
}

.page-hero-bg,
.page-hero-bg img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.72;
  transform: scale(1.02);
}

.page-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,6,8,0.95) 0%, rgba(5,6,8,0.72) 42%, rgba(5,6,8,0.34) 100%),
    linear-gradient(0deg, #050608 0%, rgba(5,6,8,0.28) 54%, rgba(5,6,8,0.82) 100%),
    radial-gradient(circle at 18% 78%, rgba(205,255,33,0.22), transparent 36%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1560px, calc(100% - 48px));
  min-height: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 0 38px;
}

.page-hero-content h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 18px 0 0;
}

.page-hero-content p {
  max-width: 680px;
  color: rgba(255,255,255,0.74);
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.standings-section {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 92px;
}

.standings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.standings-header h2 {
  margin: 12px 0 0;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.table-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.control-pill {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.76);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-pill.active {
  background: var(--rush-green);
  color: #081000;
  border-color: transparent;
  box-shadow: 0 0 26px rgba(205,255,33,0.16);
}

.mobile-table-note {
  display: none;
  color: var(--rush-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.standings-table-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    var(--rush-card);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}


.standings-table-wrap::-webkit-scrollbar {
  display: none;
}

.standings-table-wrap.is-dragging {
  cursor: grabbing;
}

.standings-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: #fff;
}

.standings-table thead {
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.standings-table th {
  height: 56px;
  padding: 0 18px;
  text-align: center;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.standings-table th:nth-child(2) {
  text-align: left;
}

.standings-table td {
  height: 86px;
  padding: 0 18px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 850;
  font-size: 15px;
}

.standings-table tbody tr {
  position: relative;
  transition: background 160ms ease;
}

.standings-table tbody tr:hover {
  background: rgba(205,255,33,0.045);
}

.standings-table tbody tr:nth-child(-n+4) .rank-cell {
  border-left: 4px solid var(--rush-green);
}

.standings-table tbody tr:nth-child(n+5) .rank-cell {
  border-left: 4px solid rgba(255,255,255,0.10);
}

.rank-cell {
  width: 70px;
  color: rgba(255,255,255,0.50);
  font-weight: 950;
}

.club-cell {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left !important;
}

.club-cell img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.club-cell strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.club-cell span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.50);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pts-cell {
  color: var(--rush-green);
  font-size: 21px !important;
  font-weight: 950 !important;
}

.form-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 138px;
}

.form-pill {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
  color: #fff;
}

.form-pill.win { background: #18c951; }
.form-pill.loss { background: #ee3737; }
.form-pill.tie { background: rgba(255,255,255,0.26); color: #fff; }

@media (max-width: 840px) {
  .page-hero-content,
  .standings-section {
    width: calc(100% - 32px);
  }

  .page-hero,
  .compact-page-hero {
    min-height: 230px;
  }

  .compact-page-hero {
    padding-top: 62px;
  }

  .page-hero-content {
    min-height: 168px;
    padding: 24px 0 28px;
  }

  .page-hero-content h1 {
    margin-top: 10px;
  }

  .standings-section {
    padding: 28px 0 58px;
  }

  .standings-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .table-controls {
    justify-content: flex-start;
  }

  .mobile-table-note {
    display: block;
  }

  .standings-table-wrap {
    border-radius: 18px;
  }

  .standings-table th,
  .standings-table td {
    padding: 0 14px;
  }
}

/* v20 standings title adjustment */
.standings-header .section-kicker {
  color: #ffffff;
}

.standings-header .section-kicker::before {
  background: #ffffff;
}


/* Matches page */
.matches-page .page-hero-content .section-kicker {
  color: #fff;
}

.matches-page .page-hero-content .section-kicker::before {
  background: #fff;
}

.schedule-section {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 92px;
}

.schedule-datebar {
  min-height: 74px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.045)),
    var(--rush-card-soft);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  align-items: center;
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
  overflow: hidden;
}

.schedule-current-date {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.schedule-arrow {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 38px;
  line-height: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.schedule-arrow:hover {
  transform: scale(1.06);
  background: rgba(205,255,33,0.11);
  border-color: rgba(205,255,33,0.52);
  color: var(--rush-green);
}

.schedule-panels {
  position: relative;
  margin-top: 18px;
}

.schedule-panel {
  display: none;
  animation: scheduleFade 260ms ease both;
}

.schedule-panel.is-active {
  display: grid;
  gap: 14px;
}

@keyframes scheduleFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.schedule-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px 4px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.schedule-panel-heading strong {
  color: rgba(255,255,255,0.72);
  font-weight: 950;
}

.schedule-card {
  min-height: 116px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at 50% 50%, rgba(205,255,33,0.055), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.028)),
    var(--rush-card);
  display: grid;
  grid-template-columns: minmax(130px, 0.74fr) minmax(440px, 1.55fr) minmax(150px, 0.76fr);
  align-items: center;
  gap: 26px;
  padding: 22px 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.20);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.schedule-card:hover {
  transform: translateY(-2px);
  border-color: rgba(205,255,33,0.26);
  background:
    radial-gradient(circle at 50% 50%, rgba(205,255,33,0.09), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.032)),
    var(--rush-card);
}

.schedule-competition {
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-matchup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.schedule-team {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.schedule-team.home {
  justify-content: flex-end;
  text-align: right;
}

.schedule-team.away {
  justify-content: flex-start;
  text-align: left;
}

.schedule-team span {
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-team img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.schedule-time {
  justify-self: center;
  min-width: 82px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.schedule-result {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.schedule-location {
  justify-self: end;
  text-align: left;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.schedule-location span,
.schedule-location strong {
  display: block;
}

.schedule-location strong {
  margin-top: 4px;
  color: rgba(255,255,255,0.82);
  font-weight: 950;
}

@media (max-width: 980px) {
  .schedule-section {
    width: calc(100% - 32px);
    padding: 28px 0 62px;
  }

  .schedule-datebar {
    min-height: 64px;
    grid-template-columns: 58px 1fr 58px;
    border-radius: 18px;
  }

  .schedule-current-date {
    font-size: 14px;
  }

  .schedule-arrow {
    width: 36px;
    height: 36px;
    font-size: 32px;
  }

  .schedule-panel-heading {
    font-size: 10px;
  }

  .schedule-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .schedule-competition {
    order: 1;
    text-align: center;
    color: rgba(255,255,255,0.56);
    font-size: 10px;
  }

  .schedule-matchup {
    order: 2;
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
    gap: 10px;
  }

  .schedule-team {
    gap: 8px;
  }

  .schedule-team span {
    font-size: 13px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .schedule-team img {
    width: 38px;
    height: 38px;
  }

  .schedule-time {
    min-width: 64px;
    min-height: 32px;
    font-size: 10px;
  }

  .schedule-result {
    font-size: 12px;
  }

  .schedule-location {
    order: 3;
    justify-self: center;
    text-align: center;
    font-size: 10px;
  }
}

/* Teams page */
.teams-page .page-hero-content .section-kicker,
.stats-page .page-hero-content .section-kicker {
  color: #fff;
}

.teams-page .page-hero-content .section-kicker::before,
.stats-page .page-hero-content .section-kicker::before {
  background: #fff;
}

.teams-section,
.stats-section {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 92px;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 0;
}

.team-list-card {
  min-height: 112px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.team-card-main {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
}

.team-card-main img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.team-card-main h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.team-card-main h2 span {
  color: rgba(255,255,255,0.42);
  transition: color 180ms ease, transform 180ms ease;
  display: inline-block;
}

.team-list-card:hover .team-card-main h2 span {
  color: var(--rush-green);
  transform: translateX(3px);
}

.team-card-main p {
  margin: 5px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.team-card-links {
  margin-left: 80px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.44);
  font-weight: 800;
}

.team-card-links a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.team-card-links a:hover {
  color: var(--rush-green);
}

/* Stats page */
.stats-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.stats-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.stats-tab {
  border: 0;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.62);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.stats-tab.is-active {
  background: rgba(205,255,33,0.14);
  color: var(--rush-green);
  box-shadow: inset 0 0 0 1px rgba(205,255,33,0.20);
}

.stats-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.stats-search {
  width: min(390px, 100%);
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0 18px;
  outline: none;
  font-weight: 800;
}

.stats-search::placeholder {
  color: rgba(255,255,255,0.42);
}

.stats-search:focus {
  border-color: rgba(205,255,33,0.45);
  box-shadow: 0 0 0 4px rgba(205,255,33,0.08);
}

.stats-panel {
  display: none;
}

.stats-panel.is-active {
  display: block;
}

.stats-table th:first-child,
.stats-table td:first-child {
  text-align: left;
}

.stats-table th span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.36);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.stats-table th.sortable {
  cursor: pointer;
  transition: color 180ms ease;
}

.stats-table th.sortable:hover {
  color: var(--rush-green);
}

.player-cell {
  min-width: 260px;
  text-align: left !important;
}

.player-cell strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.player-cell span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-team {
  min-width: 220px;
}

.team-stats-table {
  min-width: 760px;
}

.stats-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.stats-pagination button {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  padding: 0 16px;
  font-weight: 950;
  cursor: pointer;
}

.stats-pagination button:disabled {
  opacity: 0.35;
  cursor: default;
}

.stats-pagination span {
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .teams-section,
  .stats-section {
    width: calc(100% - 32px);
    padding: 28px 0 62px;
  }

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

  .team-list-card {
    min-height: 104px;
    padding: 20px 0;
  }

  .team-card-main {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .team-card-main img {
    width: 50px;
    height: 50px;
  }

  .team-card-main h2 {
    font-size: 20px;
  }

  .team-card-links {
    margin-left: 66px;
    flex-wrap: wrap;
  }

  .stats-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-tabs {
    width: 100%;
  }

  .stats-tab {
    flex: 1;
    padding: 0 10px;
  }

  .stats-search {
    width: 100%;
  }

  .stats-table {
    min-width: 780px;
  }
}

/* sortable + stats refinements */
.is-hidden {
  display: none !important;
}

.standings-table th.sortable,
.standings-table th[data-sort-index] {
  cursor: pointer;
  position: relative;
  transition: color 180ms ease, background 180ms ease;
}

.standings-table th.sortable:hover,
.standings-table th[data-sort-index]:hover,
.standings-table th.is-sorted-asc,
.standings-table th.is-sorted-desc {
  color: var(--rush-green);
}

.standings-table th.is-sorted-desc::after,
.standings-table th.is-sorted-asc::after {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  opacity: 0.9;
}

.standings-table th.is-sorted-desc::after {
  content: '↓';
}

.standings-table th.is-sorted-asc::after {
  content: '↑';
}

.team-stats-table th:not(:first-child),
.team-stats-table td:not(:first-child),
.stats-table th:not(:first-child),
.stats-table td:not(:first-child) {
  text-align: center;
  vertical-align: middle;
}

/* v26 refinements */
.no-horizontal-scroll {
  overflow-x: visible;
  cursor: default;
  user-select: auto;
}

.player-goals-table,
.roster-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}

.player-goals-table th:first-child,
.player-goals-table td:first-child {
  width: 72%;
}

.player-goals-table th:last-child,
.player-goals-table td:last-child {
  width: 28%;
  text-align: center;
}

.roster-section {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 92px;
}

.roster-team-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.roster-team-header img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.roster-team-header p {
  margin: 0 0 4px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roster-team-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.92;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.roster-table th,
.roster-table td {
  text-align: center;
}

.roster-table th:first-child,
.roster-table td:first-child,
.roster-table th:nth-child(2),
.roster-table td:nth-child(2) {
  text-align: left;
}

.roster-table th span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.36);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

@media (max-width: 760px) {
  .player-stats-wrap,
  .roster-table-wrap {
    border-radius: 18px;
  }

  .player-goals-table,
  .roster-table {
    min-width: 0 !important;
    table-layout: auto;
  }

  .player-goals-table th,
  .player-goals-table td,
  .roster-table th,
  .roster-table td {
    padding: 14px 10px;
    font-size: 12px;
  }

  .player-cell {
    min-width: 0;
  }

  .player-cell strong {
    font-size: 14px;
  }

  .roster-section {
    width: min(100% - 28px, 1560px);
    padding: 28px 0 66px;
  }

  .roster-team-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .roster-team-header img {
    width: 58px;
    height: 58px;
  }
}


/* v28 refinements */
/* Standings: full names on desktop, abbreviations on mobile */
.standings-page .standings-table .club-cell span {
  display: none;
}

/* Team Stats: compact fixed table, no horizontal drag needed */
.stats-page .team-stats-fixed-wrap {
  overflow-x: visible;
  cursor: default;
  user-select: auto;
}

.stats-page .team-stats-table {
  min-width: 0;
  width: 100%;
  table-layout: auto;
}

.stats-page .team-stats-table .club-cell {
  min-width: 0;
}

.stats-page .team-stats-table th,
.stats-page .team-stats-table td {
  padding-left: 14px;
  padding-right: 14px;
}

.teams-page .team-card-main p {
  display: none;
}

@media (max-width: 840px) {
  .standings-page .standings-table {
    min-width: 760px;
  }

  .standings-page .standings-table th {
    height: 46px;
    padding: 0 9px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .standings-page .standings-table td {
    height: 64px;
    padding: 0 9px;
    font-size: 12px;
  }

  .standings-page .rank-cell {
    width: 42px;
  }

  .standings-page .club-cell {
    min-width: 92px;
    gap: 8px;
  }

  .standings-page .club-cell img {
    width: 32px;
    height: 32px;
  }

  .standings-page .club-cell strong {
    display: none;
  }

  .standings-page .standings-table .club-cell span {
    display: block;
    margin-top: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .standings-page .pts-cell {
    font-size: 15px !important;
  }

  .standings-page .form-row {
    gap: 4px;
  }

  .standings-page .form-pill {
    width: 23px;
    height: 23px;
    font-size: 9px;
  }
}

@media (max-width: 760px) {
  .stats-page .team-stats-table th,
  .stats-page .team-stats-table td {
    padding: 14px 8px;
    font-size: 12px;
  }

  .stats-page .team-stats-table .club-cell {
    gap: 10px;
  }

  .stats-page .team-stats-table .club-cell img {
    width: 34px;
    height: 34px;
  }

  .stats-page .team-stats-table .club-cell strong {
    font-size: 13px;
  }
}


/* v29 standings/footer content refinements */
.footer-page {
  background: #f3f3f0;
  color: #111;
}
.footer-page .site-header {
  background: rgba(7,7,7,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-page .header-inner {
  width: min(1560px, calc(100% - 48px));
}
@media (max-width: 840px) {
  .footer-page .header-inner {
    width: calc(100% - 32px);
  }
}
.footer-content-page {
  padding: 128px 0 80px;
  min-height: 55vh;
}
.footer-content-wrap {
  width: min(100% - 44px, 980px);
  margin: 0 auto;
}
.footer-content-kicker {
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.footer-content-wrap h1 {
  color: #111;
  font-size: clamp(42px, 7vw, 88px);
  line-height: .86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0 0 34px;
}
.footer-content-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.footer-content-card h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: .95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.footer-content-card h3 {
  color: #111;
  font-size: 19px;
  margin: 30px 0 10px;
}
.footer-content-card p,
.footer-content-card li {
  color: #333;
  font-size: 16px;
  line-height: 1.72;
}
.footer-content-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.footer-content-card a {
  color: #111;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.footer-content-note {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111;
  color: #CDFF21;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-page .site-footer {
  background: #101010;
}
@media (max-width: 760px) {
  .footer-content-page {
    padding: 104px 0 54px;
  }
  .footer-content-wrap {
    width: min(100% - 28px, 980px);
  }
  .footer-content-card {
    border-radius: 0;
  }
}

/* v33: remove top-four highlight from standings */
.standings-page .standings-table tbody tr .rank-cell,
.standings-page .standings-table tbody tr:nth-child(-n+4) .rank-cell,
.standings-page .standings-table tbody tr:nth-child(n+5) .rank-cell {
  border-left: 0 !important;
}

/* Patch v83: desktop game widget matchday blocks should not reserve empty match slots */
@media (min-width: 841px) {
  .match-timeline {
    grid-auto-columns: max-content;
    align-items: start;
  }

  .matchday-block {
    width: max-content;
  }

  .matchday-games {
    grid-template-columns: repeat(var(--match-count, 4), minmax(246px, 1fr));
    width: max-content;
  }

  .matchday-games > .match-card {
    width: 246px;
  }
}

/* Patch v84: compact desktop home game widget + start on next matchday after one day */
@media (min-width: 841px) {
  .match-timeline {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    grid-auto-flow: initial !important;
    grid-auto-columns: initial !important;
  }

  .matchday-block {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .matchday-games {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    width: auto !important;
    grid-template-columns: none !important;
  }

  .matchday-games > .match-card {
    flex: 0 0 246px !important;
    width: 246px !important;
    max-width: 246px !important;
  }
}

/* RUSH v94 — stable public timeline recovery */
.public-timeline-page{
  min-height:100vh;
  background:#070A0F;
  color:#fff;
  padding:108px 18px 60px;
  font-family:Inter,Arial,sans-serif;
}
.public-timeline-wrap{max-width:1040px;margin:0 auto;}
.timeline-back-link{
  display:inline-flex;
  color:#d7d9dc;
  text-decoration:none;
  font-weight:900;
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:12px;
  opacity:.84;
}
.timeline-back-link:hover{color:#fff;}
.public-timeline-card{
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),#101318;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 22px 70px rgba(0,0,0,.35);
}
.public-timeline-head{
  padding:22px 24px;
  background:radial-gradient(circle at 50% 0%,rgba(205,255,33,.07),transparent 42%),linear-gradient(180deg,#171b20,#0f1216);
}
.public-timeline-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px;}
.public-timeline-meta span{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#c9c9c9;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:7px 10px;
  font-weight:850;
}
.public-score-row{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:22px;}
.public-team{display:flex;align-items:center;gap:12px;min-width:0;}
.public-team.right{justify-content:flex-end;text-align:right;}
.public-team img{width:54px;height:54px;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));}
.public-team strong{font-family:Anton,Inter,sans-serif;font-size:32px;line-height:1;display:block;letter-spacing:.01em;}
.public-team span{font-size:12px;color:#bfc1c3;display:block;margin-top:4px;}
.public-score{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.public-score span{font-family:Anton,Inter,sans-serif;font-size:52px;line-height:1;color:#f1f2f3;}
.public-score b{color:#777c82;}
.public-timeline-body{padding:18px 22px 22px;}
.public-event-list{display:grid;gap:10px;}
.public-event{display:flex;align-items:center;gap:12px;background:#11151a;border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:12px 14px;}
.public-event img{width:30px;height:30px;object-fit:contain;flex:0 0 auto;}
.public-event strong{flex:1;font-size:14px;line-height:1.25;}
.public-event span{
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  color:#e6e7e9;
  min-width:48px;
  text-align:center;
}
.public-empty{padding:18px;border-radius:16px;background:rgba(255,255,255,.06);color:#cfd0d1;border:1px solid rgba(255,255,255,.08);}
@media(max-width:720px){
  .public-timeline-page{padding:78px 10px 34px;}
  .public-timeline-wrap{max-width:100%;}
  .timeline-back-link{font-size:10px;margin-bottom:10px;}
  .public-timeline-card{border-radius:18px;}
  .public-timeline-head{padding:10px 10px 12px;}
  .public-timeline-meta{gap:5px;margin-bottom:10px;}
  .public-timeline-meta span{font-size:8px;padding:5px 7px;letter-spacing:.055em;}
  .public-score-row{grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);gap:6px;}
  .public-team{gap:5px;min-width:0;}
  .public-team.right{justify-content:flex-end;}
  .public-team img{width:30px;height:30px;}
  .public-team strong{font-size:18px;white-space:nowrap;}
  .public-team .team-full-name{display:none!important;}
  .public-score{padding:7px 8px;border-radius:12px;gap:5px;min-width:72px;justify-content:center;}
  .public-score span{font-size:28px;}
  .public-score b{font-size:14px;}
  .public-timeline-body{padding:12px 10px 14px;}
  .public-event{border-radius:12px;padding:9px 10px;gap:9px;}
  .public-event img{width:25px;height:25px;}
  .public-event strong{font-size:12px;}
  .public-event span{font-size:11px;padding:5px 8px;min-width:42px;}
}

/* v96 live match updates */
.match-card[data-live-state="live"] .score-block small,
.score-block small.live-badge{
  background: rgba(205,255,33,.16);
  border: 1px solid rgba(205,255,33,.34);
  color: var(--rush-green);
  padding: 6px 10px;
  border-radius: 999px;
  min-width: 44px;
  text-align: center;
  font-weight: 900;
}
.match-card[data-live-state="final"] .score-block small{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  padding: 6px 10px;
  border-radius: 999px;
}
.public-event small{
  margin-left: 6px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 680px){
  .match-card[data-live-state="live"] .score-block small,
  .score-block small.live-badge,
  .match-card[data-live-state="final"] .score-block small{
    padding: 4px 7px;
    min-width: 36px;
    font-size: 10px;
  }
}

/* v101 mobile widget final badge fix */
@media (max-width: 680px) {
  .match-card[data-live-state="final"] .score-block small,
  .score-block small[data-live-label="Final"],
  .score-block small[data-live-label="FINAL"] {
    font-size: 7px !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    padding: 4px 4px !important;
    min-width: 30px !important;
    max-width: 34px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  .match-card[data-live-state="final"] .score-block {
    grid-template-columns: 19px 36px 19px !important;
  }
}

/* v109 — soft fade from hero slider into game widget */
.hero-slider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 260px;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5,6,8,0) 0%,
      rgba(5,6,8,0.18) 24%,
      rgba(5,6,8,0.58) 55%,
      rgba(5,6,8,0.92) 82%,
      #050608 100%
    );
}

.match-strip {
  margin-top: -1px;
}

@media (max-width: 760px) {
  .hero-slider::after {
    height: 210px;
    background:
      linear-gradient(180deg,
        rgba(5,6,8,0) 0%,
        rgba(5,6,8,0.22) 28%,
        rgba(5,6,8,0.68) 64%,
        #050608 100%
      );
  }
}

/* Patch v111 — Dynamic News pages */
.page-shell{background:#050608;min-height:100vh;color:#fff;padding-top:94px}.page-hero{width:min(1460px,calc(100% - 56px));margin:0 auto;padding:70px 0 34px}.page-hero.compact{padding-top:54px}.page-hero h1{font-family:'Anton',Impact,sans-serif;font-size:clamp(48px,7vw,104px);line-height:.9;text-transform:uppercase;letter-spacing:.01em;margin:10px 0 0}.news-grid-wrap{width:min(1460px,calc(100% - 56px));margin:0 auto 90px}.news-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.news-grid .news-card{min-height:410px}.news-grid .news-image-link{height:245px}.load-more-news{display:flex;align-items:center;justify-content:center;margin:34px auto 0;height:48px;padding:0 28px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:#CDFF21;color:#071006;font-size:13px;font-weight:950;text-transform:uppercase;letter-spacing:.04em;cursor:pointer}.article-layout{width:min(1060px,calc(100% - 56px));margin:0 auto 90px}.article-header{padding:58px 0 28px}.article-header h1{font-family:'Anton',Impact,sans-serif;font-size:clamp(44px,6vw,86px);line-height:.95;text-transform:uppercase;letter-spacing:.005em;margin:12px 0 18px}.article-meta{display:flex;gap:16px;align-items:center;color:rgba(255,255,255,.66);font-weight:850;font-size:13px;text-transform:uppercase;letter-spacing:.05em}.article-meta span:before{content:'';display:inline-block;width:24px;height:4px;border-radius:999px;background:#CDFF21;margin-right:10px;vertical-align:middle}.article-hero-image{margin:0 0 34px;border-radius:28px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#101419}.article-hero-image img{display:block;width:100%;max-height:680px;object-fit:cover}.article-body{font-size:18px;line-height:1.8;color:rgba(255,255,255,.82);max-width:860px;margin:0 auto}.article-body p{margin:0 0 24px}@media(max-width:1100px){.news-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:780px){.page-shell{padding-top:76px}.page-hero,.news-grid-wrap,.article-layout{width:calc(100% - 32px)}.news-grid{grid-template-columns:1fr}.news-grid .news-card{min-height:390px}.news-grid .news-image-link{height:220px}.article-header{padding-top:38px}.article-hero-image{border-radius:20px}.article-body{font-size:16px;line-height:1.72}.article-meta{font-size:12px;flex-wrap:wrap}}
