* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom, #401015 0%, #1A0A0E 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden; /* Prevents background lights from stretching page width */
    position: relative;
}

/* --- AMBIENT BACKGROUND LIGHTS --- */
.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Creates the soft glow effect */
    opacity: 0.3;
    z-index: 0; /* Keeps it behind your content */
    animation: drift 15s infinite alternate ease-in-out;
}

.light-1 {
    width: 350px;
    height: 350px;
    background-color: #FF9529; /* Out Tonight Orange */
    top: -10%;
    left: -10%;
}

/* Slowly moves the light around */
@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 40px); } 
}

/* --- MAIN CONTAINER --- */
.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    z-index: 1; /* Keeps content above the lights */
    position: relative;
}

.status-spacer { height: 60px; }

.logo {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 10vh;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5rem;
    font-weight: 500;
}

.hero {
    margin-top: auto;
    margin-bottom: auto;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    color: #a0a0a0;
    margin-bottom: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

input[type="email"] {
    padding: 1.1rem;
    border-radius: 12px;
    border: 1px solid #333333;
    background-color: rgba(30, 30, 30, 0.8);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.6); }
input[type="email"]:focus { border-color: #FF9529; }

button {
    padding: 1.1rem;
    border-radius: 12px;
    border: none;
    background-color: #FF9529;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 149, 41, 0.2); /* Base glow */
    transition: all 0.3s ease;
}

button:hover {
    background-color: #f18c28; 
    box-shadow: 0 6px 20px rgba(255, 149, 41, 0.5); /* Stronger glow */
    transform: translateY(-2px); /* Lifts the button up slightly */
}

#form-message {
    margin-top: 1.5rem;
    font-weight: bold;
    font-size: 1rem;
}

footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* --- LEFT TO RIGHT SLIDE ANIMATIONS --- */
.animate-slide-in {
    opacity: 0;
    transform: translateX(-40px); /* Starts off to the left */
    animation: slideIn 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Staggers the animation so they drop in one after the other */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0); /* Ends in natural position */
    }
}