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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #f3f4f6;
    background: #000;
    line-height: 1.6;
    min-height: 100vh;
}

.universe {
    position: fixed;
    inset: 0;
    background: #05060a;
    z-index: -2;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    inset: 0;
    background-repeat: repeat;
}

.stars {
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,.9), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,.8), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(1px 1px at 300px 150px, rgba(255,255,255,.7), transparent),
        radial-gradient(2px 2px at 370px 50px, #fff, transparent),
        radial-gradient(1px 1px at 450px 180px, #fff, transparent);
    background-size: 500px 200px;
    animation: drift 90s linear infinite;
}

.stars2 {
    background-image:
        radial-gradient(1px 1px at 50px 90px, #fff, transparent),
        radial-gradient(1px 1px at 120px 20px, rgba(255,255,255,.55), transparent),
        radial-gradient(2px 2px at 200px 160px, #fff, transparent),
        radial-gradient(1px 1px at 280px 70px, rgba(255,255,255,.8), transparent);
    background-size: 400px 180px;
    animation: drift 140s linear infinite;
    opacity: .75;
}

.stars3 {
    background-image:
        radial-gradient(1px 1px at 80px 40px, rgba(180,200,255,.9), transparent),
        radial-gradient(1px 1px at 180px 110px, #fff, transparent),
        radial-gradient(2px 2px at 340px 170px, rgba(200,220,255,.8), transparent);
    background-size: 350px 220px;
    animation: drift 180s linear infinite, twinkle 5s ease-in-out infinite;
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: -1000px 500px; }
}

@keyframes twinkle {
    0%, 100% { opacity: .45; }
    50% { opacity: .95; }
}

.wrap {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(5,6,10,.72);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    color: #f8d57e;
}

.topbar nav {
    display: flex;
    gap: 18px;
}

.topbar a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
}

.topbar a:hover { color: #fff; }

.hero-card {
    margin-top: 48px;
    padding: 40px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18,18,24,.88), rgba(10,10,14,.92));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    text-align: center;
}

.kicker {
    color: #f8d57e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.lead {
    font-size: 1.12rem;
    color: #d6d9e0;
    max-width: 640px;
    margin: 0 auto 22px;
}

.meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 28px;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(229,9,20,.45);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.watch-btn:hover {
    transform: translateY(-2px) scale(1.03);
    background: #f40612;
    box-shadow: 0 16px 40px rgba(229,9,20,.6);
}

.watch-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.story, .player-section, .disclaimer {
    margin: 36px 0;
    padding: 28px 28px;
    border-radius: 20px;
    background: rgba(12,12,16,.78);
    border: 1px solid rgba(255,255,255,.08);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.story p, .disclaimer p, .caption {
    color: #d1d5db;
}

.story ul {
    margin-top: 14px;
    padding-left: 20px;
    color: #d1d5db;
}

.story li { margin: 8px 0; }

.player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.caption {
    margin-top: 14px;
    font-size: 14px;
}

.caption a { color: #f8d57e; }

.site-footer {
    margin-top: 40px;
    padding: 36px 0 48px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-brand {
    color: #f8d57e;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 12px 0;
}

.footer-links a, .site-footer a {
    color: #d1d5db;
}

.copy { font-size: 12px; margin-top: 8px; }

.legal {
    max-width: 760px;
    margin: 48px auto 80px;
    padding: 32px;
    background: rgba(12,12,16,.86);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
}

.legal h1 { font-size: 2rem; margin-bottom: 16px; }
.legal h2 { margin-top: 22px; }
.legal p { margin: 10px 0; color: #d1d5db; }
.legal a { color: #f8d57e; }

@media (max-width: 640px) {
    .hero-card { padding: 28px 18px; }
    .topbar nav { display: none; }
    .story, .player-section, .disclaimer { padding: 22px 18px; }
}
