:root {
    --primary: #8B5CF6;
    --primary-glow: rgba(139, 92, 246, 0.5);
    --bg-dark: #0F172A;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use the generated background image */
    background: url('C:/Users/maicon/.gemini/antigravity/brain/29720b23-63f6-4117-bbe5-d07449decb13/coming_soon_background_1778957247114.png') no-repeat center center/cover;
    filter: brightness(0.5);
    z-index: -1;
}

/* Subtle animated gradient overlay to add movement */
.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent, var(--bg-dark));
    opacity: 0.8;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-glow), transparent 30%);
    animation: rotate 10s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    max-width: 450px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.signup-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(255, 255, 255, 0.08);
}

.signup-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.signup-form input::placeholder {
    color: #64748b;
}

.signup-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.signup-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--primary-glow);
    filter: brightness(1.1);
}

.social-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.social-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .glass-card {
        padding: 60px 30px;
    }
    .title {
        font-size: 2.25rem;
    }
    .signup-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    .signup-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        margin-bottom: 12px;
        width: 100%;
    }
    .signup-form button {
        width: 100%;
    }
}
