:root {
    --navy: #06132e;
    --navy-dark: #030b1b;
    --navy-light: #102b5b;

    --blue: #2e86ff;
    --blue-light: #65b2ff;

    --violet: #635bff;

    --orange: #ff7a3d;
    --orange-light: #ffad7e;

    --white: #ffffff;
    --ink: #101a2d;
    --muted: #71809a;

    --soft: #f4f7fb;
    --line: #dce5f0;

    --green: #18ad78;

    --shadow: 0 18px 55px rgba(7, 21, 46, .10);

    --radius: 22px;
}


/* =========================================================
   00 • RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    font-family: "Nunito", sans-serif;

    color: var(--ink);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   01 • PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;

    color: var(--white);
    background: var(--navy);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;

    transition:
        opacity .45s ease,
        visibility .45s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-trophy {
    font-size: 52px;

    animation:
        trophyFloat 1.2s ease-in-out infinite;
}


/* =========================================================
   02 • HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: rgba(4, 15, 38, .94);

    border-bottom:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(15px);
}

.header-inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 76px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--white);
}

.brand img {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    object-fit: contain;
    object-position: center;

    border-radius: 10px;

    padding: 2px;

    background: rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.16);

    filter: drop-shadow(0 5px 10px rgba(0,0,0,.25));
}

.brand-text small,
.brand-text strong {
    display: block;
}

.brand-text small {
    color: #7e94b7;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.brand-text strong {
    margin-top: 3px;

    font:
        800 19px/1
        "Barlow Condensed";

    letter-spacing: .8px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #c5d2e5;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.1px;
    text-transform: uppercase;

    transition: color .25s ease;
}

.main-nav a:hover {
    color: var(--blue-light);
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: var(--white);

    font-size: 27px;
}


/* =========================================================
   03 • HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 760px;

    padding-top: 76px;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(46,134,255,.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 90%,
            rgba(99,91,255,.18),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #040d20,
            #091c3e 60%,
            #07142e
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;

    opacity: .35;

    background:
        repeating-linear-gradient(
            115deg,
            transparent 0 54px,
            rgba(255,255,255,.025) 55px 56px
        );
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: min(1240px, calc(100% - 40px));
    min-height: 684px;

    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;
}

.hero-copy {
    padding-bottom: 20px;
}

.section-caption {
    color: var(--blue-light);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.2px;
}

.hero-caption {
    margin-bottom: 19px;
}

.hero-copy h1 {
    font:
        900 clamp(64px, 9vw, 122px)/.78
        "Barlow Condensed";

    letter-spacing: -2px;
}

.hero-copy h1 span {
    display: block;
    color: var(--blue-light);
}

.hero-subtitle {
    margin-top: 22px;

    color: var(--orange-light);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2.2px;
}

.hero-description {
    max-width: 550px;

    margin-top: 16px;

    color: #b5c5dc;

    font-size: 14px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 26px;
}

.button {
    min-height: 48px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 8px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.2px;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
}

.button-primary:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
}

.button-outline {
    color: var(--white);

    border:
        1px solid rgba(255,255,255,.24);
}

.button-outline:hover {
    color: var(--orange-light);

    border-color: var(--orange);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;

    margin-top: 42px;
}

.hero-highlights div {
    padding-left: 12px;

    border-left:
        2px solid var(--orange);
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    font:
        800 24px/1
        "Barlow Condensed";
}

.hero-highlights span {
    margin-top: 5px;

    color: #7e94b7;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.hero-art {
    position: relative;

    width: 100%;
    min-height: 560px;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.hero-art img {
    position: relative;
    z-index: 2;

    display: block;

    width: min(430px, 70vw);
    height: min(500px, 74vw);

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    border-radius: 0;

    border: 0;

    filter: drop-shadow(0 22px 28px rgba(0,0,0,.28));

    animation:
        trophyFloat 4s ease-in-out infinite;
}

.art-ring {
    position: absolute;
    z-index: 1;

    width: min(520px, 82vw);
    height: min(520px, 82vw);

    border:
        1px solid rgba(101,178,255,.16);

    border-radius: 50%;

    box-shadow:
        0 0 0 40px rgba(101,178,255,.02),
        0 0 0 80px rgba(101,178,255,.015);

    pointer-events: none;
}

.art-caption {
    position: absolute;
    z-index: 3;

    right: 4%;
    bottom: 48px;

    color: #7890b3;

    font:
        800 14px/1.3
        "Barlow Condensed";

    letter-spacing: 2.3px;

    text-align: right;
}

.art-caption > span {
    color: var(--orange);
}

.art-caption small {
    display: block;

    margin-top: 4px;

    color: var(--blue-light);

    font-size: 8px;
    letter-spacing: 1.5px;
}


/* =========================================================
   04 • QUICK STATS
========================================================= */

.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    min-height: 100px;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--violet)
        );
}

.quick-stats div {
    padding: 18px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid rgba(255,255,255,.14);
}

.quick-stats strong {
    font:
        900 38px/1
        "Barlow Condensed";
}

