:root {
    --black: #050505;
    --black-panel: #0f0d08;
    --black-soft: #17130b;
    --gold: #d6a83a;
    --gold-bright: #ffdc75;
    --gold-soft: rgba(214, 168, 58, 0.22);
    --line: rgba(255, 220, 117, 0.18);
    --white: #fff9ea;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

body.is-loading {
    overflow: hidden;
}

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

button {
    font: inherit;
}

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

.home-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 220, 117, 0.08) 0 1px, transparent 1px 32px),
        linear-gradient(180deg, #060606 0%, #100d07 52%, #050505 100%);
}

body.is-loading .home-page {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
}

body.page-ready .home-page {
    animation: homeReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050816;
    transition: opacity 0.65s ease, visibility 0.65s ease, background 0.7s ease;
}

#loader-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 70px);
    opacity: 0;
    transform: translateX(-18%);
    animation: loaderSweep 2.4s linear infinite;
    transition: opacity 0.55s ease;
}

#loader-wrapper.loader-gold::before {
    opacity: 0.38;
}

#loader-wrapper.loader-gold {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 220, 117, 0.24), transparent 34%),
        linear-gradient(135deg, #050505 0%, #171006 52%, #030303 100%);
}

#loader-wrapper.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: loaderPulse 1.8s ease-in-out infinite;
    transition: filter 0.55s ease, transform 0.55s ease;
}

#loader-wrapper.loader-gold .loader-logo {
    filter:
        drop-shadow(0 0 18px rgba(255, 220, 117, 0.52))
        drop-shadow(0 20px 36px rgba(0, 0, 0, 0.65));
    transform: scale(1.04);
}

.loader-title {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow:
        0 0 12px #ff00cc,
        0 0 25px #3333ff;
    transition: color 0.55s ease, text-shadow 0.55s ease;
}

#loader-wrapper.loader-gold .loader-title {
    color: var(--gold-bright);
    text-shadow:
        0 0 18px rgba(255, 220, 117, 0.58),
        0 0 36px rgba(214, 168, 58, 0.42);
}

.loader-spinner {
    width: 70px;
    height: 70px;
    margin: auto;
    border: 4px solid rgba(255, 255, 255, 0.08);
    border-top-color: #ff00cc;
    border-right-color: #3333ff;
    border-radius: 50%;
    box-shadow: none;
    animation: loaderSpin 0.95s linear infinite;
    transition: border-color 0.55s ease, box-shadow 0.55s ease;
}

#loader-wrapper.loader-gold .loader-spinner {
    border-top-color: var(--gold-bright);
    border-right-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 220, 117, 0.24);
}

.loader-text {
    margin-top: 25px;
    color: #d1d5db;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.55s ease, text-shadow 0.55s ease;
}

#loader-wrapper.loader-gold .loader-text {
    color: var(--gold-bright);
    text-shadow: 0 0 16px rgba(255, 220, 117, 0.42);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 28px clamp(18px, 4vw, 64px) 40px;
    overflow: hidden;
    isolation: isolate;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.78)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.92));
    box-shadow:
        inset 0 0 120px rgba(0, 0, 0, 0.66),
        inset 0 -120px 120px rgba(0, 0, 0, 0.8);
}

.hero-shade::before,
.hero-shade::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-shade::before {
    inset: -18%;
    background:
        radial-gradient(ellipse at 18% 26%, rgba(255, 220, 117, 0.14), transparent 30%),
        radial-gradient(ellipse at 78% 42%, rgba(214, 168, 58, 0.11), transparent 34%),
        linear-gradient(118deg, transparent 0 44%, rgba(255, 220, 117, 0.08) 50%, transparent 57%);
    opacity: 0.72;
    filter: blur(1px);
    transform: translate3d(-1.5%, -1%, 0) scale(1.02);
    animation: heroGlowDrift 14s ease-in-out infinite alternate;
}

.hero-shade::after {
    inset: 0;
    background:
        repeating-linear-gradient(100deg, transparent 0 92px, rgba(255, 220, 117, 0.08) 93px, transparent 95px),
        linear-gradient(90deg, transparent, rgba(255, 220, 117, 0.10), transparent);
    opacity: 0.12;
    transform: translateX(-8%);
    animation: heroLineDrift 18s linear infinite;
}

