

/* Body Background - Target only when the specific class is applied */
.scs-coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* Glassy Box */
.scs-coming-soon .scs-glassy-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


img.scs-logo {
    width: 18%;
}

.scs-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
}

.scs-paragraph{
    font-size: 17px;
    font-weight: 400;
    line-height: 21px;
}


/* Shadowed Font */
.scs-coming-soon .scs-heading, .scs-coming-soon .scs-paragraph, .scs-coming-soon #scs-countdown {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.56);
}

/* Social Icons */
.scs-coming-soon .scs-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.scs-coming-soon .scs-social-links a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}
.scs-coming-soon .scs-social-links a:hover {
    color: #ccc;
}



/* Countdown Timer Styles */
.scs-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: Inter, sans-serif;
}

.scs-countdown .countdown-section {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: 70px;
    color: #0078da;
}

.scs-countdown .countdown-section .number {
    font-size: 2.5rem; /* Large number size */
    font-weight: bold;
    color: #3a03ff; /* Customize color as needed */
    text-shadow: none;
}

.scs-countdown .countdown-section .label {
    font-size: 0.75rem;
    color: #1f1f1f;
    margin-top: 5px;
    text-transform: uppercase;
    text-shadow: none;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    
    .scs-heading {
        font-size: 30px;
        line-height: 33px;
    }
    
    .scs-paragraph{
        font-size: 17px;
        line-height: 21px;
    }
       
    .scs-countdown {
        flex-direction: row; /* Stack sections on smaller screens */
        gap: 10px;
          
    }
    .scs-countdown .countdown-section {
        min-width: 13%;
        margin-bottom: 10px; /* Space between stacked sections */
        padding: 14px;
        
    }

    .scs-countdown .countdown-section .number {
        font-size: 2.3rem; 
        
    }
    
    .scs-countdown .countdown-section .label {
        font-size: 0.55rem;
        margin-top: 3px;
        
    }








}
