html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Cairo', 'Montserrat', 'Hind Madurai', sans-serif;
    box-sizing: border-box;
    /* filter: grayscale(100%);
    -webkit-filter: grayscale(100%); */
    color: #ffffff;
}
* {
    font-family: 'Cairo', 'Montserrat', 'Hind Madurai', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #4750DD10;
}
/* Background with gap top & bottom */
body::before {
    content: "";
    position: absolute;
    top: 60px;        /* GAP TOP */
    bottom: 60px;     /* GAP BOTTOM */
    left: 0;
    right: 0;
    background-image: url('');
    
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.04;
}
/* Top-right logo and toggle container */
.top-right {
    position: fixed;
    top: 16px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 32px);
    align-items: center;
    gap: 15px;
    z-index: 1000;
}
.logo-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.logo-flag {
    width: 40px;
    height: 40px;
    /* border-radius: 50%;
    border:#4750DD10 1px solid; */
}
.logo {
    font-size: 28px;
    font-weight: 700;
    color: #4750DD;
    position: relative;
    margin-top: -6px;
}
.lang-toggle {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #4750DD20;
    background: white;
    cursor: pointer;
    font-weight: bold;
    color: #4750DD;
}
.lang-toggle:hover {
    background: #4750DD;
    color: white;
    border: 1px solid #4750DD;
}
.lang-toggle:active {
    background: white;
    color: #4750DD;
}
/* Coming Soon card */
.coming-soon-card {
    /* background: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('/assets/images/flag-wave-500.png') no-repeat center center; */
    background-size: cover;
    padding: 45px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    width: 400px;
    color: #4750DD;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255,255,255,0.9);
    position: relative;
    overflow: visible; /* IMPORTANT: Allow image to go out */
    z-index: 2;
}
/* the overflowing background image */
.card-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;      /* Adjust size as needed */
    transform: translate(-50%, -50%);
    opacity: 0.15;    /* Light watermark effect */
    pointer-events: none;
    z-index: 1;
}
/* bring the text above the image */
.coming-soon-card h1,
.coming-soon-card p {
    position: relative;
    z-index: 2;
}
.coming-soon-card h1 {
    margin: 0;
    font-size: 32px;
    line-height: 37px;
    font-weight: 700;
    color: #4750DD;
}
.coming-soon-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #4750DD;
}
.coming-soon-card span {
    font-weight: 600;
    color: #4750DD;
}
/* Bottom audio player */
.bottom-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 32px);
    padding: 0 16px 10px 16px;
    background: transparent;
    z-index: 999;
}
.bottom-player audio {
    width: 100%;
    height: 60px;
    opacity: .7;
}

.disclaimer {
   text-align: 
   center; color: #4750DD; 
   font-size: 14px;
   font-weight: 300;
}

/* Responsive adjustments */
@media (min-width: 500px) and (max-width: 600px) {
    .card-bg-img {
        width: calc(100% + 0px); 
    }
}
@media (max-width: 500px) {
    .coming-soon-card {
        /* width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 35px 20px; */

        width: calc(100% - 40px);
        margin: 0 20px;

        padding: 35px 10px;
    }
    body::before {
        background-size: cover;
        top: 0; 
        bottom: 0; 
    }
    .card-bg-img {
        /* width: calc(100% - 40px);  */
        width: calc(100% + 20px);
    }
    .coming-soon-card h1 {
        font-size: 26px;
    }
}