.topbar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    min-width: 138px;
}

.brand-lockup img {
    width: clamp(118px, 13vw, 180px);
    filter:
        drop-shadow(0 10px 24px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 16px rgba(255, 220, 117, 0.32));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.68);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.main-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: rgba(255, 249, 234, 0.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(214, 168, 58, 0.18);
    color: var(--gold-bright);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 220, 117, 0.32);
    border-radius: 14px;
    background: rgba(5, 5, 5, 0.72);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-bright);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(30px, 5vw, 74px);
    align-items: center;
    margin-top: clamp(42px, 8vh, 92px);
}

.hero-content {
    min-width: 0;
}

.event-kicker,
.section-kicker {
    margin: 0 0 16px;
    color: var(--gold-bright);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(214, 168, 58, 0.35);
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow:
        0 4px 0 rgba(0, 0, 0, 0.36),
        0 0 28px rgba(255, 220, 117, 0.26),
        0 30px 70px rgba(0, 0, 0, 0.72);
}

.hero-copy {
    margin: 22px 0 0;
    color: rgba(255, 249, 234, 0.78);
    font-size: clamp(17px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

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

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-action {
    background: linear-gradient(135deg, #c98c1d, #ffdc77 48%, #986412);
    color: #120c02;
    box-shadow: 0 16px 34px rgba(214, 168, 58, 0.28);
}

.secondary-action {
    border: 1px solid rgba(255, 220, 117, 0.32);
    background: rgba(7, 7, 7, 0.62);
    color: var(--gold-bright);
}

.primary-action:hover,
.secondary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(214, 168, 58, 0.24);
}

.hero-poster {
    min-width: 0;
}

.poster-slider {
    position: relative;
    min-width: 0;
}

.poster-track {
    position: relative;
    aspect-ratio: 5906 / 2953;
    padding: clamp(10px, 1.4vw, 18px);
    border: 1px solid rgba(255, 220, 117, 0.34);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 220, 117, 0.12), transparent 32%),
        rgba(8, 7, 4, 0.88);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.58),
        0 0 46px rgba(214, 168, 58, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.poster-slide {
    display: none;
    height: 100%;
}

.poster-slide.is-active {
    display: grid;
    animation: posterReveal 0.75s ease both;
}

.poster-slide img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 16px;
    background: #050505;
    box-shadow: inset 0 0 0 1px rgba(255, 220, 117, 0.18);
}

.promo-poster-slide {
    min-height: 0;
}

.poster-promo-card {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    overflow: hidden;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 16px;
    background:
        radial-gradient(circle at 78% 34%, rgba(255, 220, 117, 0.20), transparent 31%),
        linear-gradient(135deg, rgba(255, 220, 117, 0.15), transparent 34%),
        linear-gradient(315deg, rgba(214, 168, 58, 0.16), transparent 38%),
        rgba(5, 5, 5, 0.94);
    box-shadow: inset 0 0 0 1px rgba(255, 220, 117, 0.18);
}

.poster-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 0%, rgba(255, 220, 117, 0.12) 45%, transparent 58%);
    transform: translateX(-120%);
    animation: railShine 3.8s ease-in-out infinite;
}

.poster-promo-copy,
.poster-promo-jersey {
    position: relative;
    z-index: 1;
}

.promo-kicker {
    display: inline-flex;
    margin: 0 0 14px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 220, 117, 0.28);
    border-radius: 999px;
    color: var(--gold-bright);
    background: rgba(0, 0, 0, 0.28);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.poster-promo-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow:
        0 0 22px rgba(255, 220, 117, 0.30),
        0 18px 46px rgba(0, 0, 0, 0.56);
}

.promo-date-box {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 220, 117, 0.18);
    border-radius: 14px;
    background: rgba(255, 220, 117, 0.08);
}

.promo-date-box span {
    display: block;
    color: rgba(255, 249, 234, 0.64);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.promo-date-box strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: clamp(14px, 1.7vw, 20px);
    font-weight: 900;
}

