:root {
  --navy: #00204f;
  --navy-deep: #001431;
  --navy-soft: #092d61;
  --red: #db2028;
  --yellow: #fde755;
  --white: #ffffff;
  --mist: #f3f6fa;
  --ink: #071a35;
  --muted: #6c788b;
  --line: #dbe2ec;
  --shadow: 0 22px 60px rgba(0, 28, 69, 0.14);
  --font-inter: "Inter";
  --font-league: "League Spartan";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--font-inter), Arial, sans-serif;
}

body.admin-bar .site-header {
  top: 32px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner p {
  margin: 0;
}

.topbar-inner div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.topbar-inner a {
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.topbar-inner span {
  color: var(--yellow);
  font-weight: 800;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--navy);
  color: var(--white);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.brand strong {
  font-family: var(--font-league), Impact, sans-serif;
  font-size: 27px;
  letter-spacing: 0.025em;
}

.brand small {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav .primary-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.mobile-primary-menu {
  display: none;
}

.site-nav .primary-menu li {
  position: relative;
}

.site-nav .primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -11px;
  height: 3px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.site-nav .primary-menu > li > a:hover::after,
.site-nav .primary-menu > li.current-menu-item > a::after,
.site-nav .primary-menu > li.current-menu-ancestor > a::after {
  right: 0;
}

.site-nav .sub-menu,
.site-nav .children {
  position: absolute;
  top: calc(100% + 20px);
  left: -18px;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 2px;
  border-top: 3px solid var(--yellow);
  background: var(--navy-deep);
  box-shadow: 0 20px 45px rgba(0, 10, 28, 0.35);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu,
.site-nav li:hover > .children,
.site-nav li:focus-within > .children {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .sub-menu a,
.site-nav .children a {
  min-height: 42px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover,
.site-nav .children a:hover {
  background: var(--navy-soft);
  color: var(--white);
}

.mobile-nav-heading,
.menu-backdrop {
  display: none;
}

nav a {
  position: relative;
  font-family: var(--font-league), sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

nav > a:not(.nav-opp)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -11px;
  height: 3px;
  background: var(--yellow);
  transition: right 180ms ease;
}

nav > a:not(.nav-opp):hover::after {
  right: 0;
}

.nav-opp {
  padding: 13px 18px;
  background: var(--red);
  border: 1px solid var(--red);
  transition: background 180ms ease, color 180ms ease;
}

.nav-opp:hover {
  background: var(--white);
  color: var(--red);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
}

.menu-icon {
  width: 28px;
  display: grid;
  gap: 5px;
}

.menu-icon span {
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-icon.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 17, 43, 0.96) 0%, rgba(0, 27, 65, 0.76) 40%, rgba(0, 24, 58, 0.08) 77%),
    linear-gradient(180deg, transparent 62%, rgba(0, 17, 43, 0.58) 100%);
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}

.hero-copy.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-slice {
  position: absolute;
  width: 510px;
  height: 120%;
  right: -230px;
  top: -10%;
  z-index: 3;
  transform: skewX(-11deg);
  background: rgba(253, 231, 85, 0.1);
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-block: 84px 116px;
}

.hero-controls {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  pointer-events: none;
  transform: translateX(-50%);
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  font-family: var(--font-league), sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: var(--red);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-league), Impact, sans-serif;
  font-size: clamp(58px, 6.4vw, 92px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-family: var(--font-league), sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button svg,
.score-card-footer svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button-ghost {
  background: rgba(0, 20, 49, 0.2);
  backdrop-filter: blur(8px);
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 51px;
  display: flex;
  gap: 9px;
  pointer-events: auto;
}

.hero-dots button {
  width: 26px;
  height: 5px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--yellow);
}

.hero-season {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: -10px;
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-league), Impact, sans-serif;
  font-size: 106px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-season span {
  color: rgba(253, 231, 85, 0.35);
  font-size: 54px;
}

.match-zone {
  position: relative;
  z-index: 8;
  margin-top: -42px;
  padding-bottom: 72px;
}

.match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.score-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.score-card-next {
  background: var(--navy);
  color: var(--white);
}

.score-card-topline,
.score-card-footer {
  min-height: 46px;
  padding-inline: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.score-card-topline {
  border-bottom: 1px solid var(--line);
}

.score-card-next .score-card-topline {
  border-color: rgba(255, 255, 255, 0.13);
}

.score-card-topline p {
  margin: 0;
  color: var(--red);
  font-family: var(--font-league), sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-card-next .score-card-topline p {
  color: var(--yellow);
}

.score-card-topline span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.score-card-next .score-card-topline span {
  color: rgba(255, 255, 255, 0.5);
}

.score-card-main {
  min-height: 176px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

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

.club-away {
  justify-content: flex-end;
  text-align: right;
}

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

.club strong {
  max-width: 98px;
  font-family: var(--font-league), sans-serif;
  font-size: 15px;
  line-height: 1.08;
  text-transform: uppercase;
}

.score-center {
  min-width: 96px;
  text-align: center;
}

.score,
.versus {
  display: block;
  font-family: var(--font-league), Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  white-space: nowrap;
}

.versus {
  color: var(--yellow);
  font-size: 27px;
}

.score-center span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.score-card-next .score-center span {
  color: rgba(255, 255, 255, 0.52);
}

.score-card-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.score-card-next .score-card-footer {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.55);
}

.score-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: var(--font-league), sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-card-next .score-card-footer a {
  color: var(--yellow);
}

.content-section {
  padding-block: 78px 96px;
}

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

.section-kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-family: var(--font-league), sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading h2,
.league-intro h2,
.opp-copy h2 {
  margin: 0;
  font-family: var(--font-league), Impact, sans-serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.text-link,
.news-more,
.partners-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--font-league), sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link svg,
.news-more svg,
.partners-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.news-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 46px rgba(0, 28, 69, 0.08);
}

.news-image {
  position: relative;
  height: 220px;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.news-card-featured .news-image {
  height: 300px;
}

.news-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 20, 49, 0.55));
}

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

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

.news-image span {
  position: absolute;
  left: 18px;
  bottom: 17px;
  z-index: 2;
  padding: 8px 11px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-league), sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-copy {
  padding: 24px 24px 27px;
}

.news-meta {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.news-meta span {
  margin-inline: 5px;
  color: var(--red);
}

.news-copy h3 {
  margin: 0;
  font-family: var(--font-league), sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.news-card-featured .news-copy h3 {
  font-size: 29px;
}

.news-copy > p:not(.news-meta) {
  margin: 15px 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.news-more {
  color: var(--red);
  font-size: 11px;
}

.league-section {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
  background: var(--navy);
  color: var(--white);
}

.league-section::before {
  content: "";
  position: absolute;
  inset: 0 60% 0 0;
  background: var(--navy-deep);
  transform: skewX(-7deg);
  transform-origin: left bottom;
}

.league-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
}

.league-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.75fr;
  align-items: center;
  gap: 72px;
}

.league-intro {
  position: relative;
  z-index: 2;
}

.section-kicker-light {
  color: var(--yellow);
}

.league-intro h2 {
  font-size: clamp(58px, 6vw, 82px);
}

.league-intro > p:not(.section-kicker) {
  max-width: 330px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.league-mark {
  position: absolute;
  right: 8px;
  bottom: -80px;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-league), sans-serif;
  font-size: 260px;
  line-height: 0.7;
}

.standings-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 36px 85px rgba(0, 8, 22, 0.35);
}

.standings-header {
  min-height: 58px;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.standings-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.standings-header span,
.standings-header p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.standings-header strong {
  color: var(--red);
  font-family: var(--font-league), sans-serif;
  font-size: 12px;
}

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

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

th,
td {
  height: 45px;
  padding: 0 16px;
  border-bottom: 1px solid #e8edf4;
  text-align: center;
  font-size: 12px;
}

th {
  height: 40px;
  background: #f5f7fa;
  color: #8993a2;
  font-size: 9px;
  letter-spacing: 0.1em;
}

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

td:nth-child(1) {
  color: #8d97a5;
  font-weight: 800;
}

td:nth-child(2) {
  min-width: 250px;
  font-weight: 700;
}

td:nth-child(4) {
  color: var(--navy);
  font-weight: 900;
}

td:nth-child(2) img {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  object-fit: contain;
}

.table-team {
  display: flex;
  align-items: center;
  gap: 10px;
}

tr.is-jedynka {
  background: var(--yellow);
}

tr.is-jedynka td {
  border-color: rgba(0, 32, 79, 0.11);
  color: var(--navy);
}

.table-toggle {
  display: none;
}

.instagram-section {
  background: var(--white);
}

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

.instagram-card {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 18, 44, 0.92));
}

.instagram-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.instagram-card:hover > img {
  transform: scale(1.045);
}

.instagram-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.instagram-card > div span {
  color: var(--yellow);
  font-size: 24px;
}

.instagram-card > div p {
  margin: 8px 0 0;
  font-family: var(--font-league), sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.instagram-card > strong {
  position: absolute;
  right: 16px;
  top: 9px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-league), sans-serif;
  font-size: 42px;
}

.partners-section {
  padding-block: 82px 88px;
  background: var(--mist);
}

.section-heading-centered {
  justify-content: center;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-logo {
  height: 132px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.85);
  transition: filter 180ms ease, transform 180ms ease;
}

.partner-logo > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.partners-link {
  width: fit-content;
  margin: 30px auto 0;
}

.opp-section {
  padding: 0 0 86px;
  background:
    linear-gradient(180deg, var(--mist) 50%, var(--navy-deep) 50%);
}

.opp-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 48px 54px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  background: var(--yellow);
  box-shadow: 0 28px 70px rgba(0, 15, 37, 0.25);
}

.opp-card::after {
  content: "";
  position: absolute;
  top: -80px;
  bottom: -80px;
  right: 27%;
  width: 13px;
  transform: skewX(-12deg);
  background: var(--red);
}

.opp-number {
  color: var(--navy);
  font-family: var(--font-league), Impact, sans-serif;
  font-size: 126px;
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.opp-number span {
  color: var(--red);
  font-size: 56px;
}

.opp-copy {
  position: relative;
  z-index: 2;
}

.opp-copy h2 {
  color: var(--navy);
  font-size: clamp(42px, 4vw, 58px);
}

.opp-copy > p:last-child {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(0, 32, 79, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.opp-details {
  position: relative;
  z-index: 2;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
}

.opp-details span {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.opp-details strong {
  margin-bottom: 19px;
  font-family: var(--font-league), sans-serif;
  font-size: 22px;
}

.opp-details strong:last-child {
  margin-bottom: 0;
  font-size: 16px;
}

footer {
  position: relative;
  padding-top: 76px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 5px;
  background: var(--red);
}

.footer-grid {
  padding-bottom: 68px;
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 0.9fr 1fr;
  gap: 60px;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-brand > p {
  max-width: 340px;
  margin: 22px 0 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.7;
}

.footer-hashtag {
  color: var(--yellow);
  font-family: var(--font-league), sans-serif;
  font-size: 20px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid h3 {
  margin: 8px 0 13px;
  color: var(--yellow);
  font-family: var(--font-league), sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
  transition: color 180ms ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-contact-copy,
.footer-contact-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.7;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--yellow) !important;
}

.footer-bottom a {
  color: inherit;
}

/* Smash Balloon occupies the same Instagram section shown in the design. */
.instagram-feed-frame {
  min-height: 120px;
}

.instagram-feed-frame #sb_instagram {
  width: 100% !important;
  padding-bottom: 0 !important;
}

.instagram-feed-frame #sb_instagram #sbi_images {
  width: 100% !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.instagram-feed-frame #sb_instagram .sbi_item {
  width: 100% !important;
  padding: 0 !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

.instagram-feed-frame #sb_instagram .sbi_photo_wrap {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

.instagram-feed-frame #sb_instagram .sbi_photo {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: var(--navy) !important;
}

.instagram-feed-frame #sb_instagram .sbi_follow_btn a,
.instagram-feed-frame #sb_instagram #sbi_load .sbi_load_btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex !important;
  align-items: center;
  border-radius: 0 !important;
  background: var(--red) !important;
  font-family: var(--font-league), sans-serif;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.instagram-admin-note {
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--yellow);
  background: var(--navy);
  color: var(--white);
}

/* Shared styling for existing WordPress subpages and post types. */
.page-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.page-hero-image,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-image {
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 17, 43, 0.95), rgba(0, 32, 79, 0.62)),
    linear-gradient(180deg, transparent 35%, rgba(0, 17, 43, 0.78));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 92px 58px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-league), Impact, sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.breadcrumb {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.inner-page,
.inner,
.blog,
.blog-single,
.kadra-lista,
.matches {
  padding-block: 72px 88px !important;
}

.inner-page,
.blog,
.kadra-lista {
  background: var(--mist);
}

.inner-page h2,
.inner-page h3,
.inner h2,
.inner h3,
.blog h2,
.blog h3,
.blog-single h2,
.blog-single h3,
.kadra-lista h2,
.kadra-lista h3,
.matches h2,
.matches h3 {
  color: var(--navy);
  font-family: var(--font-league), sans-serif;
}

.inner-page a,
.inner a,
.blog a,
.blog-single a,
.kadra-lista a,
.matches a {
  color: var(--navy);
}

.post-entry {
  height: calc(100% - 28px);
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 46px rgba(0, 28, 69, 0.08);
}

.post-entry > a {
  height: 220px;
  margin: 0 !important;
  overflow: hidden;
  background: var(--navy);
}

.post-entry > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.post-entry:hover > a img {
  transform: scale(1.04);
}

.post-entry .post-text {
  padding: 22px 22px 25px;
}

.post-entry .post-text .post-meta {
  margin-bottom: 11px;
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.post-entry .post-text h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
}

.post-entry .post-text h3 a {
  color: inherit;
}

.post-entry .readmore {
  color: var(--red) !important;
  font-family: var(--font-league), sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kadra-lista .box {
  height: 100%;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 15px 46px rgba(0, 28, 69, 0.12);
}

.kadra-lista .box a {
  display: block;
  color: var(--white);
  font-family: var(--font-league), sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.kadra-lista .box img {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  object-fit: cover;
}

.kadra-lista [class*="col-"] {
  margin-bottom: 28px;
}

.kadra .foto img {
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.kadra .box,
.matches .box {
  margin-bottom: 20px;
  padding: 26px;
  border: 0 !important;
  border-top: 4px solid var(--red) !important;
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 15px 46px rgba(0, 28, 69, 0.09);
}

.kadra .param h4,
.matches .box h4 {
  color: var(--red);
  font-family: var(--font-league), sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kadra .param p,
.matches .box p {
  color: var(--ink);
}

.section-title h2 {
  margin-bottom: 28px;
  color: var(--navy);
  font-family: var(--font-league), Impact, sans-serif;
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  margin: 0;
  background: var(--white);
}

.table > thead {
  background: var(--navy);
  color: var(--white);
}

.table th,
.table td {
  border-color: #e8edf4;
  vertical-align: middle;
}

.table tbody tr:has(td:nth-child(3)) td:nth-child(3) {
  font-weight: 700;
}

.pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: 6px;
}

.pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
}

.pagination .page-numbers.current {
  background: var(--red);
  color: var(--white);
}

.blog-single .row {
  justify-content: center;
}

.blog-single .col-lg-8 {
  padding: 34px;
  background: var(--white);
  box-shadow: 0 15px 46px rgba(0, 28, 69, 0.08);
}

.blog-single,
.blog-single p,
.inner-page,
.inner-page p {
  color: var(--ink);
}

@media (max-width: 980px) {
  nav {
    gap: 18px;
  }

  .site-nav .primary-menu {
    gap: 18px;
  }

  nav a {
    font-size: 12px;
  }

  .nav-opp {
    display: none;
  }

  .hero-season {
    font-size: 80px;
  }

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

  .news-card-featured {
    grid-column: 1 / -1;
  }

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

  .league-intro {
    max-width: 560px;
  }

  .league-intro h2 br {
    display: none;
  }

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

  .opp-card {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .opp-details {
    grid-column: 1 / -1;
  }

  .opp-card::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 42px;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .topbar-inner p {
    display: none;
  }

  .topbar-inner {
    justify-content: flex-end;
  }

  .nav-wrap {
    min-height: 72px;
    position: relative;
    z-index: 32;
  }

  body.admin-bar .site-header {
    top: 0;
  }

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

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

  .brand small {
    margin-top: 7px;
    font-size: 8px;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 34;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
  }

  nav {
    position: fixed;
    z-index: 33;
    top: 104px;
    right: 15px;
    bottom: 18px;
    left: 15px;
    overflow-y: auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 24px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(9, 45, 97, 0.98), rgba(0, 20, 49, 0.99));
    box-shadow: 0 24px 70px rgba(0, 9, 27, 0.46);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 200ms ease, transform 240ms ease;
  }

  .site-nav .primary-menu {
    display: none !important;
  }

  .site-nav .mobile-primary-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }

  .site-nav .mobile-primary-menu li {
    width: 100%;
  }

  nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 55px;
    padding: 13px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--white);
    font-size: 18px;
    letter-spacing: 0.055em;
  }

  nav a:not(.nav-opp)::after {
    content: "→";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--yellow);
    font-family: Arial, sans-serif;
    font-size: 19px;
  }

  .site-nav .primary-menu > li > a::after,
  .site-nav .primary-menu .sub-menu a::after,
  .site-nav .primary-menu .children a::after {
    content: "→";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--yellow);
    font-family: Arial, sans-serif;
    font-size: 19px;
  }

  .site-nav .menu-item-has-children > a::after,
  .site-nav .page_item_has_children > a::after {
    content: "+";
  }

  .site-nav .menu-item-has-children.submenu-open > a::after,
  .site-nav .page_item_has_children.submenu-open > a::after {
    content: "−";
  }

  .site-nav .sub-menu,
  .site-nav .children {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 14px;
    display: none;
    gap: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .submenu-open > .sub-menu,
  .site-nav .submenu-open > .children {
    display: grid;
  }

  .site-nav .sub-menu a,
  .site-nav .children a {
    min-height: 47px;
    padding: 10px 8px;
    white-space: normal;
  }

  .mobile-nav-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2px 4px 20px;
  }

  .mobile-nav-heading span {
    color: var(--yellow);
    font-family: var(--font-league), sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  .mobile-nav-heading strong {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-opp {
    display: block;
    min-height: 54px;
    margin: 18px 0 0;
    padding: 15px 18px;
    border: 0;
    border-radius: 4px;
    text-align: center;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 30;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    display: block;
    background: rgba(0, 13, 34, 0.78);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: max(650px, calc(100svh - 104px));
    align-items: flex-end;
  }

  .hero-copy {
    align-items: flex-end;
  }

  .hero-controls {
    width: min(100% - 30px, 1180px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 16, 40, 0.12) 0%, rgba(0, 20, 49, 0.95) 58%, var(--navy-deep) 100%);
  }

  .hero-slide img {
    object-position: 52% center;
  }

  .hero-content {
    padding-block: 72px 76px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero-lead {
    margin-top: 17px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions {
    margin-top: 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .button {
    min-height: 49px;
    width: 100%;
  }

  .hero-dots {
    left: 0;
    bottom: 33px;
  }

  .hero-season {
    display: none;
  }

  .match-zone {
    margin-top: -24px;
  }

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

  .score-card-main {
    min-height: 152px;
    padding: 18px 16px;
    gap: 10px;
  }

  .club {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .club-away {
    flex-direction: column;
  }

  .club img {
    width: 52px;
    height: 52px;
  }

  .club strong {
    font-size: 12px;
  }

  .score {
    font-size: 29px;
  }

  .content-section {
    padding-block: 58px 68px;
  }

  .section-heading {
    margin-bottom: 26px;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .section-heading h2,
  .league-intro h2 {
    font-size: 48px;
  }

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

  .news-card-featured {
    grid-column: auto;
  }

  .news-image,
  .news-card-featured .news-image {
    height: clamp(185px, 54vw, 225px);
  }

  .news-copy {
    display: block;
    padding: 20px 20px 23px;
  }

  .news-meta {
    margin-bottom: 10px;
  }

  .news-card-featured .news-copy h3,
  .news-copy h3 {
    display: block;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.05;
  }

  .news-copy > p:not(.news-meta) {
    margin: 12px 0 17px;
  }

  .league-section {
    padding-block: 64px;
  }

  .league-section::before {
    inset: 0;
    transform: none;
  }

  .league-layout {
    gap: 38px;
  }

  .league-intro > p:not(.section-kicker) {
    margin-top: 17px;
  }

  .league-mark {
    display: none;
  }

  .standings-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .standings-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .table-scroll {
    width: 100%;
    overflow: visible;
  }

  .standings-card table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .standings-card th,
  .standings-card td {
    height: 52px;
    padding: 7px 3px;
    font-size: 10px;
  }

  .standings-card th {
    height: 39px;
    font-size: 8px;
  }

  .standings-card th:nth-child(1),
  .standings-card td:nth-child(1) {
    width: 8%;
  }

  .standings-card th:nth-child(2),
  .standings-card td:nth-child(2) {
    width: 52%;
  }

  .standings-card th:nth-child(n + 3),
  .standings-card td:nth-child(n + 3) {
    width: 10%;
  }

  .standings-card td:nth-child(2) {
    min-width: 0;
    padding-inline: 5px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .standings-card td:nth-child(2) img {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .table-team {
    gap: 6px;
  }

  .table-team > span {
    min-width: 0;
  }

  .standings-card:not(.is-expanded) tr.mobile-extra {
    display: none;
  }

  .table-toggle {
    width: 100%;
    min-height: 48px;
    display: block;
    border: 0;
    background: #f1f4f8;
    color: var(--navy);
    font-family: var(--font-league), sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

  .instagram-feed-frame #sb_instagram #sbi_images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .instagram-feed-frame #sb_instagram .sbi_item,
  .instagram-feed-frame #sb_instagram .sbi_photo_wrap,
  .instagram-feed-frame #sb_instagram .sbi_photo {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  .instagram-feed-frame #sb_instagram .sbi_photo {
    height: 100% !important;
  }

  .instagram-card {
    height: 350px;
  }

  .partners-section {
    padding-block: 60px 68px;
  }

  .section-heading-centered {
    align-items: center;
  }

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

  .partner-logo {
    height: 112px;
    padding: 18px;
  }

  .opp-section {
    padding-bottom: 66px;
  }

  .opp-card {
    padding: 38px 28px;
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .opp-number {
    font-size: 96px;
  }

  .opp-copy h2 {
    font-size: 44px;
  }

  .opp-details {
    grid-column: auto;
  }

  footer {
    padding-top: 58px;
  }

  .footer-grid {
    padding-bottom: 46px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 30px;
  }

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

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

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .page-hero {
    min-height: 285px;
  }

  .page-hero-content {
    padding-block: 72px 42px;
  }

  .page-hero h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .inner-page,
  .inner,
  .blog,
  .blog-single,
  .kadra-lista,
  .matches {
    padding-block: 52px 64px !important;
  }

  .post-entry > a {
    height: clamp(185px, 54vw, 225px);
  }

  .post-entry .post-text h3 {
    display: block;
    color: var(--navy);
    font-size: 22px;
  }

  .blog-single .col-lg-8 {
    padding: 22px;
  }

  .section-title h2 {
    font-size: 43px;
  }

  .kadra .box,
  .matches .box {
    padding: 20px;
  }
}

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

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

  .hero-content {
    padding-block: 58px 72px;
  }

  nav {
    top: 98px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

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

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