/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    /* Use the dark blue from the logo for the main background */
    background-color: #1a346e; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.coming-soon-container {
    background-color: rgba(0, 0, 0, 0.6); /* Slightly transparent overlay */
    border-radius: 15px;
    padding: 3rem;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
}

/* Header */
.cs-header {
    margin-bottom: 2rem;
}

.cs-logo {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}

.cs-logo i {
    font-size: 2.8rem;
    color: #66cc00; /* Bright Green from your logo for the icon */
}

/* Main Content */
.cs-main h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cs-main .cs-message {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.timer-box {
    background-color: rgba(255, 255, 255, 0.15); /* Keep a subtle transparent white */
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.timer-box span:first-child {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timer-box span:last-child {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

.cs-small-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Footer */
.cs-footer {
    margin-top: auto;
    padding-top: 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
}

.launched-message {
    font-size: 2rem;
    font-weight: 700;
    color: #66cc00; /* Use bright green for "We are LIVE!" */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem;
    }
    .cs-logo {
        font-size: 2rem;
    }
    .cs-main h1 {
        font-size: 2.2rem;
    }
    .cs-main .cs-message {
        font-size: 1rem;
    }
    .countdown-timer {
        gap: 1rem;
    }
    .timer-box {
        padding: 0.8rem 1rem;
        min-width: 80px;
    }
    .timer-box span:first-child {
        font-size: 2.5rem;
    }
    .timer-box span:last-child {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    .cs-logo {
        font-size: 1.8rem;
    }
    .cs-logo i {
        font-size: 2rem;
    }
    .cs-main h1 {
        font-size: 1.8rem;
    }
    .cs-main .cs-message {
        font-size: 0.9rem;
    }
    .countdown-timer {
        flex-direction: column;
        gap: 0.8rem;
    }
    .timer-box {
        width: 80%;
        min-width: unset;
    }
}