:root {
    --bg: #070b11;
    --bg-soft: #0d131d;
    --card: #111925;
    --card-2: #151f2d;
    --line: rgba(255,255,255,.09);
    --text: #f7f8fa;
    --muted: #94a0af;
    --red: #ed3024;
    --red-dark: #a91c17;
    --green: #32d583;
    --yellow: #f5c451;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% -10%, #17283d 0, transparent 34%),
        var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

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

button {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,11,17,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.5px;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--red), #7f1714);
    font-size: 13px;
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    color: #c9d0da;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:hover {
    color: white;
}

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

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font-weight: 800;
    color: var(--text);
    cursor: pointer;
}

.btn-dark {
    background: rgba(255,255,255,.04);
}

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

.btn-primary:hover {
    background: #ff3d31;
}

.hero {
    padding: 90px 0 60px;
    text-align: center;
}

.eyebrow {
    color: var(--red);
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;
    margin: 18px auto;
    font-size: clamp(52px, 8vw, 104px);
    line-height: .88;
    letter-spacing: -5px;
}

.hero h1 span {
    color: var(--red);
}

.hero-text {
    max-width: 730px;
    margin: 26px auto 0;
    color: #b2bdca;
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta {
    margin: 35px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: #d5dae1;
    font-size: 13px;
    font-weight: 700;
}

.section {
    padding: 75px 0;
}

.section-soft {
    background: rgba(255,255,255,.018);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.section-kicker {
    color: var(--red);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 900;
}

.section h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin: 8px 0 0;
    letter-spacing: -2px;
}

.section-description {
    color: var(--muted);
    line-height: 1.7;
    max-width: 650px;
}

.progress-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, var(--card), #0b1119);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    margin-bottom: 12px;
}

.progress-bar {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.progress-value {
    width: 0%;
    height: 100%;
    background: var(--red);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.league-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
    background: var(--card);
}

.league-table th,
.league-table td {
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.league-table th {
    color: #778494;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #0c121b;
}

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

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

.slot {
    color: var(--muted);
    font-weight: 800;
}

.slot-plus {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    margin-right: 10px;
    background: rgba(237,48,36,.12);
    color: var(--red);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
}

.about-card,
.info-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
}

.about-card p {
    color: #adb8c6;
    line-height: 1.85;
    font-size: 16px;
}

.about-date {
    font-size: 46px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -2px;
}

.about-date small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
}

.match-demo {
    margin-top: 22px;
    padding: 20px;
    border-radius: 14px;
    background: #0b1119;
    border: 1px solid var(--line);
}

.match-clubs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 900;
    font-size: 18px;
}

.match-time {
    margin: 18px 0;
    color: var(--muted);
    font-size: 14px;
}

.request {
    padding: 16px;
    border-radius: 12px;
    background: rgba(245,196,81,.07);
    border: 1px solid rgba(245,196,81,.2);
}

.request strong {
    color: var(--yellow);
}

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

.ranking-card {
    min-height: 270px;
    background: linear-gradient(155deg, var(--card-2), #0c121b);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.ranking-title {
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.ranking-icon {
    font-size: 23px;
}

.ranking-title h3 {
    margin: 12px 0 3px;
    font-size: 18px;
}

.ranking-title small {
    color: var(--muted);
}

.ranking-empty {
    min-height: 150px;
    padding: 25px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #788596;
    font-size: 14px;
    line-height: 1.6;
}

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

.prize {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--card);
}

.prize span {
    font-size: 30px;
}

.prize strong {
    margin-top: 18px;
    font-size: 15px;
}

.prize small {
    margin-top: 5px;
    color: var(--muted);
}

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

.feature {
    padding: 26px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--line);
}

.feature-number {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.feature h3 {
    margin: 14px 0 8px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cta {
    margin: 65px auto;
    padding: 50px;
    border: 1px solid rgba(237,48,36,.25);
    border-radius: 24px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 100%, rgba(237,48,36,.18), transparent 50%),
        var(--card);
}

.cta h2 {
    margin: 0;
    font-size: clamp(35px, 5vw, 60px);
}

.cta p {
    color: var(--muted);
    max-width: 600px;
    margin: 18px auto 28px;
    line-height: 1.7;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 35px 0;
    color: #6f7b89;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

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

    .nav-actions {
        margin-left: auto;
    }

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

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

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

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

    .hero {
        padding-top: 65px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .nav-actions .btn-dark {
        display: none;
    }

    .rankings,
    .prize-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .cta {
        padding: 35px 20px;
    }

    .footer-inner {
        flex-direction: column;
    }
}

/* GNE_GNE_BUTTON_COLOR_FIX */
.btn {
    color: var(--text);
}