/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
    width: 100%;
    height: 100vh;
    border: 0;
    display: block;
}

/*-------------------------------------------Title Animation---------------------------------------------*/
/* Comment if using Slide keyframe */
/* .add-animation-zoom {
    animation: zoomBounce 0.3s ease;
    animation: zoomOut 0.3s ease;
} */

/* Comment all if using Zoomout keyframe */
.add-animation {
    /* animation: frmslideLeft 0.3s ease; */
    animation: frmslideRight 0.8s ease;
}

/* Comment all if using Zoomout keyframe */
.exit-animation {
    /* animation: toslideRight 0.3s ease; */
    animation: toslideLeft 0.8s ease;
}

.text {
    top: 14%;
}

.text img {
    width:90%;
}

/*-------------------------------------------Redirect Button---------------------------------------------*/
.btn1 {
    top: 75%;
}
.btn1 img {
    width:65%;
    animation: pulse 1s  infinite linear;
}


.btn2 {
    top: 91%;
}

.btn2 img {
    width:65%;
    animation: pulse 1s  infinite linear;
}



@media(max-width:320px){

}

.dropdown-class{
      z-index: 1050;
    }

/*-------------------------------------------Site Header + Mega Banner---------------------------------------------*/
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    background: linear-gradient(180deg, #06118a 0%, #01033a 100%);
    padding-bottom: 24px;
}

.site-header-close {
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 88px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, #ff9d3d 0%, #ff6a00 100%);
    color: #fff;
    box-shadow: 0 -2px 14px rgba(255, 106, 0, 0.6);
    cursor: pointer;
    z-index: 2;

}

.site-header-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.site-header-toggle {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 88px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, #ff9d3d 0%, #ff6a00 100%);
    color: #fff;
    box-shadow: 0 -2px 14px rgba(255, 106, 0, 0.6);
    cursor: pointer;
    z-index: 1500;
  
}

.site-header-toggle svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.site-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    padding: 10px 16px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 100%;
}

.brand-logo-img {
    height: 45px;
    width: auto;
}

.brand-tagline-img {
    height: 27px;
    width: auto;
    max-width: 100%;
}

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1 1 100%;
}

.signup-btn {
    display: block;
    flex-shrink: 0;
}

.signup-btn img {
    height: 32px;
    width: auto;
    display: block;
}

.language-btn {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    line-height: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.lang-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lang-chevron {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.mega-banner {
    display: block;
    max-width: 400px;
    margin: 16px auto 0;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.mega-banner img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 992px) {
    .site-header {
        padding-bottom: 15px;
    }

    .site-header-top {
        flex-wrap: nowrap;
        gap: 1000px;
        padding: 16px 32px;
    }

    .brand {
        flex: 0 1 auto;
    }

    .site-header-actions {
        flex: 0 0 auto;
    }

    .mega-banner {
        margin: -15px auto 0;
        max-width: 800px;
    }
}

/*-------------------------------------------Bonus Popup---------------------------------------------*/
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 20, 0.7);
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    animation: popIn 0.35s ease;
}

.popup-img {
    width: 100%;
    display: block;
}

.popup-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0c1440;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.popup-claim-btn {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: 65%;
    display: block;
}

.popup-claim-btn img {
    width: 100%;
    display: block;
    animation: pulse 1s infinite linear;
}

@media (min-width: 992px) {
    .popup-card {
        max-width: 460px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}








/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(0.9);
    }
}




/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }


}

@media (min-width: 1920px) {
    #bg {
        height: 100vh;
    }

}