/* --- Color Variables --- */
:root {
    --bg-dark-purple: #1a1a2e;
    --accent-gold: #ffd700;
    --accent-purple: #8A2BE2;
    --text-muted: #e0e0e0;
    --success-green: #28a745;
    --error-red: #dc3545;
}

/* --- General Styles --- */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark-purple);
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* --- Main Content Container --- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

/* --- Logo Image --- */
.logo {
    width: 400px;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 75px; /* Adjusted for larger size */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- Text Styles --- */
.headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    margin: 0.5rem 0 2rem 0;
    max-width: 400px;
}

/* --- Waitlist Form --- */
#waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

#waitlist-form input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a3e;
    color: var(--text-muted);
    font-size: 1rem;
    box-sizing: border-box; /* Important for padding and width */
}

/* --- Call-to-Action Button --- */
.cta-button {
    cursor: pointer;
    width: 100%;
    border: none;
    background-color: var(--accent-purple);
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #9932CC; /* A slightly different purple */
    transform: scale(1.02);
}

/* --- Form Messages --- */
#form-message {
    margin-top: 1rem;
    font-weight: 600;
    height: 20px;
}

.success {
    color: var(--success-green);
}

.error {
    color: var(--error-red);
}
