body {
    font-family: 'Poppins', sans-serif;
}

.coming-soon {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 5px;
}

.time-box h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

.time-box span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.2s ease-in-out;
}

.fade-in-delay {
    animation: fadeIn 1.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
