:root {
    --green: #00a651;
    --green-dark: #007a3d;
    --yellow: #ffd700;
    --yellow-dark: #e5b800;
    --blue: #003087;
    --blue-dark: #001b4d;
    --blue-soft: #0a47b7;
    --white: #ffffff;
    --black: #07111f;
    --gray-50: #f8fafc;
    --gray-100: #eef2f7;
    --gray-200: #dbe3ee;
    --gray-500: #64748b;
    --gray-700: #334155;
    --shadow: 0 24px 70px rgba(0, 24, 72, 0.18);
    --radius: 24px;
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--gray-50);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 48, 135, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    color: var(--blue);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.22);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    font-size: 0.92rem;
    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-countdown {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--white);
    line-height: 1.1;
}

.countdown-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.68);
}

.header-countdown strong {
    color: var(--yellow);
    font-size: 0.95rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    transition: 0.22s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), #ffb800);
    color: var(--blue-dark);
    box-shadow: 0 18px 38px rgba(255, 215, 0, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(255, 215, 0, 0.36);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.20);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-large {
    min-height: 58px;
    padding: 0 28px;
    font-size: 1rem;
}

.mobile-menu-button {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.2rem;
    display: none;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 0 16px 18px;
    background: var(--blue);
}

.mobile-nav.active {
    display: grid;
    gap: 10px;
}

.mobile-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(0, 166, 81, 0.38), transparent 34%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.32), transparent 26%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--white);
}

.hero-bg-ball {
    position: absolute;
    right: -110px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.12) 46%, rgba(255, 255, 255, 0.12) 54%, transparent 55%),
        radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
    opacity: 0.45;
}

.hero-bg-glow {
    position: absolute;
    left: 50%;
    top: 30%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    background: rgba(0, 166, 81, 0.25);
    filter: blur(80px);
    border-radius: 999px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.58fr);
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-content h1 {
    max-width: 820px;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 8vw, 7.2rem);
    line-height: 0.88;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-description {
    max-width: 720px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-row {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-row div {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 800;
}

.trust-row i {
    color: var(--yellow);
}

.hero-card {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(22px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--yellow);
    font-weight: 900;
    margin-bottom: 20px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.countdown-grid div {
    min-height: 96px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.countdown-grid strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--yellow);
    line-height: 1;
}

.countdown-grid span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 900;
}

.match-date-card,
.hero-prize-preview {
    margin-top: 16px;
    padding: 20px;
    border-radius: 22px;
    background: var(--white);
    color: var(--blue-dark);
}

.match-date-card span,
.hero-prize-preview span {
    display: block;
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.match-date-card strong,
.hero-prize-preview strong {
    display: block;
    margin-top: 4px;
    font-size: 1.35rem;
    font-weight: 900;
}

.match-date-card small,
.hero-prize-preview small {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
    font-weight: 700;
}

.hero-prize-preview {
    background: linear-gradient(135deg, var(--yellow), #ffbd2f);
}

.hero-prize-preview span,
.hero-prize-preview small {
    color: rgba(0, 27, 77, 0.70);
}

.hero-prize-preview strong {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.stats-section {
    position: relative;
    margin-top: -42px;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.stat-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(0, 166, 81, 0.10);
    color: var(--green);
    margin-bottom: 16px;
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--blue);
}

.stat-card span:last-child {
    color: var(--gray-500);
    font-weight: 800;
    font-size: 0.92rem;
}

.section {
    padding: 96px 0;
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(0, 166, 81, 0.24), transparent 34%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--white);
}

.section-rules {
    background:
        radial-gradient(circle at 70% 0%, rgba(255, 215, 0, 0.20), transparent 25%),
        linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading span {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 1000;
}

.section-heading h2 {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--blue);
}

.section-heading p {
    margin-top: 16px;
    color: var(--gray-500);
    font-size: 1.02rem;
}

.section-heading.light span {
    color: var(--yellow);
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.step-number {
    position: absolute;
    right: 24px;
    top: 18px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(0, 48, 135, 0.07);
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--blue-soft));
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.step-card h3 {
    font-size: 1.28rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-500);
    font-weight: 600;
}

.points-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: stretch;
}