.promo-prize {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-left: 4px solid var(--gold-bright);
    border-radius: 13px;
    background: rgba(255, 220, 117, 0.10);
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 800;
}

.promo-note {
    margin: 12px 0 0;
    color: rgba(255, 249, 234, 0.72);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
}

.poster-promo-jersey {
    display: grid;
    place-items: center;
    min-width: 0;
}

.poster-promo-jersey img {
    width: min(100%, 320px);
    max-height: 340px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter:
        drop-shadow(0 26px 34px rgba(0, 0, 0, 0.54))
        drop-shadow(0 0 24px rgba(255, 220, 117, 0.28));
    animation: jerseyFloat 3s ease-in-out infinite;
}

.poster-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.poster-slider.single-slide .poster-controls {
    display: none;
}

.poster-dot {
    width: 36px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 220, 117, 0.22);
    cursor: pointer;
}

.poster-dot.is-active {
    background: var(--gold-bright);
    box-shadow: 0 0 14px rgba(255, 220, 117, 0.44);
}

.game-strip {
    margin-top: clamp(36px, 7vh, 70px);
}

.video-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 64px);
    background:
        linear-gradient(135deg, rgba(255, 220, 117, 0.07) 0 1px, transparent 1px 34px),
        linear-gradient(180deg, #060606 0%, #120f08 100%);
    border-top: 1px solid rgba(255, 220, 117, 0.16);
}

.video-copy h2 {
    margin: 0;
    max-width: 560px;
    color: #fff;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.04;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 22px 56px rgba(0, 0, 0, 0.72);
}

.video-frame {
    padding: clamp(10px, 1.4vw, 18px);
    border: 1px solid rgba(255, 220, 117, 0.34);
    border-radius: 24px;
    background: rgba(8, 7, 4, 0.88);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.58),
        0 0 46px rgba(214, 168, 58, 0.15);
}

.video-frame video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
    background: #000;
}

.participants-section {
    padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 64px);
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 220, 117, 0.10), transparent 30%),
        linear-gradient(135deg, rgba(255, 220, 117, 0.06) 0 1px, transparent 1px 34px),
        linear-gradient(180deg, #120f08 0%, #050505 100%);
    border-top: 1px solid rgba(255, 220, 117, 0.16);
}

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

.participants-header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow:
        0 0 22px rgba(255, 220, 117, 0.24),
        0 22px 56px rgba(0, 0, 0, 0.70);
}

.participant-count {
    min-width: 146px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 220, 117, 0.30);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 220, 117, 0.14), transparent 44%),
        rgba(8, 7, 4, 0.88);
    text-align: right;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.participant-count span {
    display: block;
    color: rgba(255, 249, 234, 0.62);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.participant-count strong {
    display: block;
    margin-top: 6px;
    color: var(--gold-bright);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.participant-matrix {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.matrix-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 220, 117, 0.22);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 220, 117, 0.11), transparent 34%),
        rgba(8, 7, 4, 0.82);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.matrix-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 220, 117, 0.12) 46%, transparent 60%);
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity 0.25s ease;
}

.matrix-card:hover,
.matrix-card:focus-visible {
    border-color: rgba(255, 220, 117, 0.48);
    background:
        linear-gradient(145deg, rgba(255, 220, 117, 0.18), transparent 38%),
        rgba(12, 10, 6, 0.92);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(214, 168, 58, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.matrix-card:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

.matrix-card:hover::after,
.matrix-card:focus-visible::after {
    animation: railShine 0.95s ease-out both;
}

.matrix-game {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 220, 117, 0.12);
}

.matrix-game img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    padding: 8px;
}

.matrix-game h3 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.matrix-game span {
    display: block;
    margin-top: 4px;
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.matrix-departments {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 14px 16px 16px;
}

.matrix-department {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 220, 117, 0.10);
    border-radius: 12px;
    background: rgba(255, 220, 117, 0.055);
}

