:root {
    --purple: #6a0dad;
    --deep-black: #050505;
    --neon: #b347ff;
}

body, html {
    margin: 0;
    padding: 0;
    background: var(--deep-black);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Letterbox Framing */
.letterbox {
    position: fixed;
    width: 100%;
    height: 6vh;
    background: black;
    z-index: 100;
}
.top { top: 0; }
.bottom { bottom: 0; }

/* Cinematic Hero Container */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/U5N5gQJ.png') center/cover;
    filter: brightness(30%) contrast(120%) saturate(50%);
    animation: kenBurns 30s ease-out infinite alternate;
    z-index: -2;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15) translate(10px, -10px); }
}

/* Overlay & Scanlines */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--deep-black) 90%),
                linear-gradient(to bottom, transparent, rgba(106, 13, 173, 0.2));
    z-index: -1;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(179, 71, 255, 0.2);
    animation: scanLine 8s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Content & Typography */
.content { text-align: center; opacity: 0; transform: translateY(20px); transition: 2s ease-out; }
.content.reveal { opacity: 1; transform: translateY(0); }

.pre-title { font-size: 0.7rem; letter-spacing: 8px; color: var(--neon); margin-bottom: 1rem; }

.main-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 15px;
    margin: 0;
    text-shadow: 0 0 30px rgba(179, 71, 255, 0.5);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px rgba(179, 71, 255, 0.2); }
    to { text-shadow: 0 0 40px rgba(179, 71, 255, 0.6); }
}

.status-bar { margin: 2rem 0; font-size: 0.8rem; letter-spacing: 3px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.status-dot { width: 8px; height: 8px; background: var(--neon); border-radius: 50%; box-shadow: 0 0 10px var(--neon); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

/* CTA Button */
.cta-button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 15px 40px;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.5s;
    letter-spacing: 4px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    border-color: var(--neon);
    background: rgba(179, 71, 255, 0.1);
    box-shadow: 0 0 20px rgba(179, 71, 255, 0.2);
}

/* Audio Deck */
.audio-deck {
    position: fixed;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 250px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 71, 255, 0.3);
    padding: 12px 25px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.track-info { font-family: 'Syncopate', sans-serif; font-size: 0.6rem; letter-spacing: 2px; color: var(--neon); text-transform: uppercase; }
.audio-controls button { background: transparent; border: none; color: white; font-family: 'Inter', sans-serif; font-size: 0.7rem; cursor: pointer; margin: 0 10px; opacity: 0.6; transition: 0.3s; }
.audio-controls button:hover { opacity: 1; color: var(--neon); }