@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET & VARS ──────────────────────────────────── */

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

:root {
    --black:      #060606;
    --surface:    #0f0f0f;
    --card:       #141414;
    --border:     #1e1e1e;
    --white:      #ffffff;
    --muted:      #4a4a4a;
    --dim:        #888;
    --accent:     #c8ff00;
    --accent-dim: rgba(200,255,0,0.10);
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── NAV ───────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 64px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6,6,6,.94);
    border-bottom: 1px solid var(--border);
    transition: background .3s, border-color .3s, backdrop-filter .3s;
}

.nav.scrolled {
    background: rgba(6,6,6,.96);
    backdrop-filter: blur(14px);
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 21px;
    letter-spacing: .12em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dim);
    transition: color .2s;
}

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

.nav-links .cta a {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 7px 18px;
    transition: background .2s, color .2s;
}

.nav-links .cta a:hover {
    background: var(--accent);
    color: var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 201;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform .3s, opacity .3s;
}

.nav.open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .hamburger span:nth-child(2) { opacity: 0; }
.nav.open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ───────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: opacity .2s, transform .15s, background .2s, color .2s;
}

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

.btn-accent {
    padding: 15px 34px;
    background: var(--accent);
    color: var(--black);
}

.btn-accent:hover { opacity: .88; }

.btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.22);
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.04);
}

/* ── SECTION EYEBROW ───────────────────────────────── */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

/* ── EMBED PLAYER ──────────────────────────────────── */

.embed-player {
    width: 100%;
    border: none;
}

.embed-wrapper-16x9 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.embed-wrapper-16x9 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── FOOTER ────────────────────────────────────────── */

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 72px 40px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 28px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    transition: border-color .2s, color .2s, background .2s;
}

.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 13px;
    color: var(--dim);
    transition: color .2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .04em;
}

/* ── RESPONSIVE ────────────────────────────────────── */

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav.open {
        height: 100dvh;
        backdrop-filter: none;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 64px 1fr;
        align-items: center;
    }

    .nav.open .nav-brand { grid-column: 1; grid-row: 1; }
    .nav.open .hamburger { grid-column: 2; grid-row: 1; }

    .nav.open .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
    }

    .nav.open .nav-links a { font-size: 13px; }

    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    footer { padding: 52px 24px 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .btn-accent, .btn-ghost { width: 100%; justify-content: center; }
}
