:root {
  --ink: #142a27;
  --navy: #101f25;
  --green: #c5ed7a;
  --paper: #f8f9f5;
  --muted: #606e68;
  --line: #dce2d8;
  --white: #fff;
  --radius: 3px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #527924;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 750;
  white-space: pre-line;
  margin-bottom: 24px;
}
h3 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
p {
  color: var(--muted);
  line-height: 1.75;
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  display: block;
  margin-bottom: 23px;
}
.green-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.topline {
  background: var(--ink);
  color: #e4ebdf;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  padding-block: 9px;
}
.topline .green-dot {
  margin-left: 9px;
}
.header {
  background: rgba(248, 249, 245, 0.98);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 92px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wordmark {
  font-size: 33px;
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1;
}
.wordmark > span {
  display: block;
  font-size: 7px;
  letter-spacing: 0.11em;
  line-height: 1.6;
  margin-top: 6px;
}
.desktop-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.desktop-nav a {
  font-size: 12px;
  font-weight: 600;
  position: relative;
  padding-block: 14px;
}
.desktop-nav a[aria-current] {
  color: #36551a;
}
.desktop-nav a[aria-current]:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #547c2a;
}
.header-actions {
  display: flex;
  gap: 19px;
  align-items: center;
}
.language {
  font-size: 12px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 17px 24px;
  background: var(--green);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 2px;
  min-height: 48px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: #b3dc67;
  transform: translateY(-1px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.small {
  padding: 12px 17px;
  gap: 17px;
  font-size: 11px;
}
.button.dark {
  background: var(--ink);
  color: white;
}
.button.dark:hover {
  background: #2e4540;
}
.button.secondary {
  background: transparent;
  border-color: var(--line);
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 22px;
}
#mobile-nav {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--paper);
}
#mobile-nav[hidden] {
  display: none;
}
#mobile-nav a {
  padding: 12px;
  font-size: 15px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px;
  background: var(--green);
}
.skip:focus {
  top: 10px;
}
.hero {
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr;
  min-height: 658px;
}
.hero-copy {
  padding: 65px 36px 28px 0;
  position: relative;
}
.hero-eyebrow {
  color: #d7e1d4;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.hero h1 {
  font-size: clamp(44px, 4.6vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1.035;
  font-weight: 800;
  white-space: pre-line;
  margin: 30px 0 26px;
}
.hero h1 > span {
  color: var(--green);
}
.hero-copy > p {
  font-size: 15px;
  color: #c1cdc6;
  max-width: 415px;
  line-height: 1.8;
}
.actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-link {
  font-size: 12px;
  font-weight: 700;
  color: #e5ecde;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.hero-link:hover {
  color: var(--green);
}
.hero-footnote {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #abbcb2;
  border-top: 1px solid #3b4948;
  padding-top: 22px;
  margin-top: 48px;
}
.hero-footnote > span {
  color: var(--green);
  margin-right: 16px;
}
.hero-art {
  background: #223e33;
  position: relative;
  min-height: 100%;
  isolation: isolate;
  border-left: 1px solid #587458;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 86px,
    #38513b44 86px,
    #38513b44 172px
  );
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, #0d251dcc);
  z-index: -1;
}
.art-top {
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.five {
  position: absolute;
  top: 67px;
  left: 29px;
  font-size: clamp(110px, 15vw, 220px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.09em;
  line-height: 1;
  color: #e7f4d8;
}
.five > span {
  font-size: 0.45em;
  letter-spacing: -0.1em;
  margin: 0 12px;
  color: var(--green);
}
.pitch {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 240px;
  height: 294px;
  border: 2px solid #a9c78b;
  transform: perspective(700px) rotateX(32deg) rotateZ(-16deg);
  background: #4662444d;
}
.pitch-mid {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #a9c78b;
}
.pitch-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  border: 1px solid #a9c78b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.box {
  position: absolute;
  left: 28%;
  width: 44%;
  height: 52px;
  border: 1px solid #a9c78b;
}
.box-one {
  top: -1px;
}
.box-two {
  bottom: -1px;
}
.player {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
  box-shadow: 0 7px 0 #0c241a77;
}
.p1 {
  left: 44%;
  bottom: 15px;
}
.p2 {
  left: 10%;
  bottom: 95px;
}
.p3 {
  right: 10%;
  bottom: 95px;
}
.p4 {
  left: 24%;
  top: 65px;
}
.p5 {
  right: 19%;
  top: 43px;
}
.ball {
  position: absolute;
  left: 52%;
  top: 45%;
  font-size: 25px;
  color: white;
}
.art-bottom {
  position: absolute;
  bottom: 29px;
  left: 31px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.art-bottom strong {
  font-size: 25px;
  white-space: pre-line;
  line-height: 1;
  font-style: italic;
  letter-spacing: -1px;
}
.art-bottom > span {
  white-space: pre-line;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
.art-side {
  position: absolute;
  right: 9px;
  top: 45%;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.25em;
  color: #c3d2b6;
}
.facts-strip {
  background: #eaf0e1;
  border-bottom: 1px solid #d7dfce;
}
.facts-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  padding-block: 25px;
  gap: 26px;
}
.facts-strip .container > div {
  display: flex;
  gap: 18px;
  align-items: center;
  border-right: 1px solid #cdd8c3;
}
.facts-strip strong {
  font-size: 27px;
  letter-spacing: -1.2px;
}
.facts-strip strong > span {
  font-size: 17px;
}
.facts-strip div > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  max-width: 96px;
  line-height: 1.7;
}
.facts-strip a {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.facts-strip a > span {
  font-size: 26px;
}
.section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 35px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 400px;
  font-size: 14px;
  margin-bottom: 3px;
}
.section-heading .eyebrow {
  color: #687265;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
}
.text-link:hover {
  color: #436626;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 50px;
}
.pillars article {
  padding: 32px 30px 0 0;
  position: relative;
}
.pillars article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
.pillar-icon {
  font-size: 38px;
  line-height: 1;
  display: block;
  margin-bottom: 34px;
}
.index {
  position: absolute;
  right: 30px;
  top: 32px;
  font-size: 11px;
  color: #66705f;
}
.pillars p {
  font-size: 14px;
  max-width: 315px;
}
.small-sided {
  background: #edf1e7;
  border-block: 1px solid var(--line);
  padding: 70px 0;
}
.small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.small-grid p {
  font-size: 15px;
}
.small-art {
  min-height: 380px;
  background: var(--green);
  position: relative;
  overflow: hidden;
  color: var(--ink);
  padding: 30px;
}
.small-art > span {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.small-art > strong {
  font-size: 122px;
  font-style: italic;
  letter-spacing: -0.07em;
  position: absolute;
  bottom: 15px;
  left: 28px;
  line-height: 1.1;
}
.small-art strong > span {
  font-size: 0.5em;
}
.mini-pitch {
  position: absolute;
  right: -25px;
  top: -33px;
  border: 2px solid #729543;
  width: 260px;
  height: 320px;
  transform: rotate(23deg);
}
.mini-pitch:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: #729543;
  width: 100%;
}
.mini-pitch:after {
  content: "";
  position: absolute;
  top: calc(50% - 38px);
  left: calc(50% - 38px);
  width: 76px;
  height: 76px;
  border: 2px solid #729543;
  border-radius: 50%;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  border-top: 1px solid #d4ddca;
  padding-top: 22px;
  margin: 27px 0;
}
.benefits span {
  font-size: 13px;
  font-weight: 600;
}
.benefits b {
  margin-right: 13px;
  font-size: 18px;
}
.section-note {
  font-size: 13px;
  margin-top: -8px;
  margin-bottom: 26px;
}
.competition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.competition-card {
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.15s;
}
.competition-card:hover {
  border-color: #81966d;
}
.card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.card-top .eyebrow {
  font-size: 8px;
  letter-spacing: 0.07em;
  margin: 0;
}
.tag {
  background: #edf3e6;
  color: #435c32;
  padding: 5px 9px;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
}
.competition-card h3 {
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin: 32px 0 12px;
}
.competition-card > p {
  font-size: 12px;
  margin-bottom: 25px;
}
.competition-card dl {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-size: 10px;
  margin-bottom: 22px;
}
.competition-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
}
.competition-card dt {
  color: var(--muted);
}
.competition-card dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.card-link span {
  font-size: 22px;
}
.steps-section {
  padding: 74px 0;
  background: var(--ink);
  color: var(--paper);
}
.steps-section .eyebrow {
  color: var(--green);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  gap: 28px;
}
.steps article {
  border-top: 1px solid #51604e;
  padding-top: 23px;
}
.steps article > span {
  color: var(--green);
  font-size: 13px;
}
.steps h3 {
  font-size: 19px;
  margin-top: 30px;
}
.steps p {
  color: #bac9bf;
  font-size: 13px;
}
.match-preview {
  background: #edf1e7;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 36px;
}
.calendar-icon {
  font-size: 54px;
  background: white;
  min-width: 90px;
  min-height: 100px;
  display: grid;
  place-items: center;
}
.match-preview .eyebrow {
  font-size: 10px;
  margin-bottom: 15px;
}
.match-preview h3 {
  margin-bottom: 10px;
}
.match-preview p {
  font-size: 13px;
  margin-bottom: 0;
  max-width: 680px;
}
.round-link {
  margin-left: auto;
  min-width: 47px;
  height: 47px;
  border: 1px solid #9cab8e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.region-section {
  background: #182c29;
  color: #eef3e8;
  padding: 73px 0;
}
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.region-grid .eyebrow {
  color: var(--green);
}
.region-grid p {
  font-size: 14px;
  color: #bdcac0;
  max-width: 410px;
}
.region-map {
  position: relative;
  min-height: 350px;
  background-image: radial-gradient(#91b17b55 1px, transparent 1px);
  background-size: 17px 17px;
}
.map-orbit {
  position: absolute;
  inset: 40px 60px 65px;
  border: 1px solid #8dac7055;
  transform: rotate(-22deg);
  border-radius: 50%;
}
.city {
  position: absolute;
  font-size: 12px;
  padding: 9px 13px;
  background: #182c29;
  border: 1px solid #8aa77466;
  color: #d2e0c6;
}
.city:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 20px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: #8eae78;
}
.city.gz {
  top: 36px;
  left: 5%;
}
.city.dg {
  top: 100px;
  left: 43%;
}
.city.sz {
  top: 176px;
  right: 8%;
  font-size: 25px;
  font-weight: 700;
  color: var(--green);
  border-color: var(--green);
  padding: 13px 20px;
}
.city.sz small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-left: 15px;
  margin-top: 3px;
}
.city.sz .green-dot {
  margin-right: 7px;
}
.city.hk {
  bottom: 39px;
  right: 3%;
}
.map-note {
  position: absolute;
  bottom: -18px;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #bdcac0;
}
.join-banner {
  background: var(--green);
  padding: 70px 0;
}
.join-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.join-banner h2 {
  font-size: clamp(36px, 4.3vw, 58px);
  margin-bottom: 18px;
}
.join-banner .eyebrow {
  margin-bottom: 20px;
}
.join-banner p {
  color: #38502f;
  margin: 0;
  max-width: 600px;
  font-size: 14px;
}
.footer {
  background: #111f23;
  color: #d8e2d7;
  padding-top: 62px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding-bottom: 60px;
}
.footer .brand {
  color: white;
}
.footer .brand > img {
  width: 40px;
}
.footer p {
  color: #adbbb6;
  font-size: 12px;
  max-width: 270px;
  margin: 22px 0 18px;
}
.footer .domain {
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.04em;
  display: flex;
  gap: 40px;
}
.footer h2 {
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-top: 6px;
  margin-bottom: 27px;
  font-weight: 500;
  color: #c3cec5;
}
.footer-top > div > a:not(.brand):not(.domain) {
  display: block;
  font-size: 12px;
  margin-bottom: 13px;
}
.footer-bottom {
  border-top: 1px solid #34423f;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: #adbbb6;
  font-size: 10px;
}
.footer-bottom a {
  margin: 0 12px;
}
.mobile-cta {
  display: none;
}
.page-heading {
  background: #eaf0e1;
  padding: 29px 0 52px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: #606e58;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.page-heading .eyebrow {
  margin-bottom: 18px;
}
.page-heading h1 {
  font-size: clamp(36px, 4.9vw, 65px);
  max-width: 950px;
  margin-bottom: 23px;
}
.page-heading p {
  max-width: 720px;
  font-size: 15px;
  margin-bottom: 0;
}
.notice {
  padding: 22px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #edf3e5;
  border-left: 3px solid #6c9149;
  margin-bottom: 32px;
  font-size: 14px;
}
.notice .green-dot {
  margin-top: 8px;
  background: #587d36;
}
.notice p {
  font-size: 13px;
  margin: 5px 0 0;
}
.notice a {
  text-decoration: underline;
}
.warning {
  background: #faf3e4;
  border-color: #b28d44;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: start;
  margin-top: 26px;
}
.detail-grid p {
  max-width: 660px;
}
.metadata {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  gap: 0 30px;
}
.metadata > div {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}
.metadata dt {
  font-size: 11px;
  color: var(--muted);
}
.metadata dd {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 600;
}
.aside-card {
  background: #edf1e7;
  padding: 34px;
  border: 1px solid var(--line);
}
.aside-card h2 {
  font-size: 30px;
}
.aside-card p {
  font-size: 14px;
}
.aside-card .button {
  margin-top: 10px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.resource {
  padding: 27px;
  border: 1px solid var(--line);
  background: white;
}
.resource h3 {
  font-size: 21px;
  display: flex;
  justify-content: space-between;
}
.resource p {
  font-size: 13px;
  margin: 0;
}
.empty-state {
  background: #edf1e7;
  border: 1px solid var(--line);
  padding: 64px 35px;
  text-align: center;
}
.empty-icon {
  display: block;
  font-size: 44px;
  margin-bottom: 21px;
  color: #587b38;
}
.empty-state h2 {
  font-size: 32px;
}
.empty-state p {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 14px;
}
.tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
}
.tabs a {
  padding: 10px 5px 16px;
  font-size: 16px;
  font-weight: 700;
}
.tabs a[aria-current] {
  border-bottom: 3px solid #527432;
}
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
.filter-form {
  display: flex;
  gap: 14px;
  align-items: center;
}
.filter-form label {
  font-size: 12px;
}
.filter-form select {
  min-width: 140px;
}
.muted {
  font-size: 11px;
  color: var(--muted);
}
.fixtures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.fixture-card {
  border: 1px solid var(--line);
  background: white;
  padding: 24px;
}
.fixture-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
}
.status {
  padding: 3px 9px;
  background: #eef2e8;
  font-size: 10px;
}
.status.live {
  background: #d8efb6;
}
.status.postponed {
  background: #f7e9cb;
}
.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
}
.match-teams > span {
  font-size: 15px;
  font-weight: 600;
}
.match-teams > span:last-child {
  text-align: right;
}
.match-teams strong {
  font-size: 27px;
}
.match-teams small,
table small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}
.fixture-bottom {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  color: var(--muted);
}
.demo-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  margin-top: 28px;
}
.demo-link a {
  text-decoration: underline;
}
.table-wrap {
  overflow: auto;
  margin-block: 30px;
  border: 1px solid var(--line);
  background: white;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 670px;
  font-size: 13px;
}
caption {
  text-align: left;
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
}
th,
td {
  padding: 17px 14px;
  text-align: center;
  border-top: 1px solid var(--line);
}
thead {
  background: #eaf0e1;
}
thead th {
  font-size: 11px;
}
th:nth-child(2),
tbody th {
  text-align: left;
}
.narrow {
  max-width: 850px;
}
.prose h3 {
  margin-top: 35px;
}
.prose p {
  font-size: 15px;
}
.brand-panel {
  background: var(--ink);
  color: var(--green);
  text-align: center;
  padding: 55px 35px;
}
.brand-panel img {
  margin-bottom: 35px;
}
.brand-panel p {
  color: #c8d5bf;
  white-space: pre-line;
}
.rules-list {
  border-top: 1px solid var(--line);
  margin-bottom: 35px;
}
.rules-list details {
  border-bottom: 1px solid var(--line);
}
.rules-list summary {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
}
.rules-list summary > span {
  font-size: 11px;
  color: #667457;
  margin: 0 20px 0 10px;
}
.rules-list p {
  padding-left: 50px;
  font-size: 14px;
}
.registration-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.3fr;
  gap: 90px;
}
.registration-aside h2 {
  font-size: 43px;
}
.registration-aside > p {
  font-size: 14px;
}
.form-steps {
  list-style: none;
  padding: 20px 0;
  counter-reset: step;
}
.form-steps li {
  counter-increment: step;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.form-steps li:before {
  content: "0" counter(step);
  color: #5d7b41;
  font-size: 12px;
}
.form-help {
  margin-top: 30px;
}
.form-help h3 {
  font-size: 19px;
}
.registration-form {
  background: white;
  border: 1px solid var(--line);
  padding: 34px;
}
.form-section-title {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin: 5px 0 26px;
}
.form-section-title > span {
  font-size: 11px;
  color: #62774c;
}
.form-section-title h3 {
  font-size: 20px;
  margin: 0;
}
.form-section-title small {
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.field {
  margin-bottom: 24px;
}
.field label,
legend {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 9px;
}
.field label > span {
  color: #526c3a;
}
input:not([type="checkbox"]),
select,
textarea {
  border: 1px solid #bcc7b2;
  background: #fafbf8;
  border-radius: 2px;
  padding: 12px;
  color: var(--ink);
  width: 100%;
  min-width: 0;
  font-size: 14px;
  min-height: 48px;
}
textarea {
  resize: vertical;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 27px;
  min-width: 0;
}
legend {
  padding: 0;
}
.field-hint {
  font-size: 11px;
  line-height: 1.6;
  margin: 8px 0 0;
}
.age-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.age-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #bbc7b1;
  background: #fafbf8;
  padding: 10px 13px;
  font-size: 12px;
  cursor: pointer;
}
.age-options input {
  accent-color: #446b26;
  width: 17px;
  height: 17px;
  margin: 0;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  margin: 26px 0;
  line-height: 1.7;
}
.consent input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #446b26;
  margin: 3px 0 0;
}
.consent a {
  text-decoration: underline;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-errors {
  padding: 24px;
  background: #fff0e8;
  border: 1px solid #ba6d46;
  margin-bottom: 25px;
}
.form-errors h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.form-errors p {
  color: #703719;
  margin: 0;
  font-size: 14px;
}
.receipt {
  padding: 40px;
  background: #edf3e6;
  border: 1px solid #97b77a;
}
.receipt h2 {
  font-size: 34px;
}
.receipt p {
  font-size: 14px;
}
.contact-stack article {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.contact-stack article:first-child {
  padding-top: 0;
}
.contact-stack .eyebrow {
  margin-bottom: 12px;
}
.contact-stack a {
  font-size: clamp(18px, 2.3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}
.contact-stack p {
  margin-bottom: 0;
  font-size: 13px;
}
.light {
  color: white;
}
html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2 {
  line-height: 1.25;
  letter-spacing: -0.045em;
}
html[lang="zh-Hans"] .hero h1 {
  font-size: clamp(40px, 4.4vw, 63px);
  max-width: 580px;
}
html[lang="zh-Hans"] .wordmark > span {
  font-size: 9px;
  letter-spacing: 0.14em;
}
html[lang="zh-Hans"] .hero-copy {
  padding-top: 73px;
}
html[lang="zh-Hans"] .hero-copy > p {
  max-width: 405px;
}
html[lang="zh-Hans"] .hero-footnote {
  margin-top: 48px;
}
@media (min-width: 1500px) {
  .hero-copy {
    padding-top: 80px;
  }
  .hero-grid {
    min-height: 690px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .pitch {
    top: 260px;
    height: 300px;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 14px;
  }
  .header-inner {
    gap: 20px;
  }
  .header-actions {
    gap: 13px;
  }
  .wordmark {
    font-size: 28px;
  }
  .wordmark > span {
    font-size: 6px;
  }
  .brand > img {
    width: 36px;
  }
  .hero-grid {
    min-height: 620px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-copy {
    padding-top: 50px;
  }
  .card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .competition-card {
    padding: 19px;
  }
  .facts-strip .container > div {
    gap: 12px;
  }
  .facts-strip strong {
    font-size: 22px;
  }
  .small-grid,
  .detail-grid,
  .region-grid,
  .registration-grid {
    gap: 50px;
  }
  .footer-top {
    gap: 28px;
  }
  .five {
    top: 96px;
    font-size: 175px;
  }
  .pitch {
    top: 250px;
    height: 250px;
  }
  .hero-eyebrow {
    font-size: 9px;
  }
  .hero-footnote {
    font-size: 8px;
  }
}
@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    min-height: 615px;
  }
  .hero-copy {
    padding-right: 26px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .actions {
    gap: 19px;
  }
  .hero .button {
    padding: 15px 20px;
    font-size: 12px;
    gap: 17px;
  }
  .hero-link {
    font-size: 11px;
  }
  .five {
    font-size: 155px;
    left: 15px;
    top: 125px;
  }
  .pitch {
    top: 260px;
    height: 230px;
    left: 13%;
    right: 13%;
  }
  .art-top {
    left: 23px;
    right: 20px;
  }
  .art-top > span {
    font-size: 8px;
  }
  .art-bottom strong {
    font-size: 21px;
  }
  .art-bottom > span {
    font-size: 7px;
  }
  .hero-footnote {
    line-height: 1.8;
    margin-top: 30px;
  }
  .facts-strip .container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .facts-strip a {
    grid-column: 1/-1;
    border-top: 1px solid #cdd8c3;
    padding-top: 13px;
  }
  .facts-strip .container > div:nth-child(3) {
    border: 0;
  }
  .competition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-top {
    flex-direction: row;
  }
  .small-grid {
    gap: 40px;
  }
  .small-art {
    min-height: 360px;
  }
  .small-art > strong {
    font-size: 95px;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .steps {
    gap: 20px;
  }
  .steps h3 {
    font-size: 17px;
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child p {
    margin-top: 8px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 340px;
  }
  .registration-grid {
    gap: 35px;
    grid-template-columns: 0.7fr 1.3fr;
  }
  .registration-aside h2 {
    font-size: 34px;
  }
  .registration-form {
    padding: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .region-grid {
    gap: 35px;
  }
  .resource-grid {
    gap: 13px;
  }
  .resource {
    padding: 22px;
  }
  .contact-stack a {
    font-size: 22px;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .topline {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .topline .green-dot {
    display: none;
  }
  .header-inner {
    min-height: 77px;
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .wordmark {
    font-size: 27px;
  }
  .wordmark > span {
    font-size: 5.5px;
  }
  .brand > img {
    width: 32px;
  }
  .header-actions {
    gap: 14px;
  }
  .header-actions > .button {
    display: none;
  }
  .language {
    font-size: 13px;
    min-width: 30px;
    text-align: center;
    padding: 10px 0;
  }
  .menu-toggle {
    border: 0;
    font-size: 23px;
  }
  .hero .container {
    width: 100%;
  }
  .hero-grid {
    display: block;
  }
  .hero-copy {
    padding: 40px 24px 28px;
  }
  .hero h1 {
    font-size: clamp(44px, 10vw, 65px);
    line-height: 1.04;
    margin-top: 26px;
  }
  .hero-copy > p {
    max-width: 380px;
    font-size: 14px;
  }
  .hero-eyebrow {
    font-size: 8px;
  }
  .hero-footnote {
    margin-top: 28px;
    padding-top: 18px;
    font-size: 8px;
  }
  .hero-art {
    min-height: 420px;
    margin: 0 20px 20px;
    border: 1px solid #57724a;
  }
  .five {
    top: 43px;
    left: 27px;
    font-size: 150px;
  }
  .art-top {
    top: 19px;
    left: 25px;
  }
  .art-top img {
    width: 36px;
  }
  .pitch {
    top: 165px;
    height: 180px;
    left: 20%;
    right: 20%;
    transform: perspective(700px) rotateX(32deg) rotateZ(-14deg);
  }
  .pitch-circle {
    width: 52px;
    height: 52px;
  }
  .box {
    height: 35px;
  }
  .player {
    width: 27px;
    height: 27px;
    font-size: 9px;
  }
  .p1 {
    bottom: 5px;
  }
  .p2,
  .p3 {
    bottom: 58px;
  }
  .p4 {
    top: 36px;
  }
  .p5 {
    top: 27px;
  }
  .ball {
    font-size: 17px;
  }
  .art-bottom {
    bottom: 22px;
    left: 24px;
    right: 24px;
  }
  .art-bottom strong {
    font-size: 20px;
  }
  .art-bottom > span {
    font-size: 8px;
  }
  .art-side {
    font-size: 7px;
  }
  .facts-strip .container {
    padding-block: 20px;
    gap: 17px 12px;
  }
  .facts-strip .container > div {
    display: block;
  }
  .facts-strip strong {
    font-size: 23px;
    display: block;
  }
  .facts-strip div > span {
    display: block;
    font-size: 7px;
    margin-top: 5px;
    max-width: 90px;
  }
  .facts-strip a {
    font-size: 12px;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading > p {
    margin: 23px 0 0;
    max-width: none;
  }
  .section-heading > .text-link {
    margin-top: 23px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 35px;
    line-height: 1.13;
  }
  h3 {
    font-size: 23px;
  }
  .pillars {
    display: block;
    margin-top: 30px;
  }
  .pillars article,
  .pillars article + article {
    padding: 27px 0 20px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .pillars article:last-child {
    border-bottom: 0;
  }
  .pillar-icon {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .index {
    right: 0;
    top: 30px;
  }
  .pillars p {
    max-width: none;
    font-size: 14px;
  }
  .small-sided {
    padding: 45px 0;
  }
  .small-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .small-art {
    min-height: 290px;
  }
  .small-art > strong {
    font-size: 115px;
  }
  .mini-pitch {
    height: 270px;
    right: 0;
  }
  .small-art > span {
    font-size: 14px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
    gap: 17px 12px;
  }
  .benefits span {
    font-size: 12px;
  }
  .benefits b {
    margin-right: 8px;
  }
  .competition-grid {
    gap: 12px;
  }
  .competition-card {
    padding: 17px 14px;
  }
  .card-top {
    flex-direction: column;
    gap: 9px;
  }
  .card-top .eyebrow {
    font-size: 7px;
  }
  .competition-card h3 {
    font-size: 53px;
    margin: 26px 0 12px;
  }
  .competition-card > p {
    font-size: 11px;
    min-height: 36px;
    margin-bottom: 15px;
  }
  .competition-card dl {
    font-size: 9px;
  }
  .competition-card dl > div {
    display: block;
    margin-bottom: 6px;
  }
  .competition-card dd {
    text-align: left;
    margin-top: 1px;
  }
  .competition-card .card-link {
    font-size: 11px;
  }
  .section-note {
    font-size: 12px;
    margin-top: 0;
  }
  .steps-section {
    padding: 51px 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  .steps h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 17px;
  }
  .steps p {
    font-size: 12px;
  }
  .match-preview {
    padding: 25px;
    gap: 22px;
    align-items: flex-start;
  }
  .calendar-icon {
    display: none;
  }
  .match-preview h3 {
    font-size: 23px;
  }
  .match-preview p {
    font-size: 12px;
  }
  .round-link {
    min-width: 35px;
    height: 35px;
    font-size: 20px;
    margin-top: 4px;
  }
  .region-section {
    padding: 55px 0;
  }
  .region-grid {
    display: block;
  }
  .region-map {
    min-height: 330px;
    margin-top: 35px;
  }
  .region-grid p {
    max-width: none;
  }
  .city.sz {
    right: 10%;
  }
  .map-note {
    font-size: 7px;
    bottom: -8px;
    max-width: 90%;
  }
  .join-banner {
    padding: 52px 0;
  }
  .join-banner .container {
    display: block;
  }
  .join-banner h2 {
    font-size: 40px;
  }
  .join-banner .button {
    margin-top: 30px;
  }
  .footer {
    padding-top: 44px;
    padding-bottom: 78px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
    padding-bottom: 35px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer h2 {
    margin-bottom: 20px;
  }
  .footer p {
    max-width: 300px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    row-gap: 16px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
  }
  .footer-bottom a {
    margin: 0 0 0 16px;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 12px;
    left: 20px;
    right: 20px;
    z-index: 25;
    justify-content: space-between;
    box-shadow: 0 4px 20px #0003;
    min-height: 52px;
    padding: 14px 22px;
  }
  .page-heading {
    padding: 22px 0 34px;
  }
  .breadcrumb {
    font-size: 10px;
    margin-bottom: 28px;
  }
  .page-heading h1 {
    font-size: 39px;
    line-height: 1.1;
  }
  .page-heading p {
    font-size: 13px;
  }
  .notice {
    padding: 18px;
    font-size: 13px;
  }
  .notice p {
    font-size: 12px;
  }
  .detail-grid,
  .registration-grid {
    display: block;
  }
  .detail-grid .aside-card {
    margin-top: 33px;
  }
  .metadata {
    gap: 0 18px;
  }
  .metadata dd {
    font-size: 13px;
  }
  .resource-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .resource {
    padding: 20px 16px;
  }
  .resource h3 {
    font-size: 18px;
    gap: 12px;
  }
  .resource p {
    font-size: 12px;
  }
  .empty-state {
    padding: 40px 20px;
  }
  .empty-state h2 {
    font-size: 29px;
  }
  .empty-state p {
    font-size: 13px;
  }
  .filter-row {
    display: block;
  }
  .filter-form {
    gap: 10px;
    margin-bottom: 15px;
  }
  .filter-form select {
    min-width: 0;
    max-width: 160px;
  }
  .filter-form label {
    font-size: 11px;
  }
  .filter-form button {
    font-size: 10px;
  }
  .tabs {
    gap: 26px;
  }
  .tabs a {
    font-size: 15px;
  }
  .fixtures-grid {
    grid-template-columns: 1fr;
  }
  .fixture-card {
    padding: 20px;
  }
  .match-teams {
    gap: 14px;
  }
  .match-teams > span {
    font-size: 13px;
  }
  .fixture-bottom {
    font-size: 9px;
  }
  .demo-link {
    display: block;
    font-size: 12px;
  }
  .demo-link span {
    display: block;
    margin-top: 7px;
  }
  .registration-aside {
    margin-bottom: 38px;
  }
  .registration-aside h2 {
    font-size: 38px;
  }
  .form-steps {
    padding-block: 6px;
  }
  .registration-form {
    padding: 23px 18px;
  }
  .form-section-title h3 {
    font-size: 20px;
  }
  .form-section-title small {
    font-size: 8px;
  }
  .form-grid {
    display: block;
  }
  .age-options {
    gap: 8px;
  }
  .age-options label {
    padding: 10px 11px;
  }
  .consent {
    font-size: 11px;
  }
  .contact-stack {
    margin-top: 40px;
  }
  .contact-stack a {
    font-size: 25px;
  }
  .rules-list summary {
    font-size: 15px;
    line-height: 1.5;
  }
  .rules-list summary > span {
    margin-right: 12px;
  }
  .rules-list p {
    padding-left: 28px;
    font-size: 13px;
  }
  .narrow {
    max-width: calc(100% - 40px);
  }
  html[lang="zh-Hans"] .hero h1 {
    font-size: clamp(39px, 10vw, 60px);
    max-width: 400px;
    line-height: 1.3;
  }
  html[lang="zh-Hans"] .hero-copy {
    padding-top: 42px;
  }
  html[lang="zh-Hans"] .hero-footnote {
    margin-top: 30px;
  }
  html[lang="zh-Hans"] .wordmark > span {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .header,
  .topline,
  .mobile-cta,
  .footer,
  .hero-art {
    display: none;
  }
  .container {
    width: 100%;
  }
  body {
    background: white;
  }
  .section {
    padding: 20px 0;
  }
  .hero {
    color: black;
    background: white;
  }
  .hero h1 > span,
  .hero p {
    color: black;
  }
}

.notice-title { font-size: 14px; letter-spacing: 0; line-height: 1.6; margin-bottom: 0; }
