body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide scrollbars if content overflows */
    font-family: Arial, sans-serif; /* Fallback font */
    color: white; /* Default text color for any remaining text */
}

.background-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Set the background image here */
    background-image: url('/WEBSITE SOON PAGE.png'); /* Make sure the path is correct */
    
    /* Default for Desktop: Cover the entire container (might crop image edges) */
    background-size: cover;   
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /* No background-color needed here for desktop, as 'cover' ensures no empty space */
}

.overlay-content {
    position: absolute; /* Position absolutely within the background-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    z-index: 1; /* Ensure overlay content is above the background */
    box-sizing: border-box;
}

#countdown {
    display: flex;
    gap: 50px;
    /* You'll need to fine-tune this margin-top value */
    /* Adjust it to position the countdown precisely where you want it on your background image */
    margin-top: 500px; 
    margin-bottom: 50px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
}

.countdown-item span:last-child {
    font-size: 0.5em;
    font-weight: normal;
    margin-top: 5px;
    color: #bbb;
}

/* Responsive adjustments */
/* Apply 'contain' behavior for screens up to 768px (common tablet portrait / large mobile) */
@media (max-width: 768px) {
    .background-container {
        /* Mobile: Ensure the entire image is visible (may introduce letterboxing/pillarboxing) */
        background-size: contain;
        background-color: #333; /* Add a background color to fill empty space */
                                 /* Adjust this color to match the dark grey in your image */
    }

    #countdown {
        gap: 15px;
        margin-top: 370px; /* Adjust for smaller screens if needed */
    }
    .countdown-item {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    #countdown {
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center;
        margin-top: 230px; /* Adjust for even smaller screens if needed */
    }
    .countdown-item {
        font-size: 1.5em;
        margin-bottom: 10px; 
    }
}