/* Waitlist App Styles - VIP & Exclusive */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.waitlist-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.launch-date {
    font-size: 1.05rem;
    color: #f5576c;
    font-weight: 600;
}

.vip-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.vip-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.vip-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits li {
    font-size: 1rem;
    color: #1a1a1a;
    padding: 10px 0;
    line-height: 1.5;
}

.benefits li strong {
    color: #f5576c;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.email-input:focus {
    border-color: #f5576c;
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spots-text {
    text-align: center;
    font-size: 0.9rem;
    color: #f5576c;
    font-weight: 600;
}

.success-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 16px;
}

.success-card h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.success-card p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.insider-text {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.insider-text strong {
    color: #f5576c;
}

.footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 20px;
}

.footer-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.success-text {
    text-align: center;
    font-size: 1.2rem;
    color: #4caf50;
    font-weight: 600;
    padding: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .waitlist-card {
        padding: 40px 30px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }

    .vip-section {
        padding: 24px 20px;
    }
}