.quick-stats span {
    margin-top: 5px;

    color: #dbe9ff;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   05 • GENERAL SECTION
========================================================= */

.content-section {
    padding: 100px 20px;
}

.section-heading {
    width: min(1240px, 100%);

    margin:
        0 auto 38px;
}

.section-heading h2 {
    margin-top: 7px;

    font:
        900 clamp(46px, 6vw, 72px)/.9
        "Barlow Condensed";

    letter-spacing: -1px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 700px;

    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

.section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   06 • CONTROLS / SWITCHES
========================================================= */

.section-control-row,
.record-control,
.season-control {
    width: min(1240px, 100%);

    margin:
        0 auto 28px;
}

.section-control-row,
.record-control {
    display: flex;
    align-items: center;

    gap: 13px;
}

.season-control {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 9px;
}

.control-caption {
    color: #8492a7;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.switch-buttons,
.season-switch {
    display: inline-flex;

    padding: 4px;

    gap: 4px;

    border:
        1px solid var(--line);

    border-radius: 11px;

    background: #e8eef7;
}

.switch-button,
.season-button {
    border: 0;

    border-radius: 7px;

    color: #687890;
    background: transparent;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;

    transition: .25s ease;
}

.switch-button {
    min-width: 100px;
    padding: 11px 19px;
}

.season-button {
    min-width: 125px;
    padding: 12px 20px;
}

.switch-button.active,
.season-button.active {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--violet)
        );

    box-shadow:
        0 7px 18px rgba(46,134,255,.22);
}


/* =========================================================
   07 • CHAMPIONSHIP ARENA
========================================================= */

.arena-section {
    background: var(--white);
}

.arena-grid {
    width: min(1240px, 100%);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.grade-arena-card {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: var(--radius);

    background: var(--soft);

    box-shadow:
        0 12px 35px rgba(7,21,46,.06);
}

.grade-arena-header {
    min-height: 92px;

    padding: 19px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--white);

    background:
        linear-gradient(
            115deg,
            var(--navy),
            var(--navy-light)
        );
}

.card-caption,
.round-caption,
.final-caption,
.fixture-caption,
.coming-caption {
    color: var(--blue-light);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.6px;
}

.grade-arena-header h3 {
    margin-top: 4px;

    font:
        900 35px/1
        "Barlow Condensed";
}

.grade-arena-header > span {
    color: #90bdff;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.arena-card-body {
    padding: 24px 21px 20px;
}

.round-caption {
    margin-bottom: 11px;

    color: #7e8da5;
}

.arena-match {
    margin-bottom: 15px;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 13px;

    background: var(--white);

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.arena-match:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(7,21,46,.08);
}

.arena-team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 13px;

    font-size: 10px;
    font-weight: 900;
}

.arena-team-row + .arena-team-row {
    border-top:
        1px solid #edf0f5;
}

.arena-team-row.winner {
    color: var(--blue);

    background: #eef6ff;
}

.arena-team-row strong {
    color: #5e6d84;
}

.arena-match-footer {
    padding: 8px 13px;

    display: flex;
    justify-content: space-between;

    gap: 10px;

    color: #7e8da4;

    background: #f7f9fc;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .7px;
}

.arena-match-footer span:first-child {
    color: var(--orange);
}

.final-card {
    margin-top: 20px;

    padding: 18px 15px;

    border:
        1px solid rgba(255,122,61,.35);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #fff8f3,
            #f8f3ff
        );
}

.final-caption {
    color: var(--orange);
}

.final-teams {
    margin-top: 13px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    gap: 8px;

    align-items: center;

    text-align: center;
}

.final-teams strong {
    font-size: 10px;
}

.final-teams span {
    color: #8996a9;

    font:
        900 10px
        "Barlow Condensed";
}

.final-meta {
    margin-top: 12px;

    display: flex;
    justify-content: space-between;

    gap: 8px;

    color: #8794a8;

    font-size: 7px;
    font-weight: 900;
}

.final-meta span:first-child {
    color: var(--orange);
}


/* =========================================================
   08 • FIXTURES
========================================================= */

.fixtures-section {
    background: var(--soft);
}

.filters {
    display: flex;

    gap: 8px;
}

.filters label {
    display: grid;
    gap: 5px;
}

.filters label > span {
    color: #8592a6;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;
}

.filters select {
    min-width: 145px;

    padding: 11px 13px;

    border:
        1px solid var(--line);

    border-radius: 8px;

    color: #5d6d84;
    background: var(--white);

    font-size: 9px;
    font-weight: 800;

    outline: 0;
}

.fixture-grid {
    width: min(1240px, 100%);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}

.fixture-card {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 17px;

    background: var(--white);

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.fixture-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.fixture-header {
    padding: 13px 17px;

    display: flex;
    justify-content: space-between;

    gap: 10px;

    color: var(--white);

    background: var(--navy);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;
}

.fixture-header b {
    color: var(--orange-light);
}

.fixture-body {
    padding: 18px;
}

.fixture-caption {
    color: var(--orange);
}

.fixture-date {
    margin-top: 4px;

    color: #8996a9;

    font-size: 8px;
    font-weight: 800;
}

.fixture-teams {
    margin-top: 17px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 8px;
}

.fixture-team {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 10px;
}

.fixture-team.right {
    justify-content: flex-end;

    text-align: right;
}

.team-badge {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--blue);

    background: #eaf2ff;

    font:
        800 10px
        "Barlow Condensed";
}

.team-badge.orange {
    color: var(--orange);

    background: #fff0e8;
}

.fixture-vs {
    color: #9aa5b5;

    font:
        900 10px
        "Barlow Condensed";
}

.fixture-result {
    margin-top: 17px;

    padding-top: 13px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;

    border-top:
        1px solid #edf0f5;
}

.fixture-result strong {
    font:
        800 16px
        "Barlow Condensed";
}

.fixture-result span {
    color: #738198;

    font-size: 7px;
    font-weight: 800;
}


/* =========================================================
   09 • CHAMPIONS HALL
========================================================= */

