* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Ambient background layer */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at top, var(--top, #000) 0%, transparent 60%),
        radial-gradient(circle at bottom, var(--bottom, #000) 0%, transparent 60%),
        radial-gradient(circle at left, var(--left, #000) 0%, transparent 60%),
        radial-gradient(circle at right, var(--right, #000) 0%, transparent 60%);
    filter: blur(100px) saturate(1.8);
    transition: background 0.3s ease;
    opacity: 0.6; /* Adjust this to make the glow more or less subtle */
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

video {
    width: 100%;
    display: block;
}

.content {
    text-align: center;
    max-width: 700px;
    z-index: 2;
}

/* Rest of your existing text styles */
.tagline { letter-spacing: 4px; font-size: 12px; opacity: .8; margin-bottom: 10px; }
h1 { font-size: 60px; font-weight: 700; margin-bottom: 10px; line-height: 1; }
h1 span { color: #ff9f1c; }
.coming { color: #ff9f1c; font-weight: 800; letter-spacing: 2px; margin: 10px 0; }
.desc { opacity: .8; margin-bottom: 30px; font-size: 18px; }

#footer-nav {
    position: relative; /* Changed from fixed so it doesn't overlap content on small screens */
    padding: 20px;
    text-align: center;
    background: rgba(0,0,0,0.5);
    color: #dcdcdc;
    font-size: 12px;
    z-index: 10;
}

#footer-nav a { color: #dcdcdc; text-decoration: none; margin: 0 5px; }

@media (max-width:768px) {
    h1 { font-size: 42px; }
    .video-container { max-width: 95%; }
}