* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg:#08111f;
    --bg2:#101b2f;
    --card:rgba(255,255,255,0.08);
    --line:rgba(255,255,255,0.12);
    --text:#ffffff;
    --muted:rgba(255,255,255,0.72);
    --accent:#4dff9c;
    --accent2:#00d084;
    --shadow:0 30px 80px rgba(0,0,0,0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(77,255,156,0.08), transparent 35%),
        linear-gradient(180deg, #050d18 0%, #0c1524 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

.container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    padding: 18px 0;
    transition: .3s ease;
}

.site-header.scrolled {
    background: rgba(5,13,24,0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    font-size: 1.15rem;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #08111f;
    font-size: 1.2rem;
    box-shadow: 0 12px 35px rgba(77,255,156,0.35);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--accent);
    transition:.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width:100%;
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

/* HERO */
.hero,
.page-hero {
    position: relative;
    background-image:
        linear-gradient(rgba(5,10,18,0.58), rgba(5,10,18,0.9)),
        url('/assets/images/hero.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.page-hero {
    padding: 170px 0 80px;
}

.hero::before,
.page-hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 75% 30%, rgba(77,255,156,0.16), transparent 22%);
}

.hero-content,
.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 90px;
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(77,255,156,0.12);
    border: 1px solid rgba(77,255,156,0.24);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 22px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--accent);
    display: block;
}

.hero p,
.page-hero p {
    max-width: 700px;
    font-size: 1.12rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 16px;
    font-weight: 800;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #08111f;
    box-shadow: 0 14px 40px rgba(77,255,156,0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
}

/* MATCH CARD */
.match-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.match-badge {
    display: inline-block;
    margin-bottom: 20px;
    font-size: .78rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .08em;
}

.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.team {
    text-align: center;
    flex: 1;
    font-weight: 700;
}

.team-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
}

.versus {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

.match-meta {
    margin-top: 24px;
    text-align: center;
    color: var(--muted);
}

/* CONTENT */
.highlights,
.content-section {
    padding: 90px 0;
}

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

.glass-card {
    padding: 30px;
    border-radius: 26px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transition: .25s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77,255,156,0.35);
}

.glass-card h2,
.glass-card h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.glass-card p {
    color: var(--muted);
}

/* FOOTER */
.site-footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-grid h3 {
    margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li {
    color: var(--muted);
    list-style: none;
    margin-bottom: 8px;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: rgba(255,255,255,0.55);
}

/* MOBILE */
@media (max-width: 980px) {
    .hero-content,
    .cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: fixed;
        top: 84px;
        right: 20px;
        width: 280px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(8,17,31,0.96);
        border: 1px solid var(--line);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 140px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3rem;
    }
}