.champions-section {
    position: relative;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(46,134,255,.13),
            transparent 38%
        ),
        linear-gradient(
            125deg,
            #040d20,
            #0a1940 65%,
            #10134c
        );
}

.champions-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: 90px;
    left: 50%;

    transform: translateX(-50%);

    border:
        1px solid rgba(101,178,255,.08);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(101,178,255,.015),
        0 0 0 140px rgba(101,178,255,.01);
}

.champions-section > * {
    position: relative;
    z-index: 2;
}

.section-heading.light p {
    color: #8da1c1;
}

.section-heading.light h2 span {
    color: var(--blue-light);
}

.season-control .control-caption {
    color: #8296b7;
}

.season-switch {
    border-color:
        rgba(255,255,255,.11);

    background:
        rgba(255,255,255,.07);
}

.season-button {
    color: #8ea3c5;
}

.season-button.active {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--violet)
        );
}

.champion-grid {
    width: min(1240px, 100%);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}

.champion-grade-card {
    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );
}

.champion-grade-header {
    padding: 19px 21px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    background:
        rgba(255,255,255,.035);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.champion-grade-header h3 {
    margin-top: 4px;

    font:
        900 32px
        "Barlow Condensed";
}

.champion-grade-header > span {
    color: var(--orange-light);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.champion-division {
    min-height: 95px;

    padding: 18px 20px;

    display: flex;
    align-items: center;

    gap: 14px;
}

.champion-division + .champion-division {
    border-top:
        1px solid rgba(255,255,255,.08);
}

.champion-division small,
.champion-division strong {
    display: block;
}

.champion-division small {
    color: #8ea3c4;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.champion-division strong {
    margin-top: 4px;

    font:
        800 28px
        "Barlow Condensed";
}

.mini-trophy {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.mini-trophy img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    filter: drop-shadow(0 8px 14px rgba(0,0,0,.22));
}

.champion-division.boys .mini-trophy {
    filter: drop-shadow(
        0 5px 12px
        rgba(46,134,255,.18)
    );
}

.champion-division.girls .mini-trophy {
    filter: drop-shadow(
        0 5px 12px
        rgba(255,122,61,.18)
    );
}

.coming-soon-card {
    grid-column: 1 / -1;

    min-height: 330px;

    padding: 45px;

    display: grid;
    place-items: center;
    align-content: center;

    text-align: center;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );
}

.coming-trophy {
    width: 120px;
    height: 120px;

    display: grid;
    place-items: center;
}

.coming-trophy img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,.25));
}

.coming-caption {
    margin-top: 12px;

    color: var(--orange-light);
}

.coming-soon-card h3 {
    margin-top: 8px;

    font:
        900 46px
        "Barlow Condensed";
}

.coming-soon-card p {
    max-width: 600px;

    margin-top: 10px;

    color: #8da1c0;

    font-size: 11px;
    line-height: 1.6;
}

.coming-tags {
    margin-top: 19px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 7px;
}

