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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: url('./wait2.png') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-container {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(30, 41, 82, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: rgba(91, 165, 229, 0.6);
    box-shadow: 0 0 0 3px rgba(91, 165, 229, 0.2);
    background: rgba(30, 41, 82, 0.8);
}

.get-notified-btn {
    --border-bottom-width: 1px;
    --border-color: rgba(255, 255, 255, 0.3);
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    background: linear-gradient(rgb(44, 98, 157) 0%, rgb(86, 167, 229) 100%);
    border-radius: 12px;
    box-shadow: rgba(255, 255, 255, 0.3) 0px 4px 20px 0px inset;
    opacity: 1;
    will-change: transform;
    
    border: var(--border-top-width) var(--border-style) var(--border-color);
    border-bottom-width: var(--border-bottom-width);
    border-left-width: var(--border-left-width);
    border-right-width: var(--border-right-width);
    
    padding: 16px 24px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.get-notified-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        rgba(255, 255, 255, 0.4) 0px 6px 25px 0px inset,
        0 10px 25px -5px rgba(44, 98, 157, 0.4);
}

.get-notified-btn:active {
    transform: translateY(0);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 15px 0px inset;
}

.get-notified-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.get-notified-btn:hover::before {
    left: 100%;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.avatars {
    display: flex;
    margin-left: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
    position: relative;
    overflow: hidden;
}

.avatar:nth-child(1) { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.avatar:nth-child(2) { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #45b7d1, #96c93d); }

.social-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-left: 8px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-weight: 300;
    align-self: center;
}

@media (max-width: 640px) {
    .container {
        padding: 32px 24px;
        margin: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .form-container {
        flex-direction: column;
    }
    
    .get-notified-btn {
        width: 100%;
        padding: 18px 24px;
    }
    
    .countdown {
        gap: 16px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}
