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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: slideDown 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideUp 1s ease-out;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.5s ease-out;
}

.countdown-item span {
    font-size: 3rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-item .label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.newsletter {
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.5s backwards;
}

.newsletter input {
    padding: 1rem 1.5rem;
    width: 300px;
    border: none;
    border-radius: 25px;
    margin-right: 1rem;
    font-size: 1rem;
    outline: none;
}

.notify-btn {
    padding: 1rem 2rem;
    background: #f50057;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.notify-btn:hover {
    transform: scale(1.05);
}

.social-links {
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

.social-icon {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item span {
        font-size: 2rem;
        min-width: 80px;
        padding: 0.8rem 1.5rem;
    }

    .newsletter input {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .notify-btn {
        width: 100%;
    }
}