.coming-tags span {
    padding: 7px 10px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 20px;

    color: #90a5c4;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   10 • RECORDS
========================================================= */

.records-section {
    background: var(--white);
}

.record-control {
    justify-content: center;
}

.record-grid {
    width: min(1240px, 100%);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}

.record-grade-card {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background: var(--white);
}

.record-grade-header {
    padding: 18px 20px;

    color: var(--white);

    background: var(--navy);
}

.record-grade-header h3 {
    margin-top: 3px;

    font:
        800 27px
        "Barlow Condensed";
}

.record-title {
    padding: 15px 19px 8px;

    color: var(--orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.record-row {
    min-height: 43px;

    padding: 8px 19px;

    display: grid;
    grid-template-columns: 34px 1fr auto;

    align-items: center;

    gap: 8px;

    border-bottom:
        1px solid #edf0f5;

    font-size: 9px;
}

.record-row b {
    color: var(--blue);
}

.record-row strong {
    font:
        800 16px
        "Barlow Condensed";
}

.record-note {
    padding: 14px 19px;

    color: #8996a8;

    font-size: 7px;
    line-height: 1.5;
}


/* =========================================================
   11 • RULES
========================================================= */

.rules-section {
    background: var(--soft);
}

.rules-layout {
    width: min(1120px, 100%);

    margin: auto;

    padding: 47px;

    display: grid;
    grid-template-columns: .72fr 1.28fr;

    gap: 55px;

    border-radius: 25px;

    color: var(--white);

    background: var(--navy);
}

.rules-intro h2 {
    margin-top: 9px;

    font:
        900 65px/.82
        "Barlow Condensed";
}

.rules-intro h2 span {
    color: var(--orange);
}

.rules-intro p {
    max-width: 310px;

    margin-top: 24px;

    color: #8ea0bd;

    font-size: 10px;
    line-height: 1.75;
}

.format-card {
    margin-bottom: 20px;

    padding: 18px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 13px;

    background:
        rgba(255,255,255,.045);
}

.format-card-title {
    color: var(--blue-light);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.format-flow {
    margin-top: 15px;

    display: flex;
    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}

.format-flow span,
.format-flow strong {
    padding: 7px 9px;

    border-radius: 7px;

    background: rgba(255,255,255,.08);

    font-size: 9px;
    font-weight: 900;
}

.format-flow b,
.format-flow i {
    color: #8296b5;

    font-size: 9px;
}

.format-flow i {
    font-style: normal;
}

.format-flow strong {
    color: var(--orange-light);
}

.rules-list > div {
    display: grid;
    grid-template-columns: 38px 1fr;

    gap: 10px;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(255,255,255,.09);
}

.rules-list b {
    color: var(--blue-light);

    font:
        800 10px
        "Barlow Condensed";
}

.rules-list span {
    color: #b4c2d6;

    font-size: 9px;
    line-height: 1.55;
}


/* =========================================================
   12 • FOOTER
========================================================= */

.site-footer {
    color: var(--white);

    background: var(--navy-dark);
}

.footer-main {
    width: min(1240px, calc(100% - 40px));

    margin: auto;

    padding: 55px 0;

    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);

    gap: 45px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.footer-brand img {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    object-fit: contain;
    object-position: center;

    padding: 2px;

    border-radius: 12px;

    background: rgba(255,255,255,.025);

    filter: drop-shadow(0 7px 12px rgba(0,0,0,.25));
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font:
        800 23px
        "Barlow Condensed";
}

.footer-brand span {
    margin-top: 4px;

    color: #7185a6;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.footer-column h4 {
    margin-bottom: 13px;

    color: var(--blue-light);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.footer-column a {
    display: block;

    margin: 9px 0;

    color: #7d8faa;

    font-size: 8px;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    width: min(1240px, calc(100% - 40px));

    min-height: 58px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #607594;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .8px;
}

.footer-bottom a {
    color: var(--orange);
}


/* =========================================================
   13 • MATCH MODAL
========================================================= */

.match-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: none;

    place-items: center;
}

.match-modal.open {
    display: grid;
}

.modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(1,7,19,.82);

    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    z-index: 2;

    width: min(650px, calc(100% - 30px));

    padding: 35px;

    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 30px 90px rgba(0,0,0,.4);
}

.modal-close {
    position: absolute;

    top: 10px;
    right: 16px;

    border: 0;

    color: #758298;
    background: transparent;

    font-size: 30px;
}

.modal-box h2 {
    margin: 8px 0 27px;

    font:
        900 48px
        "Barlow Condensed";
}

.modal-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    text-align: center;
}

.modal-team {
    display: grid;
    justify-items: center;
}

.modal-badge {
    width: 60px;
    height: 60px;

    margin-bottom: 9px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--white);
    background: var(--navy);

    font:
        900 17px
        "Barlow Condensed";
}

.modal-team strong {
    font:
        800 18px
        "Barlow Condensed";
}

.modal-team b {
    margin-top: 7px;

    color: var(--blue);

    font:
        900 28px
        "Barlow Condensed";
}

.modal-vs {
    color: #9aa5b5;

    font:
        900 13px
        "Barlow Condensed";
}

.modal-info {
    margin-top: 25px;

    padding: 14px;

    border-radius: 9px;

    text-align: center;

    color: #6d7c92;
    background: var(--soft);

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   14 • ANIMATIONS
========================================================= */

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   15 • RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 15px;
    }

    .hero-inner {
        grid-template-columns: 1fr .8fr;
    }

    .hero-art img {
        width: 400px;
        height: 400px;
    }

    .art-ring {
        width: 430px;
        height: 430px;
    }

    .arena-grid,
    .fixture-grid,
    .champion-grid,
    .record-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 760px) {

    .header-inner {
        min-height: 66px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 66px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: var(--navy);

        border-top:
            1px solid rgba(255,255,255,.08);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 25px;

        border-bottom:
            1px solid rgba(255,255,255,.07);
    }


    .hero-section {
        min-height: 860px;
    }

    .hero-inner {
        min-height: 784px;

        grid-template-columns: 1fr;

        align-content: center;
    }

    .hero-art {
        position: absolute;

        right: -10px;
        bottom: 0;

        width: 390px;
        height: 390px;

        min-height: 0;

        opacity: .30;
    }

    .hero-art img {
        width: 330px;
        height: 330px;

        max-width: 330px;
        max-height: 330px;

        object-fit: contain;
    }

    .art-ring {
        width: 360px;
        height: 360px;
    }

    .art-caption {
        display: none;
    }


    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-stats div {
        min-height: 75px;
    }


    .content-section {
        padding: 70px 15px;
    }


    .section-heading-split {
        flex-direction: column;

        align-items: flex-start;
    }

    .section-control-row,
    .record-control {
        align-items: flex-start;
        flex-direction: column;
    }

    .filters {
        width: 100%;
    }

    .filters select {
        min-width: 0;
        flex: 1;
    }


    .arena-grid,
    .fixture-grid,
    .champion-grid,
    .record-grid {
        grid-template-columns: 1fr;
    }


    .season-switch {
        width: 100%;
    }

    .season-button {
        min-width: 0;
        flex: 1;

        padding:
            11px 7px;
    }


    .rules-layout {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px 23px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-bottom {
        flex-wrap: wrap;

        padding: 17px 0;
    }

}


@media (max-width: 430px) {

    .brand-text strong {
        font-size: 16px;
    }

    .hero-copy h1 {
        font-size: 59px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-highlights {
        gap: 17px;
    }

    .hero-highlights strong {
        font-size: 20px;
    }

    .grade-arena-header h3 {
        font-size: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .modal-box {
        padding: 28px 20px;
    }

    .modal-box h2 {
        font-size: 39px;
    }

}


/* =========================================================
   TROPHY IMAGE SAFETY — PREVENT HEADER CROPPING
========================================================= */
.site-header {
    overflow: visible;
}

.header-inner {
    min-height: 82px;
}

.brand {
    min-width: 0;
}

.brand img {
    object-fit: contain !important;
}

@media (max-width: 700px) {
    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero-art {
        min-height: 440px;
    }

    .hero-art img {
        width: min(320px, 72vw);
        height: min(380px, 82vw);
    }

    .mini-trophy {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }
}

/* =========================================================
   16 • COLOURFUL VISUAL REFRESH
   CSS ONLY — HTML and JavaScript remain unchanged.
========================================================= */

:root {
    --soft: #edf4ff;
    --line: #cbd9ee;
    --ink: #0b1830;
    --muted: #627493;
    --blue: #287cff;
    --blue-light: #72c7ff;
    --violet: #7658ff;
    --orange: #ff7a32;
    --orange-light: #ffc078;
    --green: #18b77d;
}

body {
    background:
        radial-gradient(circle at 8% 18%, rgba(40,124,255,.08), transparent 22%),
        radial-gradient(circle at 92% 58%, rgba(118,88,255,.07), transparent 24%),
        #edf4ff;
}

/* Header — richer colour, while keeping the actual trophy fully visible */
.site-header {
    background:
        linear-gradient(90deg,
            rgba(3,11,27,.98),
            rgba(9,28,62,.97),
            rgba(25,17,70,.96));
    border-bottom: 1px solid rgba(114,199,255,.20);
    box-shadow: 0 8px 28px rgba(3,11,27,.18);
}

.brand img {
    background: #081b3c;
    border-color: rgba(255,192,120,.28);
    filter:
        drop-shadow(0 5px 10px rgba(0,0,0,.30))
        drop-shadow(0 0 12px rgba(255,174,69,.12));
}

.main-nav a:hover {
    color: #ffc078;
}

/* Hero */
.hero-section {
    background:
        radial-gradient(circle at 14% 20%, rgba(40,124,255,.20), transparent 28%),
        radial-gradient(circle at 76% 26%, rgba(255,122,50,.14), transparent 22%),
        radial-gradient(circle at 88% 88%, rgba(118,88,255,.22), transparent 32%),
        linear-gradient(125deg, #030b1b 0%, #082452 50%, #171052 100%);
}

.hero-copy h1 span {
    color: #73c9ff;
    text-shadow: 0 0 25px rgba(114,199,255,.16);
}

.hero-subtitle {
    color: #ffc078;
}

.button-primary {
    background: linear-gradient(135deg, #287cff, #7658ff);
    box-shadow: 0 10px 25px rgba(40,124,255,.20);
}

.button-primary:hover {
    background: linear-gradient(135deg, #ff7a32, #ffb347);
}

.art-ring {
    border-color: rgba(114,199,255,.25);
    box-shadow:
        0 0 0 40px rgba(40,124,255,.035),
        0 0 0 80px rgba(118,88,255,.025),
        0 0 65px rgba(255,122,50,.06);
}

/* Quick stats — more colourful instead of a single flat strip */
.quick-stats {
    background:
        linear-gradient(90deg,
            #1769e8 0%,
            #4c63ed 34%,
            #7658ff 66%,
            #d957c8 100%);
}

.quick-stats div:nth-child(2) {
    background: rgba(255,255,255,.035);
}

.quick-stats div:nth-child(3) {
    background: rgba(255,122,50,.10);
}

.quick-stats div:nth-child(4) {
    background: rgba(255,192,120,.08);
}

/* General sections — reduce the large white areas */
.content-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(40,124,255,.07), transparent 25%),
        radial-gradient(circle at 100% 100%, rgba(118,88,255,.06), transparent 25%),
        #edf4ff;
}

.section-heading h2 span {
    color: #287cff;
}

.section-heading p {
    color: #647795;
}

/* Controls */
.switch-buttons,
.season-switch {
    border-color: #c6d7ef;
    background: linear-gradient(135deg, #dceaff, #eee8ff);
    box-shadow: 0 8px 22px rgba(31,72,132,.06);
}

.switch-button,
.season-button {
    color: #506585;
}

.switch-button.active,
.season-button.active {
    background: linear-gradient(135deg, #287cff, #7658ff);
    box-shadow: 0 8px 20px rgba(40,124,255,.25);
}

/* Championship Arena */
.arena-section {
    background:
        radial-gradient(circle at 8% 8%, rgba(40,124,255,.11), transparent 24%),
        radial-gradient(circle at 94% 92%, rgba(255,122,50,.09), transparent 25%),
        linear-gradient(135deg, #f1f7ff, #eaf1ff 55%, #f5efff);
}

.grade-arena-card {
    border-color: #c9d9ee;
    background: linear-gradient(145deg, #f8fbff, #e9f2ff);
    box-shadow: 0 14px 38px rgba(35,76,132,.09);
}

.grade-arena-card:nth-child(2) {
    background: linear-gradient(145deg, #fff9f3, #f1ecff);
}

.grade-arena-card:nth-child(3) {
    background: linear-gradient(145deg, #f1fffa, #edf3ff);
}

.grade-arena-header {
    background: linear-gradient(115deg, #071735, #16498f 58%, #7658ff);
}

.grade-arena-card:nth-child(2) .grade-arena-header {
    background: linear-gradient(115deg, #26134f, #6847a8 55%, #ff7a32);
}

.grade-arena-card:nth-child(3) .grade-arena-header {
    background: linear-gradient(115deg, #063d43, #117a86 55%, #287cff);
}

.arena-match {
    border-color: #d5e1f1;
    background: rgba(255,255,255,.82);
}

.arena-match:hover {
    box-shadow: 0 12px 26px rgba(35,76,132,.12);
}

.arena-team-row.winner {
    color: #1769e8;
    background: linear-gradient(90deg, #e8f3ff, #f2efff);
}

.arena-match-footer {
    background: #edf4fc;
}

.final-card {
    border-color: rgba(255,122,50,.38);
    background:
        radial-gradient(circle at 0% 100%, rgba(255,122,50,.12), transparent 35%),
        linear-gradient(135deg, #fff7ef, #f1edff);
}

/* Fixtures */
.fixtures-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(118,88,255,.10), transparent 23%),
        radial-gradient(circle at 92% 88%, rgba(40,124,255,.10), transparent 25%),
        linear-gradient(135deg, #e9f2ff, #f3efff 55%, #fff4eb);
}

.filters select {
    border-color: #c8d8ed;
    background: rgba(255,255,255,.78);
    box-shadow: 0 6px 16px rgba(35,76,132,.05);
}

.fixture-card {
    border-color: #cbd9ed;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(240,246,255,.94));
}

.fixture-card:nth-child(3n + 2) {
    background: linear-gradient(145deg, #fffaf5, #f4efff);
}

.fixture-card:nth-child(3n + 3) {
    background: linear-gradient(145deg, #f1fffb, #eef4ff);
}

.fixture-header {
    background: linear-gradient(90deg, #081b3c, #3154b9, #7658ff);
}

.fixture-card:nth-child(3n + 2) .fixture-header {
    background: linear-gradient(90deg, #29154b, #7648a6, #ff7a32);
}

.fixture-card:nth-child(3n + 3) .fixture-header {
    background: linear-gradient(90deg, #06434a, #137d89, #287cff);
}

.team-badge {
    color: #1769e8;
    background: linear-gradient(135deg, #dceeff, #ece7ff);
}

.team-badge.orange {
    color: #e75f1f;
    background: linear-gradient(135deg, #ffe8d8, #fff0c9);
}

/* Champions Hall — strongest colour treatment */
.champions-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(40,124,255,.24), transparent 25%),
        radial-gradient(circle at 88% 25%, rgba(255,122,50,.18), transparent 23%),
        radial-gradient(circle at 50% 100%, rgba(118,88,255,.22), transparent 35%),
        linear-gradient(125deg, #030a1c 0%, #0b2450 48%, #21104b 100%);
}

.champions-section::before {
    border-color: rgba(114,199,255,.13);
    box-shadow:
        0 0 0 70px rgba(40,124,255,.025),
        0 0 0 140px rgba(118,88,255,.025),
        0 0 90px rgba(255,122,50,.08);
}

.champion-grade-card {
    border-color: rgba(114,199,255,.20);
    background:
        linear-gradient(145deg,
            rgba(40,124,255,.13),
            rgba(118,88,255,.10) 52%,
            rgba(255,122,50,.06));
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.champion-grade-card:nth-child(2) {
    background:
        linear-gradient(145deg,
            rgba(255,122,50,.13),
            rgba(118,88,255,.10) 55%,
            rgba(40,124,255,.07));
}

.champion-grade-card:nth-child(3) {
    background:
        linear-gradient(145deg,
            rgba(24,183,125,.13),
            rgba(40,124,255,.10) 55%,
            rgba(118,88,255,.08));
}

.champion-grade-header {
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(114,199,255,.06));
    border-bottom-color: rgba(114,199,255,.14);
}

.champion-grade-header h3 {
    text-shadow: 0 3px 15px rgba(40,124,255,.18);
}

.champion-division {
    background: rgba(0,0,0,.06);
}

.champion-division + .champion-division {
    border-top-color: rgba(255,255,255,.11);
}

.champion-division.boys {
    background: linear-gradient(90deg, rgba(40,124,255,.06), transparent);
}

.champion-division.girls {
    background: linear-gradient(90deg, rgba(255,122,50,.07), transparent);
}

.mini-trophy,
.coming-trophy {
    border-radius: 16px;
    background:
        radial-gradient(circle, rgba(255,192,120,.13), transparent 62%);
}

.mini-trophy img,
.coming-trophy img {
    filter:
        drop-shadow(0 8px 14px rgba(0,0,0,.28))
        drop-shadow(0 0 12px rgba(255,174,69,.10));
}

.coming-soon-card {
    border-color: rgba(114,199,255,.20);
    background:
        radial-gradient(circle at 50% 25%, rgba(255,122,50,.10), transparent 25%),
        linear-gradient(145deg, rgba(40,124,255,.11), rgba(118,88,255,.12));
}

.coming-tags span {
    background: rgba(255,255,255,.045);
    border-color: rgba(114,199,255,.14);
}

/* Records */
.records-section {
    background:
        radial-gradient(circle at 5% 10%, rgba(40,124,255,.08), transparent 23%),
        radial-gradient(circle at 95% 90%, rgba(255,122,50,.08), transparent 23%),
        linear-gradient(135deg, #f0f6ff, #edf0ff 55%, #fff4ed);
}

.record-grade-card {
    border-color: #cad9ee;
    background: linear-gradient(145deg, rgba(255,255,255,.94), #edf4ff);
    box-shadow: 0 12px 30px rgba(35,76,132,.07);
}

.record-grade-card:nth-child(2) {
    background: linear-gradient(145deg, #fffaf5, #f3efff);
}

.record-grade-card:nth-child(3) {
    background: linear-gradient(145deg, #f1fffa, #edf4ff);
}

.record-grade-header {
    background: linear-gradient(110deg, #071735, #2850a5, #7658ff);
}

.record-grade-card:nth-child(2) .record-grade-header {
    background: linear-gradient(110deg, #29154b, #7145a4, #ff7a32);
}

.record-grade-card:nth-child(3) .record-grade-header {
    background: linear-gradient(110deg, #06434a, #117c87, #287cff);
}

.record-row {
    border-bottom-color: #dce6f3;
}

.record-row:hover {
    background: rgba(40,124,255,.045);
}

/* Rules */
.rules-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(40,124,255,.12), transparent 24%),
        radial-gradient(circle at 90% 80%, rgba(255,122,50,.10), transparent 25%),
        linear-gradient(135deg, #e9f2ff, #f3efff);
}

.rules-layout {
    background:
        radial-gradient(circle at 10% 10%, rgba(40,124,255,.18), transparent 28%),
        radial-gradient(circle at 90% 90%, rgba(255,122,50,.13), transparent 28%),
        linear-gradient(125deg, #040d20, #102b5b 58%, #2b1655);
    box-shadow: 0 22px 60px rgba(18,42,85,.16);
}

.format-card {
    background: linear-gradient(135deg, rgba(40,124,255,.10), rgba(118,88,255,.08));
    border-color: rgba(114,199,255,.15);
}

.format-flow span,
.format-flow strong {
    background: rgba(255,255,255,.09);
}

/* Footer */
.site-footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(40,124,255,.16), transparent 28%),
        radial-gradient(circle at 85% 100%, rgba(118,88,255,.18), transparent 30%),
        linear-gradient(125deg, #020817, #081b3c 58%, #180e3d);
}

.footer-brand img {
    background: #081b3c;
    border: 1px solid rgba(255,192,120,.18);
}

.footer-column h4 {
    color: #72c7ff;
}

.footer-bottom {
    border-top-color: rgba(114,199,255,.12);
}

/* Modal */
.modal-box {
    background:
        radial-gradient(circle at 100% 0%, rgba(118,88,255,.08), transparent 30%),
        linear-gradient(145deg, #ffffff, #f0f6ff);
    border: 1px solid #d2def0;
}

.modal-badge {
    background: linear-gradient(135deg, #287cff, #7658ff);
}

.modal-info {
    background: linear-gradient(135deg, #eaf3ff, #f2edff);
}

/* Small screens: keep the colour rich without becoming visually heavy */
@media (max-width: 760px) {
    .content-section {
        background:
            radial-gradient(circle at 50% 0%, rgba(40,124,255,.08), transparent 28%),
            linear-gradient(180deg, #eef5ff, #f4efff);
    }

    .arena-section,
    .fixtures-section,
    .records-section,
    .rules-section {
        background:
            radial-gradient(circle at 50% 0%, rgba(40,124,255,.09), transparent 25%),
            linear-gradient(180deg, #edf5ff, #f6f0ff);
    }
}

/* =========================================================
   TYPOGRAPHY BOOST — HEADER / OFFICIAL INFORMATION / FOOTER
   Only font sizes are adjusted; layout and colours remain unchanged.
========================================================= */

/* Header */
.brand-text small {
    font-size: 10px;
}

.brand-text strong {
    font-size: 23px;
}

.main-nav a {
    font-size: 11px;
}

/* Official Information caption — Rules section */
.rules-section .section-caption {
    font-size: 13px;
    letter-spacing: 2.4px;
}

/* Footer */
.footer-brand strong {
    font-size: 27px;
}

.footer-brand span {
    font-size: 10px;
}

.footer-column h4 {
    font-size: 10px;
}

.footer-column a {
    font-size: 11px;
}

.footer-bottom {
    font-size: 9px;
}

@media (max-width: 760px) {
    .brand-text small {
        font-size: 9px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .rules-section .section-caption {
        font-size: 11px;
    }

    .footer-brand strong {
        font-size: 24px;
    }

    .footer-brand span {
        font-size: 9px;
    }

    .footer-column h4 {
        font-size: 9px;
    }

    .footer-column a {
        font-size: 10px;
    }

    .footer-bottom {
        font-size: 8px;
    }
}

/* =========================================================
   17 • LARGE & CLEAR TYPOGRAPHY REFRESH
   CSS ONLY — improves readability across desktop and mobile.
========================================================= */

/* Global readable text */
body {
    font-size: 16px;
}

/* Header */
.brand-text small {
    font-size: 11px;
    letter-spacing: 2px;
}

.brand-text strong {
    font-size: 25px;
}

.main-nav {
    gap: 27px;
}

.main-nav a {
    font-size: 12px;
    letter-spacing: 1.25px;
}

/* Section captions and headings */
.section-caption {
    font-size: 12px;
    letter-spacing: 2.4px;
}

.section-heading p {
    font-size: 15px;
    line-height: 1.75;
}

/* Hero */
.hero-subtitle {
    font-size: 12px;
}

.hero-description {
    font-size: 16px;
}

.button {
    min-height: 52px;
    padding: 0 23px;
    font-size: 11px;
}

.hero-highlights span {
    font-size: 10px;
}

/* Quick statistics */
.quick-stats strong {
    font-size: 42px;
}

.quick-stats span {
    font-size: 10px;
}

/* Controls */
.control-caption {
    font-size: 10px;
}

.switch-button,
.season-button {
    font-size: 11px;
}

/* =========================================================
   CHAMPIONSHIP ARENA — larger card typography
========================================================= */
.grade-arena-header {
    min-height: 100px;
    padding: 22px 24px;
}

.card-caption,
.round-caption,
.final-caption,
.fixture-caption,
.coming-caption {
    font-size: 10px;
    letter-spacing: 1.8px;
}

.grade-arena-header h3 {
    font-size: 40px;
}

.grade-arena-header > span {
    font-size: 10px;
}

.arena-card-body {
    padding: 27px 22px 22px;
}

.round-caption {
    margin-bottom: 13px;
}

.arena-team-row {
    padding: 15px 14px;
    font-size: 14px;
}

.arena-team-row strong {
    font-size: 13px;
}

.arena-match-footer {
    padding: 10px 14px;
    font-size: 9px;
    letter-spacing: .8px;
}

.final-card {
    padding: 21px 17px;
}

.final-teams strong {
    font-size: 14px;
}

.final-teams span {
    font-size: 12px;
}

.final-meta {
    font-size: 9px;
}

/* =========================================================
   FIXTURES & RESULTS — make every important detail readable
========================================================= */
.fixture-header {
    padding: 15px 19px;
    font-size: 10px;
    letter-spacing: 1.15px;
}

.fixture-body {
    padding: 21px 19px;
}

.fixture-caption {
    font-size: 10px;
}

.fixture-date {
    margin-top: 6px;
    font-size: 11px;
}

.fixture-teams {
    margin-top: 20px;
}

.fixture-team {
    gap: 10px;
    font-size: 14px;
}

.team-badge {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
    border-radius: 11px;
    font-size: 12px;
}

.fixture-vs {
    font-size: 13px;
}

.fixture-result {
    margin-top: 20px;
    padding-top: 15px;
}

.fixture-result strong {
    font-size: 21px;
}

.fixture-result span {
    font-size: 9px;
}

/* =========================================================
   CHAMPIONS HALL
========================================================= */
.champion-grade-header {
    padding: 22px 23px;
}

.champion-grade-header h3 {
    font-size: 38px;
}

.champion-grade-header > span {
    font-size: 10px;
}

.champion-division {
    min-height: 110px;
    padding: 21px 22px;
    gap: 17px;
}

.champion-division small {
    font-size: 9px;
}

.champion-division strong {
    font-size: 32px;
}

.mini-trophy {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
}

.coming-caption {
    font-size: 10px;
}

.coming-soon-card h3 {
    font-size: 52px;
}

.coming-soon-card p {
    font-size: 14px;
}

.coming-tags span {
    font-size: 9px;
}

/* =========================================================
   PLAYER RECORDS
========================================================= */
.record-grade-header {
    padding: 21px 22px;
}

.record-grade-header h3 {
    font-size: 32px;
}

.record-title {
    padding: 17px 21px 10px;
    font-size: 9px;
}

.record-row {
    min-height: 52px;
    padding: 10px 21px;
    grid-template-columns: 40px 1fr auto;
    font-size: 12px;
}

.record-row strong {
    font-size: 19px;
}

.record-note {
    padding: 16px 21px;
    font-size: 9px;
}

/* =========================================================
   OFFICIAL INFORMATION / RULES
========================================================= */
.rules-intro p {
    font-size: 12px;
}

.format-card-title {
    font-size: 9px;
}

.format-flow span,
.format-flow strong {
    padding: 9px 11px;
    font-size: 11px;
}

.format-flow b,
.format-flow i {
    font-size: 11px;
}

.rules-list b {
    font-size: 12px;
}

.rules-list span {
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   FOOTER
========================================================= */
.footer-brand strong {
    font-size: 30px;
}

.footer-brand span {
    font-size: 11px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 11px;
}

.footer-column a {
    margin: 10px 0;
    font-size: 12px;
}

.footer-bottom {
    font-size: 10px;
}

/* =========================================================
   MATCH MODAL
========================================================= */
.modal-box h2 {
    font-size: 54px;
}

.modal-team strong {
    font-size: 21px;
}

.modal-team b {
    font-size: 32px;
}

.modal-vs {
    font-size: 15px;
}

.modal-info {
    font-size: 11px;
}

/* =========================================================
   MOBILE — still large enough to read comfortably
========================================================= */
@media (max-width: 760px) {

    .brand-text small {
        font-size: 9px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .section-caption {
        font-size: 11px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .grade-arena-header {
        min-height: 92px;
        padding: 19px 20px;
    }

    .grade-arena-header h3 {
        font-size: 36px;
    }

    .arena-team-row {
        font-size: 13px;
    }

    .arena-match-footer {
        font-size: 9px;
    }

    .fixture-header {
        font-size: 10px;
    }

    .fixture-team {
        font-size: 14px;
    }

    .fixture-result strong {
        font-size: 20px;
    }

    .champion-grade-header h3 {
        font-size: 35px;
    }

    .champion-division strong {
        font-size: 29px;
    }

    .record-grade-header h3 {
        font-size: 30px;
    }

    .record-row {
        font-size: 12px;
    }

    .rules-list span {
        font-size: 12px;
    }

    .footer-brand strong {
        font-size: 27px;
    }

    .footer-column h4 {
        font-size: 10px;
    }

    .footer-column a {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 9px;
    }
}

@media (max-width: 430px) {

    .brand-text strong {
        font-size: 19px;
    }

    .grade-arena-header h3 {
        font-size: 33px;
    }

    .arena-team-row {
        font-size: 13px;
    }

    .fixture-team {
        font-size: 13px;
    }

    .fixture-result strong {
        font-size: 19px;
    }

    .champion-division strong {
        font-size: 27px;
    }

    .rules-list span {
        font-size: 11px;
    }
}
