/* General Styles */
body {
    background: #3498db; /* Vibrant blue background */
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.coming-soon-box {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 650px;
}

h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

p.lead {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.countdown h3 {
    font-size: 24px;
    color: #27ae60;
    font-weight: bold;
}

.countdown p {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 300;
}

@media (max-width: 768px) {
    .coming-soon-box {
        padding: 30px;
    }

    h1 {
        font-size: 30px;
    }

    p.lead {
        font-size: 16px;
    }

    .countdown h3 {
        font-size: 20px;
    }

    .countdown p {
        font-size: 16px;
    }
}
