:root {
    --primary: #8b5cf6; /* Electric Indigo */
    --primary-glow: rgba(139, 92, 246, 0.5);
    --bg-dark: #0f172a;
    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #38bdf8; /* Sky Blue */
}

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

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

/* Background Elements */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--bg-dark) 100%);
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Main Content */
.content {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    z-index: 1;
    animation: fadeIn 1.2s ease-out;
}

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

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Brand/Logo */
.brand {
    margin-bottom: 30px;
}

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

/* Typography */
.title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.description {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 8px;
    border: 1px solid var(--glass-border);
}

.label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Form */
.subscription-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.subscription-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.subscription-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 12px 20px;
    font-family: inherit;
    font-size: 1rem;
}

.subscription-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.subscription-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
    filter: brightness(1.1);
}

/* Socials */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 30px;
    color: var(--text-dim);
    font-size: 0.85rem;
    z-index: 1;
}

/* Responsive */
@media (max-width: 640px) {
    .glass-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .title {
        font-size: 2rem;
    }

    .countdown {
        gap: 10px;
    }

    .time-box {
        min-width: 65px;
    }

    .number {
        font-size: 1.8rem;
        padding: 8px;
    }

    .subscription-form {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 12px;
    }

    .subscription-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        width: 100%;
    }

    .subscription-form button {
        width: 100%;
        justify-content: center;
    }
}
