body {
    overflow-x: hidden;
    z-index: inherit !important;
    height: 100%;
    margin: 0;
    padding: 0;
}

.center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.game-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    filter: blur(5px);
    /* Adjust the blur radius as needed */
}

#play-now-btn {
    margin-top: 30% !important;
    width: 10vw;
    height: 7vh;
    background-color: #000 !important;
    border: 0 !important;
    position: relative;
    z-index: 1 !important;
    transition: 0.7s;
}

#play-now-btn:hover {
    transition: 0.7s;
    border: 1px solid #fff !important;
    background-color: #000 !important;
    position: relative;
    z-index: 1 !important;
}




.loading-iframe {
    position: absolute; /* Position the loading iframe on top */
    z-index: 999999999999; /* High z-index for loading iframe */
}

.overlay-iframe {
    position: absolute; /* Position another iframe on top if needed */
    top: 0;
    left: 0;
    z-index: 9999999999999; /* Higher z-index for overlay iframe */
}


.fullscreen-btn{
    color: #fff !important;
}
.fullscreen-btn:hover{
    /* color: #e3e3e3 !important; */
    border-radius: 5px !important;
    border: 1px solid #fff !important;
}

.fullscreen-btn-disabled{
    color: #525252 !important;
}
.fullscreen-btn-disabled:hover{
    color: #525252 !important;
    border: 0 !important;
}

.bottom-bar-center {
    flex-grow: 1; /* Allows the center div to take up space */
}

#hide-bar-btn{
    background-color: transparent;
    color: #fff;
    border-radius: 20px;
    font-size: 10px;
}

#exit-fullscreen-btn{
    background-color: transparent;
    color: #fff;
    border: 0;
    font-size: 17px;
}

.game-bar-name{
    font-size: 23px;
    font-weight:500;
}

#bottom-bar {
    /* position: absolute; */
    background-color: #001377;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure it sits above other content */
}

.game-iframe {
    width: 100%;
    height: calc(100vh - 50px); /* Adjust height based on your design */
}

.bottom-bar-logo {
    width: 20px; /* Logo size */
    height: 20px; /* Logo size */
}

