/* style.css */

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #141E30, #243B55);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon {
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #f4f4f4;
    animation: fadeInDown 1.5s ease;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #c4c4c4;
    animation: fadeInDown 2s ease;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeInUp 2.5s ease;
}

.time-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    min-width: 100px;
    text-align: center;
}

.time-box p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ddd;
}

.time {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    #countdown {
        flex-direction: column;
        gap: 15px;
    }

    .time-box {
        min-width: 80px;
        padding: 15px;
    }

    .time {
        font-size: 2.5rem;
    }
}