.points-table-card {
    overflow: hidden;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.points-table {
    width: 100%;
    border-collapse: collapse;
}

.points-table thead {
    background: var(--yellow);
    color: var(--blue-dark);
}

.points-table th {
    padding: 20px;
    text-align: left;
    font-weight: 1000;
}

.points-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--blue-dark);
}

.points-table tr:last-child td {
    border-bottom: 0;
}

.points-table td strong {
    display: block;
    font-size: 1rem;
}

.points-table td span {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 0.92rem;
    font-weight: 600;
}

.points-table td:last-child {
    text-align: right;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--green);
    white-space: nowrap;
}

.points-highlight-card {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--green), #05c967);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0, 166, 81, 0.24);
}

.points-highlight-card > i {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: var(--yellow);
    color: var(--blue-dark);
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.points-highlight-card h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0.92;
}

.points-highlight-card p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.bonus-box {
    margin-top: 28px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.bonus-box strong,
.bonus-box span {
    display: block;
}

.bonus-box strong {
    margin-bottom: 10px;
    color: var(--yellow);
}

.bonus-box span {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.86);
}

.prize-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.prize-summary-card {
    padding: 28px;
    border-radius: 30px;
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow);
}

.prize-summary-top {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 16px;
}

.prize-summary-top span,
.prize-summary-row span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
}

.prize-summary-top strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1;
    color: var(--yellow);
}

.prize-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.prize-summary-row:last-child {
    border-bottom: 0;
}

.prize-summary-row strong {
    color: var(--white);
}

.prize-summary-row.highlight {
    margin-top: 8px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 215, 0, 0.12);
    border-bottom: 0;
}

.prize-summary-row.highlight strong {
    color: var(--yellow);
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: end;
}

.podium-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    text-align: center;
    overflow: hidden;
}

.podium-card.first {
    min-height: 330px;
    background: linear-gradient(135deg, var(--yellow), #fff1a6);
}

.podium-card.second {
    min-height: 285px;
}

.podium-card.third {
    min-height: 245px;
}

.podium-position {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(0, 48, 135, 0.10);
    line-height: 1;
}

.podium-card i {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-size: 1.6rem;
}

.podium-card.first i {
    background: var(--blue);
    color: var(--yellow);
}

.podium-card strong {
    display: block;
    font-family: var(--font-display);
    color: var(--blue);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1;
}

.podium-card span:last-child {
    display: block;
    margin-top: 12px;
    color: var(--gray-500);
    font-weight: 900;
}

.formula-card {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(0, 166, 81, 0.09);
    border: 1px solid rgba(0, 166, 81, 0.16);
    color: var(--gray-700);
    font-weight: 700;
}

.formula-card strong {
    color: var(--green-dark);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rule-card {
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.rule-card i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--yellow);
    color: var(--blue-dark);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.rule-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.rule-card p {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 650;
}

.final-cta-card {
    margin-top: 30px;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--white);
    color: var(--blue-dark);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.final-cta-card span {
    color: var(--green);
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.final-cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.95;
    margin-top: 8px;
}

.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-container {
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.6fr;
    gap: 30px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 18px;
}

.site-footer p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.70);
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: 0.2s ease;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--blue-dark);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
    }

    .hero-container,
    .points-layout,
    .prize-layout {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 560px;
    }

    .stats-grid,
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .podium-grid {
        align-items: stretch;
    }
}

@media (max-width: 760px) {
    .header-countdown,
    .header-actions .btn-outline {
        display: none;
    }

    .header-container {
        min-height: 72px;
    }

    .logo-text {
        font-size: 1.65rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .hero-section {
        padding: 62px 0 64px;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 17vw, 5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        margin-top: -26px;
    }

    .stats-grid,
    .steps-grid,
    .rules-grid,
    .podium-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .points-table-card {
        overflow-x: auto;
    }

    .points-table {
        min-width: 660px;
    }

    .prize-summary-card,
    .podium-card,
    .step-card,
    .rule-card,
    .hero-card {
        border-radius: 24px;
    }

    .final-cta-card {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-social {
        justify-content: flex-start;
    }
}