@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

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

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    background-color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: #f8fafc;
}

/* Animated Background Blobs */
.blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.6;
    border-radius: 50%;
    animation: moveBlob 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: #7e22ce;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: #be185d;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    background: #0ea5e9;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15%, 5%) scale(1.1); }
    66% { transform: translate(-5%, 15%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1.05); }
}

/* Main Container & Glassmorphism Card */
.container {
    padding: 1rem;
    z-index: 10;
    width: 100%;
    max-width: 800px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Typography */
.subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 1rem;
    display: block;
}

.title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title .highlight {
    background: linear-gradient(135deg, #0ea5e9 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Timer */
.timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.02);
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 600;
}

/* Newsletter Form */
.notify-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    background: rgba(0,0,0,0.2);
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.35rem;
    transition: border-color 0.3s ease;
}

.notify-form:focus-within {
    border-color: rgba(255,255,255,0.3);
}

.notify-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

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

.notify-form button {
    background: linear-gradient(135deg, #0ea5e9 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notify-form button:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transform: scale(1.02);
}

.notify-form button:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .glass-card {
        padding: 3rem 1.5rem;
    }
    
    .timer {
        gap: 0.75rem;
    }
    
    .time-box {
        min-width: 75px;
        padding: 1rem 0.5rem;
        border-radius: 14px;
    }
    
    .number {
        font-size: 2rem;
    }
    
    .label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .notify-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.75rem;
    }
    
    .notify-form input {
        background: rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 9999px;
        text-align: center;
    }
    
    .notify-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.25rem;
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .time-box {
        flex: 1 1 calc(50% - 0.75rem);
    }
}
