/* Base Styles */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #6c63ff;
    --text-color: #333;
    --light-text: #666;
    --background: #f9f9ff;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: 30px 0;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.countdown-item {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 120px;
    text-align: center;
}

.countdown-item span {
    display: block;
    font-weight: 700;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Notify Form */
.notify-form {
    max-width: 600px;
    width: 100%;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.notify-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-color);
}

#notifyMe {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#notifyMe input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#notifyMe input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
}

#notifyMe button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#notifyMe button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
}

.form-message {
    font-size: 0.9rem;
    min-height: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .notify-form {
        padding: 30px 20px;
    }
    
    #notifyMe {
        flex-direction: column;
    }
    
    #notifyMe button {
        padding: 15px;
    }
}

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

main > * {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

main > *:nth-child(1) { animation-delay: 0.2s; }
main > *:nth-child(2) { animation-delay: 0.4s; }
main > *:nth-child(3) { animation-delay: 0.6s; }
main > *:nth-child(4) { animation-delay: 0.8s; }
