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

body, html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a; /* Sleek dark mode base */
    overflow: hidden;
    color: #ffffff;
}

/* Background Blobs for vibrant contrast against Glassmorphism */
.background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(100px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

/* Vibrant colors for the premium look */
.blob-1 {
    width: 400px;
    height: 400px;
    background: #6366f1; /* Indigo */
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #ec4899; /* Pink */
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #0ea5e9; /* Sky blue */
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.2); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Glassmorphism Container */
.glass-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.05); /* Very light translucent white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle border for glass edge */
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Stronger top border for lighting */
    border-left: 1px solid rgba(255, 255, 255, 0.3); /* Stronger left border for lighting */
    border-radius: 30px;
    padding: 60px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2); /* Deep shadow to pop off background */
    animation: floatContainer 6s infinite ease-in-out alternate;
}

@keyframes floatContainer {
    from { transform: translateY(-10px); }
    to { transform: translateY(10px); }
}

/* Typography */
.title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
}

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

.time-box {
    background: rgba(0, 0, 0, 0.2); /* Darker translucent for contrast inside glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 25px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, background 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.time-value {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.time-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* Form and Inputs */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    width: 350px;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.glass-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.glass-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.glass-btn:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 600px) {
    .content {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .title {
        font-size: 2.8rem;
    }
    
    .countdown {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .time-box {
        min-width: 80px;
        padding: 15px 15px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .glass-input {
        width: 100%;
        max-width: 350px;
    }
    
    .glass-btn {
        width: 100%;
        max-width: 350px;
    }
}
