:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-1: #3b82f6; /* Blue */
    --accent-2: #8b5cf6; /* Purple */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Image */
.mesh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to bottom, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.9)),
        url('bg-optimized.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: pulse 20s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Subtle Stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 10;
}

/* Premium Glassmorphism Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    100% { filter: blur(30px) hue-rotate(360deg); }
}

.brand-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-title span {
    color: var(--accent-1);
    -webkit-text-fill-color: var(--accent-1);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #e4e4e7;
}

.description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Form Styles */
.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.email-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    width: 60%;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.notify-btn {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: not-allowed;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    opacity: 1;
    box-shadow: 0 10px 20px -10px var(--accent-2);
    transform: translateY(-2px);
}

.footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #52525b;
}

/* Responsive */
@media (max-width: 480px) {
    .notify-form {
        flex-direction: column;
    }
    .email-input {
        width: 100%;
    }
    .brand-title {
        font-size: 2.5rem;
    }
}
