:root {
    --primary-color: #2b6777;
    --secondary-color: #52ab98;
    --accent-color: #c8d8e4;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f2f2f2;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
    position: relative;
    color: var(--text-main);
}

/* Background Animations and Shapes */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2f1, #e3f2fd);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -100px;
    left: -100px;
    opacity: 0.4;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    bottom: -150px;
    right: -100px;
    opacity: 0.3;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 40%;
    left: 50%;
    opacity: 0.5;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Glassmorphism Container */
.container {
    width: 90%;
    max-width: 800px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

header {
    margin-bottom: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 2.5rem;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(82, 171, 152, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-inline: auto;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 16px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.time {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-weight: 600;
}

/* Notify Form */
.notify-section p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.notify-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.notify-form:focus-within {
    box-shadow: 0 8px 25px rgba(43, 103, 119, 0.15);
}

.notify-form input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.notify-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.notify-form button:hover {
    background: #1f4a56;
    transform: translateY(-2px);
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 2rem;
    }
    
    .time-block {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .notify-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
    }
    
    .notify-form input {
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .notify-form button {
        width: 100%;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .time-block {
        width: 45%;
        margin-bottom: 0.5rem;
    }
}
