body {
    background: linear-gradient(135deg, #7c4dff, #448aff);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    color: white;
}

.coming-soon-content {
    text-align: center;
    margin-top: -100px;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-block {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 1s both;
}

.time {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

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

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

@media (max-width: 600px) {
    .title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .time-block {
        min-width: 70px;
    }
    .time {
        font-size: 2rem;
    }
}