.matrix-department span {
    min-width: 0;
    color: rgba(255, 249, 234, 0.70);
    font-size: 11px;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.matrix-department strong {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

.matrix-detail-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-height: 42px;
    margin: 0 16px 16px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 220, 117, 0.36);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 220, 117, 0.92), rgba(199, 142, 30, 0.92)),
        rgba(214, 168, 58, 0.24);
    color: #080704;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 12px 28px rgba(214, 168, 58, 0.18);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.matrix-card:hover .matrix-detail-button,
.matrix-card:focus-visible .matrix-detail-button {
    border-color: rgba(255, 249, 234, 0.66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 16px 34px rgba(255, 220, 117, 0.24);
    transform: translateY(-1px);
}

.participant-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.26fr) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 220, 117, 0.18);
    border-radius: 20px;
    background: rgba(8, 7, 4, 0.72);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.30);
}

.participant-list-anchor {
    position: relative;
    top: -18px;
    height: 1px;
}

.game-logo-filter {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 10px;
}

.game-filter-card {
    position: relative;
    min-width: 0;
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 220, 117, 0.14);
    border-radius: 16px;
    background: rgba(5, 5, 5, 0.46);
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.game-filter-card:hover,
.game-filter-card.is-active {
    border-color: rgba(255, 220, 117, 0.52);
    background:
        linear-gradient(135deg, rgba(255, 220, 117, 0.14), transparent 50%),
        rgba(5, 5, 5, 0.68);
    box-shadow: 0 16px 32px rgba(214, 168, 58, 0.12);
    transform: translateY(-2px);
}

.game-filter-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.game-filter-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 220, 117, 0.18);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.30);
}

.game-filter-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.game-filter-text {
    min-width: 0;
}

.game-filter-text strong {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 900;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.game-filter-text small {
    display: block;
    margin-top: 5px;
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.participant-filter label {
    display: grid;
    gap: 8px;
    margin: 0;
}

.participant-filter label span {
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.participant-filter select {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 220, 117, 0.22);
    border-radius: 14px;
    background: #090806;
    color: var(--white);
    padding: 0 42px 0 14px;
    font-weight: 800;
    outline: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%),
        linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%);
    background-position:
        calc(100% - 21px) 21px,
        calc(100% - 15px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.participant-filter select:focus {
    border-color: rgba(255, 220, 117, 0.58);
    box-shadow: 0 0 0 3px rgba(214, 168, 58, 0.16);
}

.participant-filter select option {
    background: #090806;
    color: #fff;
}

.participant-filter-actions {
    display: flex;
    gap: 10px;
}

.participant-filter-actions button,
.participant-filter-actions a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.participant-filter-actions button {
    border: 0;
    background: linear-gradient(135deg, #c98c1d, #ffdc77 48%, #986412);
    color: #120c02;
    cursor: pointer;
}

.participant-filter-actions a {
    border: 1px solid rgba(255, 220, 117, 0.24);
    background: rgba(7, 7, 7, 0.56);
    color: var(--gold-bright);
}

.participant-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 220, 117, 0.24);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 220, 117, 0.08), transparent 32%),
        rgba(8, 7, 4, 0.86);
    box-shadow:
        0 28px 76px rgba(0, 0, 0, 0.46),
        0 0 34px rgba(214, 168, 58, 0.10);
}

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

.participant-table th {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 220, 117, 0.18);
    color: var(--gold-bright);
    background: rgba(255, 220, 117, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: left;
    text-transform: uppercase;
}

.participant-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 220, 117, 0.10);
    color: #fff;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 800;
    text-transform: uppercase;
}

.participant-table td:last-child {
    color: rgba(255, 249, 234, 0.70);
    font-size: clamp(13px, 1.2vw, 16px);
    letter-spacing: 1px;
}

.participant-table tr:last-child td {
    border-bottom: 0;
}

.participant-table tbody tr {
    transition: background 0.2s ease, transform 0.2s ease;
}

.participant-table tbody tr:hover {
    background: rgba(255, 220, 117, 0.07);
}

.participant-empty {
    padding: 34px 22px;
    color: rgba(255, 249, 234, 0.72);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

@keyframes homeReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.99);
        filter: brightness(0.85);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

