* {
    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%; }
}

/* ===== TEXT CONTENT IMPROVEMENTS ===== */

.intro {
    margin-top: 10px;
}

.lead {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    opacity: 1;
}

.desc {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
    margin-bottom: 22px;
    font-weight: 300;
}

.highlight {
    color: #ffd27a;
    font-weight: 500;
}

.cta-text {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

.free {
    color: #ff9f1c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
}

.subscribe-text {
    font-size: 18px;
    opacity: .95;
    margin-bottom: 25px;
}

/* Better spacing on mobile */
@media (max-width:768px) {

    .content {
        max-width: 95%;
    }

    .lead {
        font-size: 20px;
    }

    .desc {
        font-size: 16px;
        line-height: 1.8;
    }

    .cta-text {
        font-size: 22px;
        line-height: 1.4;
    }

    .free {
        font-size: 16px;
    }
}

/* ===== GLASS CARDS ===== */

.glass-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 24px;

    padding: 28px 30px;

    margin-bottom: 22px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 1px 1px rgba(255,255,255,0.06);

    transition: all .3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,159,28,0.25);
}

.hero-card {
    background:
        linear-gradient(
            135deg,
            rgba(255,159,28,0.12),
            rgba(255,255,255,0.04)
        );
}

/* ===== TEXT ===== */

.lead {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}

.desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
}

.highlight {
    color: #ffd27a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== CTA ===== */

.cta-container {
    margin-top: 40px;
    margin-bottom: 35px;
}

.cta-text {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.free {
    color: #ff9f1c;
    font-size: 18px;
    font-weight: 600;
}

.subscribe-text {
    margin-bottom: 25px;
    font-size: 18px;
    opacity: .92;
}

/* ===== MOBILE ===== */

@media (max-width:768px) {

    .glass-card {
        padding: 24px 22px;
    }

    .lead {
        font-size: 20px;
    }

    .desc {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .cta-text {
        font-size: 22px;
        line-height: 1.4;
    }
}