:root {
  --blue: #0866df;
  --blue-dark: #041d4d;
  --blue-deep: #020e29;
  --blue-soft: #edf5ff;
  --white: #ffffff;
  --background: #f5f8fc;
  --text: #12213d;
  --muted: #66758d;
  --border: #dce5f1;
  --shadow: 0 18px 55px rgba(4, 29, 77, 0.12);
  --shadow-small: 0 8px 25px rgba(4, 29, 77, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    to bottom,
    rgba(2, 14, 41, 0.94),
    rgba(2, 14, 41, 0.68)
  );
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
}

.brand-crest {
  display: flex;
  width: 55px;
  height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  border-radius: 12px 12px 18px 18px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14) 0,
      rgba(255, 255, 255, 0.14) 7px,
      transparent 7px,
      transparent 14px
    ),
    rgba(8, 102, 223, 0.28);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.brand-crest strong {
  font-size: 19px;
  line-height: 1;
}

.brand-crest small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
}

.brand-crest.large {
  width: 70px;
  height: 80px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.main-nav a {
  position: relative;
  padding: 29px 0 25px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 160ms ease;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(1, 10, 32, 0.98) 0%,
      rgba(1, 10, 32, 0.88) 27%,
      rgba(1, 10, 32, 0.36) 59%,
      rgba(1, 10, 32, 0.08) 100%
    ),
    url("/static/images/hero-football.png") center right / cover no-repeat,
    radial-gradient(circle at 80% 30%, #0b6ce1, #020e29 70%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(8, 102, 223, 0.2), transparent 34%),
    linear-gradient(to bottom, rgba(2, 14, 41, 0.04), rgba(2, 14, 41, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1380px, calc(100% - 48px));
  min-height: 790px;
  margin: 0 auto;
  align-items: center;
  padding-top: 100px;
}

.hero-copy {
  width: min(680px, 58%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.6vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
  color: #1880ff;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 35px rgba(8, 102, 223, 0.35);
}

.button-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
  background: rgba(4, 29, 77, 0.32);
  backdrop-filter: blur(7px);
}

.button-icon {
  font-size: 20px;
}

.hero-stripes {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: -10px;
  left: -4%;
  height: 70px;
  background:
    linear-gradient(
      168deg,
      transparent 0 38%,
      white 39% 52%,
      var(--blue) 53% 61%,
      white 62% 72%,
      transparent 73%
    );
}

.quick-access {
  position: relative;
  z-index: 6;
  display: grid;
  width: min(1320px, calc(100% - 48px));
  margin: -54px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-card {
  display: grid;
  min-height: 118px;
  align-items: center;
  padding: 22px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  border: 1px solid rgba(8, 102, 223, 0.12);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: 170ms ease;
}

.quick-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
}

.quick-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, #0a73f0, #0449ad);
  font-size: 25px;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card strong {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 16px;
}

.quick-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quick-card b {
  color: var(--blue);
  font-size: 27px;
}

.section,
.partner-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 95px 0;
}

.section-soft {
  width: 100%;
  padding-right: max(24px, calc((100% - 1320px) / 2));
  padding-left: max(24px, calc((100% - 1320px) / 2));
  background:
    linear-gradient(180deg, #f7faff 0%, #edf4fd 100%);
}

.section-heading,
.mini-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

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

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.mini-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  letter-spacing: -0.035em;
}

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

.mini-heading {
  margin-bottom: 20px;
}

.mini-heading h2 {
  font-size: 25px;
}

.mini-heading a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.small-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  padding: 0 17px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.small-button-outline {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: white;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-small);
  transition: 170ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-image {
  position: relative;
  height: 172px;
  background:
    linear-gradient(rgba(4, 29, 77, 0.14), rgba(4, 29, 77, 0.28)),
    radial-gradient(circle at 50% 20%, #2b82e9, #052b65 68%);
}

.team-image::after {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      transparent 0 28px,
      rgba(255, 255, 255, 0.08) 28px 30px
    );
  content: "";
}

.team-image-two {
  background:
    linear-gradient(rgba(4, 29, 77, 0.1), rgba(4, 29, 77, 0.25)),
    radial-gradient(circle at 25% 30%, #2384ff, #041f50 70%);
}

.team-image-three {
  background:
    linear-gradient(rgba(4, 29, 77, 0.08), rgba(4, 29, 77, 0.23)),
    linear-gradient(140deg, #39a5ff, #0752b6);
}

.team-image-four {
  background:
    linear-gradient(rgba(4, 29, 77, 0.08), rgba(4, 29, 77, 0.23)),
    linear-gradient(140deg, #1979d8, #092f72);
}

.team-image-five {
  background:
    linear-gradient(rgba(4, 29, 77, 0.08), rgba(4, 29, 77, 0.23)),
    linear-gradient(140deg, #2875c7, #031c49);
}

.team-badge {
  position: absolute;
  z-index: 2;
  bottom: -22px;
  left: 18px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid white;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: var(--shadow-small);
  font-size: 20px;
  font-weight: 900;
}

.team-content {
  padding: 38px 20px 22px;
}

.team-content h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 20px;
}

.team-content p {
  min-height: 41px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.team-content a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.three-column-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.95fr;
  gap: 35px;
}

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

.event-card {
  display: flex;
  min-height: 97px;
  align-items: center;
  gap: 15px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-small);
}

.event-date {
  display: flex;
  width: 61px;
  height: 68px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, #0866df, #0446a2);
}

.event-date strong {
  font-size: 25px;
  line-height: 1;
}

.event-date span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
}

.event-card h3 {
  margin: 0 0 5px;
  color: var(--blue-dark);
  font-size: 15px;
}

.event-card p,
.event-card small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

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

.gallery-tile {
  height: 115px;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(7, 69, 155, 0.15), rgba(1, 14, 44, 0.36)),
    linear-gradient(140deg, #1884f0, #03295f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.gallery-two {
  background: linear-gradient(140deg, #ee4b2b, #411a4c);
}

.gallery-three {
  background: linear-gradient(140deg, #54a952, #1164bb);
}

.gallery-four {
  background: linear-gradient(140deg, #0b57a9, #001b44);
}

.gallery-five {
  background: linear-gradient(140deg, #1975d1, #8cc8ff);
}

.gallery-six {
  background: linear-gradient(140deg, #d7a84a, #3a6b42);
}

.gallery-link {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-small);
}

.table-title {
  padding: 17px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

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

th,
td {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  text-align: left;
}

th {
  color: var(--muted);
}

tr.highlight {
  color: white;
  background: var(--blue);
}

.table-notice {
  margin: 0;
  padding: 13px;
  color: var(--muted);
  font-size: 10px;
}

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

.person-card {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 17px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-small);
}

.person-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid var(--blue-soft);
  border-radius: 50%;
  color: white;
  background: linear-gradient(140deg, var(--blue), var(--blue-dark));
  font-size: 28px;
  font-weight: 900;
}

.person-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.person-card h3 {
  margin: 6px 0;
  color: var(--blue-dark);
  font-size: 16px;
}

.person-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.membership-section {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 65px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(24, 128, 255, 0.65), transparent 28%),
    linear-gradient(130deg, var(--blue-deep), var(--blue-dark));
  box-shadow: var(--shadow);
}

.membership-section h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  letter-spacing: -0.045em;
}

.membership-section p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.section-kicker.light {
  color: #69b2ff;
}

.membership-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.button-light {
  color: var(--blue-dark);
  background: white;
}

.button-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.partner-row div {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--muted);
  background: white;
  box-shadow: var(--shadow-small);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(130deg, rgba(8, 102, 223, 0.17), transparent 35%),
    var(--blue-deep);
}

.footer-inner {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 48px;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 38px;
}

.footer-brand {
  display: flex;
  gap: 20px;
}

.footer-brand strong {
  color: white;
}

.footer-brand p {
  margin: 6px 0 0;
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: white;
  font-size: 14px;
}

.footer-column a {
  font-size: 12px;
  text-decoration: none;
}

.footer-bottom {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.legal-page {
  width: min(880px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 70px 0;
}

.legal-page h1 {
  color: var(--blue-dark);
  font-size: clamp(40px, 6vw, 68px);
}

.legal-page h2 {
  margin-top: 38px;
  color: var(--blue-dark);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-back {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.legal-warning {
  margin-top: 35px;
  padding: 20px;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 19px;
  }

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

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

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

  .three-column-layout > div:last-child {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: white;
  }

  .main-nav.open {
    position: absolute;
    top: 82px;
    right: 24px;
    left: 24px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 15px;
    border-radius: 10px;
    background: var(--blue-deep);
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 13px;
  }

  .hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .hero-copy {
    width: 72%;
  }

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

  .membership-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 28px;
  }

  .membership-actions {
    width: 100%;
  }

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

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

@media (max-width: 590px) {
  .header-inner,
  .hero-inner,
  .quick-access,
  .section,
  .partner-section,
  .membership-section,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1320px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 180px;
    font-size: 14px;
  }

  .hero {
    min-height: 780px;
    background-position: 68% center;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 150px;
  }

  .hero-copy {
    width: 100%;
  }

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

  .hero-lead {
    max-width: 90%;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stripes {
    height: 40px;
  }

  .quick-access {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .team-grid,
  .people-grid,
  .three-column-layout {
    grid-template-columns: 1fr;
  }

  .three-column-layout > div:last-child {
    grid-column: auto;
  }

  .section-heading,
  .mini-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-image {
    height: 210px;
  }

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

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

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