@keyframes loaderSweep {
    to {
        transform: translateX(18%);
    }
}

@keyframes heroGlowDrift {
    from {
        transform: translate3d(-1.5%, -1%, 0) scale(1.02);
    }

    to {
        transform: translate3d(1.5%, 1%, 0) scale(1.05);
    }
}

@keyframes heroLineDrift {
    to {
        transform: translateX(8%);
    }
}

@keyframes railShine {
    0% {
        opacity: 0;
        transform: translateX(-120%);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(120%);
    }
}

@keyframes posterReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jerseyFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 980px) {
    .hero-layout,
    .video-section {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        margin-top: 34px;
    }

    .hero-poster {
        order: -1;
    }

    .poster-slide img {
        max-height: none;
    }

    .poster-promo-card {
        grid-template-columns: 1fr;
    }

    .poster-promo-jersey {
        order: -1;
    }

    .poster-promo-jersey img {
        max-height: 220px;
    }

    .participant-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .participant-filter {
        grid-template-columns: 1fr;
    }

    .game-logo-filter {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }

    .participant-filter-actions {
        width: 100%;
    }

    .participant-filter-actions button,
    .participant-filter-actions a {
        flex: 1;
    }
}

@media (max-width: 760px) {
    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        padding: 18px 16px 28px;
    }

    .topbar {
        align-items: center;
    }

    .brand-lockup img {
        width: 122px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 18px;
        background: rgba(5, 5, 5, 0.94);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 16px;
        text-align: center;
    }

    .event-kicker,
    .section-kicker {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 14vw, 68px);
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions {
        width: 100%;
    }

    .primary-action,
    .secondary-action {
        width: 100%;
    }

    .poster-track {
        aspect-ratio: auto;
    }

    .poster-slide {
        min-height: 0;
    }

    .poster-slide.is-active {
        min-height: auto;
    }

    .poster-slide img {
        height: auto;
        max-height: none;
    }

    .poster-promo-card {
        height: auto;
        min-height: 0;
        gap: 14px;
        align-items: start;
    }

    .poster-promo-jersey img {
        width: 100%;
        max-width: 360px;
        max-height: none;
    }

    .poster-promo-copy h2 {
        font-size: 26px;
    }

    .promo-date-box {
        margin-top: 12px;
    }

    .video-section {
        padding: 46px 16px;
    }

    .participants-section {
        padding: 46px 16px;
    }

    .participants-header {
        align-items: stretch;
        flex-direction: column;
    }

    .participant-count {
        text-align: left;
    }

    .participant-matrix {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(270px, 86vw);
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 8px;
        overscroll-behavior-x: contain;
        scrollbar-color: var(--gold) rgba(255, 255, 255, 0.08);
    }

    .game-logo-filter {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 82vw);
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 6px;
        overscroll-behavior-x: contain;
    }

    .game-filter-card {
        min-height: 82px;
    }

    .participant-table th,
    .participant-table td {
        padding: 16px;
    }

    .participant-table thead {
        display: none;
    }

    .participant-table,
    .participant-table tbody,
    .participant-table tr,
    .participant-table td {
        display: block;
        width: 100%;
    }

    .participant-table tr {
        padding: 16px;
        border-bottom: 1px solid rgba(255, 220, 117, 0.12);
    }

    .participant-table tr:last-child {
        border-bottom: 0;
    }

    .participant-table td {
        padding: 0;
        border-bottom: 0;
    }

    .participant-table td:first-child {
        font-size: 18px;
        line-height: 1.22;
    }

    .participant-table td:last-child {
        margin-top: 7px;
        color: var(--gold-bright);
        font-size: 11px;
        letter-spacing: 1.6px;
    }

}

@media (max-width: 430px) {
    .poster-track,
    .video-frame {
        padding: 8px;
        border-radius: 18px;
    }

    .poster-slide img,
    .video-frame video,
    .poster-promo-card {
        border-radius: 12px;
    }

    .poster-promo-card {
        padding: 18px;
    }

    .promo-prize,
    .promo-note {
        font-size: 12px;
    }

}
