@tailwind base;
@tailwind components;
@tailwind utilities;

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.menu_toggle_btn {
    display: none;
}

input {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #000;
    padding: 10px;
}


.menu_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.menu_block {
    display: flex;
    gap: 40px;
}

.menu_block li>a {
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    padding: 16px 0;
}

.menu_block li>a::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 0;
    left: auto;
    width: 0;
    height: 2px;
    /* background: -webkit-linear-gradient(90deg, #0976FE 0%, #0298FE 54%, #01A8FF 100%); */
    background-color: #4090FF;
    /* background: #47a8de !important; */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.menu_block li a:hover::after,
.menu_block li a.active::after {
    opacity: 1;
    visibility: visible;
    right: auto;
    left: 0;
    width: 100%;
}

.menu_block li a {
    font-weight: 500 !important;
    color: white;
}

.menu_block li a:hover {
    color: #4090FF !important;
    font-weight: 500 !important;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.menu_block li a.active {
    color: #4090FF !important;
    /* background: -webkit-linear-gradient(90deg, #0976FE 0%, #0298FE 54%, #01A8FF 100%); */
    font-weight: bold !important;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

@media (max-width:1199px) {
    .menu_block li>a::after {
        bottom: 0px;
    }

    .menu_block li a {
        font-weight: 500 !important;
        color: white !important;
    }
}

.back_img {
    background-image: url(../images/header_img.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer_bg {
    background-image: url(../images/footer_back.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.icon_bg {
    background-image: url(../images/icon_bg.png);
    background-repeat: no-repeat;
    border-radius: 10px;
    background-size: cover;
}

.icon_bg div {
    margin-top: 0px !important;
    margin-bottom: 0px !important;

}

ion-icon.f-\[20px\].md.hydrated {
    font-size: 28px !important;
}

.gamedetails_tag {
    background-image: url(../images/gamedetails_tag.png);
    background-repeat: no-repeat;
    background-size: cover;

}

/* .gradient-border {
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(90deg, #0976FE 0%, #0298FE 54%, #01A8FF 100%);
} */

/* *********************************** faq ************************************** */
.text-oscuro {
    color: #445065;
}

.title::after,
.title::before {
    content: '';
    position: absolute;
    right: 1.25em;
    top: 1.2em;
    width: 2px;
    height: 0.75em;
    background-color: #2F9CD9;
    transition: all 0.2s;
}

.title::after {
    transform: rotate(90deg);
}

.toggle:checked+.title+.content {
    max-height: 500px;
}

.toggle:checked+.title::before {
    transform: rotate(90deg) !important;
}

.background_mobile {
    background-image: url('../images/bg_main.png') !important;
    background-repeat: repeat !important;
    background-size: cover !important;
    background-position: unset !important;
    display: block !important;
}

/* *********************************** faq ************************************** */
@media (max-width:767px) {

    .title::after,
    .title::before {
        top: 1.3em;
    }

    .btn button {
        width: 60px;
    }
}

@media (max-width:640px) {

    .title::after,
    .title::before {
        top: 1.1em;
    }
}

@media (max-width:400px) {
    .background_mobile {
        background-image: url('../images/mobile_view_back-ground.png') !important;
        background-repeat: repeat !important;
        background-size: cover !important;
        background-position: unset !important;
        display: block !important;
    }
}

@media (max-width: 1279px) {

    .menu_block {
        display: flex;
        gap: 15px;
    }

}

@media (max-width: 1199px) {

    .menu_toggle_btn {
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: auto;
        position: relative;
        z-index: 102;
        margin-left: 0px;
    }

    .menu_toggle_btn span {
        width: 18.39px;
        height: 2px;
        background-color: #ffffff;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

    .menu_toggle_btn span {
        margin-top: 0;
        margin-bottom: 7px;
        width: 23.39px;
    }

    .open_menu .menu_toggle_btn span:nth-child(3) {
        margin-top: 10px;
    }

    .open_menu .menu_toggle_btn span:nth-child(1) {
        -webkit-transform: rotate(44deg) translateY(3px) translateX(5px);
        -ms-transform: rotate(44deg) translateY(3px) translateX(5px);
        transform: rotate(44deg) translateY(3px) translateX(5px);
    }

    .open_menu .menu_toggle_btn span:nth-child(2) {
        -webkit-transform: rotate(-46deg) translateY(-1px) translateX(4px);
        -ms-transform: rotate(-46deg) translateY(-1px) translateX(4px);
        transform: rotate(-46deg) translateY(-1px) translateX(4px);
        width: 23.39px;
    }

    .menu_block {
        position: fixed;
        top: 80px;
        left: 0;
        height: 100%;
        width: 100%;
        background-image: url(../images/mobile_menu_bg.png);
        clip-path: circle(0px at 100% 0px);
        -webkit-clip-path: circle(0px at 100% 0px);
        -webkit-transition: 0.5s ease all;
        -o-transition: 0.5s ease all;
        transition: 0.5s ease all;
        z-index: 100;
        padding: 30px 0 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header_wrapper.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .open_menu .menu_block {
        clip-path: circle(100%);
        -webkit-clip-path: circle(100%);
        opacity: 1;
        visibility: visible;
        pointer-events: visible;
        overflow-y: auto;
        height: calc(100vh - 50px);
        display: inline-block;
        padding: 50px 20px;
    }

    .open_menu .menu_toggle_btn span:nth-child(3) {
        display: none;
    }

    .menu_block li {
        padding-right: 0;
        margin-bottom: 18px;
    }

    .menu_block li>a {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        position: relative;
        text-decoration: none;
        padding: 16px 0;
    }

    .header_btn {
        display: none;
    }

    .menu_block li>a {
        padding: 0;
        color: rgb(0, 0, 0);
    }

    div#menu {
        width: 0%;
    }
}

@media (max-width: 250px) {
    .menu_toggle_btn {
        margin-left: 0px;
    }
}

.card {
    position: relative;
    display: flex;
    justify-content: center;
    /* position: relative; */
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
}

.card:hover .parent {
    transform: translateY(-0.5rem);
    border-radius: 39px;
}

.parent {
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out;
    background-color: #1F2937;
    border-radius: 39px;
}

.card-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 35px;
}

.inner-icon {
    border-radius: 11.22px;
}

.card-overlay {
    position: absolute;
    bottom: -80%;
    /* Initially hidden */
    width: 88%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 10px;
    opacity: 0;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.card:hover .card-overlay {
    transition: opacity 1s ease-in-out;
    bottom: 17px;
    /* Show on hover */
    opacity: 1;
    /* Fully visible */
}

.card-title {
    text-transform: capitalize;
    font-weight: bold;
    margin: 0;

}

@media (max-width: 1023px) {
    .card-overlay {
        padding: 1rem;
        width: 92%;
    }
}

@media (max-width: 374px) {
    /* .card-overlay h2 {
        padding-bottom: 12px;
    } */

    /* .card-overlay .first-game-space {
        padding-bottom: 20px;
        font-size: 1.5rem;
    } */
}


.card-subtitle {
    font-size: 16px;
    margin: 10px 0 0;
}


::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: #000000;
    box-shadow: inset 0 0 5px #79cfff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #0b4793 !important;
    border-radius: 10px;
}

/* ***************************** Form toaster  *************************** */

#toaster {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #DE3434;
    color: #fff;
    text-align: center;
    border-radius: 10px 0 0 10px;
    padding: 10px;
    position: fixed;
    z-index: 999;
    font-size: 17px;
    font-weight: 600;
    top: 110px;
    right: 0px;
}

#toaster.show {
    visibility: visible;
    top: 110px;
    right: 0px;
    animation: slideInFromRight 0.4s ease-out;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width:450px) {
    #toaster {
        min-width: 200px;
        padding: 12px;
        margin-top: -80px;
        font-size: 14px;
        font-weight: 500;
    }

    .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 46px !important;
        height: 46px !important;
    }

    .mobile-font {
        font-size: 0.9rem !important;
    }
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 31px;
    height: 31px;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------------------------------------------------- */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #0976FE 0%, #0298FE 54%, #01A8FF 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s, transform 0.4s, background-color 0.3s;
}

.arrow {
    width: 20px;
    height: 15px;
    object-fit: contain;
}

.back-to-top.show {
    opacity: 1;
    transform: scale(1);
    animation: spinIn 0.6s ease-out, bounceIn 0.6s ease-out;
}

.back-to-top:hover {
    transition: transform 0.5s ease-in-out;
    /* background: linear-gradient(to right, #5350D7 0%, #8E80E7 100%); */
    background: #0961CF;
    border: 1px solid #6A95CA;
}

.back-to-top .arrow {
    display: block;
    animation: arrowBounce 2s infinite;
}

@keyframes spinIn {
    0% {
        transform: rotate(-360deg) scale(0.5);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes bounceHover {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes arrowBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.play-game-button {
    background-color: white;
    color: black;
    font-weight: 600;
    /* Equivalent to font-semibold in Tailwind */
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-image: linear-gradient(to right, cyan, teal);
    background-origin: border-box;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.play-game-button:hover {
    transform: scale(1.05);
    border-color: teal;
}

/* ------------------------------------------------ skeleton ---------------------------------------------- */


.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    background-color: black;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.fade-in.show {
    opacity: 1;
}

/* -------------------- skeleton-desktop and skeleton-mobile -------------------------- */

.skeleton-desktop {
    aspect-ratio: 2.2;
    border-radius: 32px !important;
}

.skeleton-mobile {
    aspect-ratio: 16/18;
    border-radius: 32px !important;
}

@media (max-width: 450px) {
    .skeleton-mobile {
        height: 348PX;
    }

    .skeleton-mobile img {
        background-size: cover;
    }
}

/* .skeleton-desktop-img{
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    transition: opacity 0.7s;
    object-fit: cover; 
    opacity: 0;
    transition-delay: 2s;   
}
.skeleton-desktop-img[onload] {
    opacity: 1;
} */
/* -------------------- skeleton-desktop and skeleton-mobile -------------------------- */
/* -------------------- Start Play Button -------------------------- */

/* html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #000;
} */

.glow-on-hover {
    width: 299px;
    height: 85px;
    border: none;
    outline: none;
    font-size: 41px;
    font-weight: bold;
    line-height: normal;
    color: #0976FE;
    background-color: white;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border: 6.24px solid #1A7EFB;
    border-radius: 131.86px;
}

.banner_text {
    color: white !important;
    font-size: 20px;
    font-weight: 700;
}

.glow-on-hover:before {
    content: '';
    /* background: linear-gradient(45deg, #0976FE, #0298FE, #01A8FF, #5AC7FF, #0976FE, #0298FE, #01A8FF, #5AC7FF, #0976FE, #0298FE, #01A8FF, #5AC7FF); */
    /* background: linear-gradient(45deg,#0976FE,#0298FE,#0976FE,#001A3F,#0976FE,#0298FE,#0976FE,#0976FE,#0298FE,#0976FE,#001A3F,#0976FE,#0298FE,#0976FE); */
    position: absolute;
    top: -10px;
    left: -10px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 131.86px;
}

.glow-on-hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    left: 0;
    top: 0;
    border-radius: 131.86px;
    box-shadow: inset 0px 1px 2px 2px rgb(0 0 0 / 27%);
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@media (max-width:766px) {
    .glow-on-hover {
        width: 165px;
        height: 47px;
        font-size: 23px;
        font-weight: 700;
        border: 3.44px solid #1A7EFB !important;
        border-radius: 126.79px;
    }

    .glow-on-hover:before {
        top: -4px;
        left: -4px;
        width: calc(100% + 8px);
        height: calc(100% + 8px);
    }
}

@media (max-width:450px) {
    .glow-on-hover {
        width: 165px;
        height: 50px;
        font-size: 22.84px;
    }
}

/* -------------------- End Play Button -------------------------- */

/* -------------------- Start Play Button Icon -------------------------- */


/* CSS */
.play-button {
    /* width: 288px; */
    /* height: 82px; */
    /* border: none; */
    outline: none;
    font-size: 39px;
    font-weight: 900;
    color: #0976FE;
    background-color: white;
    cursor: pointer;
    position: relative;
    z-index: 0;
    /* border: 6px solid #1A7EFB; */
    border-radius: 126.79px;
}

.play-button:before {
    content: '';
    background: linear-gradient(45deg, #0976FE, #0298FE, #0976FE, #001A3F, #0976FE, #0298FE, #0976FE, #0976FE, #0298FE, #0976FE, #001A3F, #0976FE, #0298FE, #0976FE);
    position: absolute;
    top: -7px;
    left: -7px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 126.79px;
}

.play-button:hover:before {
    opacity: 1;
}

.play-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: white; */
    left: 0;
    top: 0;
    border-radius: 126.79px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* .play-button-second {
    width: 288px;
    height: 82px;
    border: none;
    outline: none;
    font-size: 39px;
    font-weight: 900;
    color:#0976FE;
    background-color: white;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border: 6px solid #1A7EFB;
    border-radius: 126.79px;
} */
.play-button-second:before {
    content: '';
    background: linear-gradient(45deg, #0976FE, #0298FE, #0976FE, #001A3F, #0976FE, #0298FE, #0976FE, #0976FE, #0298FE, #0976FE, #001A3F, #0976FE, #0298FE, #0976FE);
    position: absolute;
    top: -7px;
    left: -7px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 126.79px;
}

.play-button-second:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 126.79px;
}

.play-button-second {
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

/* .play-icon {
    width: 0;
    height: 0; 
    border-left: 30px solid #1A7EFB; 
    border-top: 20px solid transparent; 
    border-bottom: 20px solid transparent; 
} */

/* -------------------- End Play Button Icon -------------------------- */

/* -------------------- Start Second Detail Page -------------------------- */
.skeleton-desktop-second {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: 5px solid #1A7EFB !important;
    background: transparent !important;
    position: relative;
}

/* .skeleton-mobile-second
{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1A7EFB;
    background: transparent;
} */
.banner-inner-image {
    width: 311px;
    padding: 20px 0px;
    /* height: 414px; */
    border: 2px solid #1A7EFB;
    border-radius: 26px;
    background-color: #002761;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.skeleton-desktop-img-second {
    height: 243.96px;
    width: 252.84px;
    border-radius: 15.46px;
    margin-top: 10px;
}

.skeleton-mobile-second {
    display: none !important;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .banner-inner-image {
        width: 232px !important;
    }

    .banner-inner-image .skeleton-desktop-img-second {
        width: 200px !important;
        height: 200px;
    }
}

@media (max-width:1279px) {
    .banner-inner-image {
        padding: 10px 0px;
        width: 211px;
    }

    .skeleton-desktop-img-second {
        height: 175.96px;
        width: 175.96px;
        border-radius: 15.46px;
        margin-top: 5px;
    }

    .play-button-second img {
        width: 50px;
    }
}

@media (max-width:894px) {
    .banner-inner-image {
        padding: 10px 0px;
        width: 211px;
    }

    .skeleton-desktop-img-second {
        height: 175.96px;
        width: 175.96px;
        border-radius: 15.46px;
        margin-top: 5px;
    }
}

@media (max-width:767px) {
    .banner-inner-image {
        padding: 10px 0px;
        width: 211px;
    }

    .skeleton-mobile-second {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border: none !important;
        background: transparent !important;
    }

    .skeleton-desktop-img-second {
        height: 165px;
        width: 171px;
        border-radius: 10.46px;
        margin-top: 10px;
    }

    .skeleton-desktop-second {
        display: none !important;
    }
}

/* -------------------- Start Second Detail Page -------------------------- */
.skeleton-desktop-second {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: 5px solid #1A7EFB !important;
    background: transparent !important;
}

/* .skeleton-mobile-second
{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1A7EFB;
    background: transparent;
} */
.banner-inner-image {
    width: 311px;
    padding: 10px 0px;
    /* height: 414px; */
    border: 2px solid #1A7EFB;
    border-radius: 26px;
    background-color: #002761;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.skeleton-desktop-img-second {
    height: 243.96px;
    width: 262.84px;
    border-radius: 15.46px;
    margin-top: 12px;
}

.skeleton-mobile-second {
    display: none !important;
}

@media (max-width:894px) {
    .banner-inner-image {
        width: 211px;
    }

    .skeleton-desktop-img-second {
        height: 175.96px;
        width: 175.96px;
        border-radius: 15.46px;
        margin-top: 5px;
    }
}

@media (max-width:849px) {
    .ads_container {
        background-color: #001A3F;
    }

    .ad_1 {
        height: auto !important;
        display: block !important;
    }
}

@media (max-width:767px) {
    .banner-inner-image {
        width: 211px;
    }

    .skeleton-mobile-second {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border: none !important;
        background: transparent !important;
    }

    .skeleton-desktop-img-second {
        height: 165px;
        width: 171px;
        border-radius: 10.46px;
        margin-top: 10px;
    }

    .skeleton-desktop-second {
        display: none !important;
    }
}

.loader {
    border: 7px solid #f3f3f3;
    border-radius: 50%;
    border-top: 7px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 62%;
}

.loader_2 {
    border: 11px solid #f3f3f3;
    border-radius: 50%;
    border-top: 11px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ad_1 {
    display: none;
}

.ads_container {
    height: auto;
}

.ad_3 {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================ Start Full Screen Design ========================  */
#secondSectionFullScree {
    height: 100vh !important;
}

#secondSectionFullScreen .full-screen-main {}

#secondSectionFullScreen .full-screen-main,
#secondSectionFullScreen .full-screen-main-mobile {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    border-radius: unset;
    /* padding-top: 100px; */
    max-width: 618px;
    margin: auto;
}

#secondSectionFullScreen .full-screen-main-mobile {
    max-width: 400px;
}

#secondSectionFullScreen .banner-inner-image {
    margin-bottom: 100px;
}

#secondSectionFullScreen .skeleton-desktop-second {
    border: unset !important;
}

#secondSectionFullScreen .full-screen-slider {
    position: absolute;
    bottom: 0px;
}

#secondSectionFullScreen #back-button-fullscreen {
    width: 70.81px;
    height: 51.6px;
    border-radius: 0px 15px 15px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #002F73;
    position: absolute;
    top: 100px;
}

#secondSectionFullScreen #back-button-fullscreen img {
    width: 33px;
}

#secondSectionFullScreen #back-button-fullscreen i {
    color: white !important;
}

.full-screen-bg {
    background-image: url('../images/fullscreen_bg.png') !important;
    background-repeat: repeat !important;
    background-size: cover !important;
    background-position: unset !important;
    /* display: block !important; */
}

#secondSectionFullScreen .full-screen-slider {
    /* border-top: solid 3px #1A7EFB; */
}

#secondSectionFullScreen .full-screen-slider #toggle-slider {
    height: 31.37px;
    width: 57.98px;
    border-radius: 10.68px 10.68px 0px 0px;
    border-right: solid 1.58px #1A7EFB;
    border-top: solid 1.58px #1A7EFB;
    border-left: solid 1.58px #1A7EFB;
    margin-left: 5px;
    background-color: #002253;
}

#secondSectionFullScreen .full-screen-slider .btn-slider {
    display: none !important;
}

#secondSectionFullScreen .card:hover .parent {
    transform: unset !important;
}

#secondSectionFullScreen .card:hover .card-overlay {
    bottom: 5px !important;
}

#secondSectionFullScreen .full-screen-slider #toggle-slider i {
    font-size: 25px;
}

#secondSectionFullScreen .full-screen-slider .slider {
    border-bottom: solid 1.58px #1A7EFB;
    border-top: solid 1.58px #1A7EFB;
    border-right: none !important;
    border-left: none !important;
    height: 138px !important;
    border-radius: unset !important;
}

#secondSectionFullScreen .full-screen-slider .slider-container {
    height: 116.71px !important;
    /* width: 116.71px !important; */

}

#secondSectionFullScreen .full-screen-slider .slider-container .card-slider {
    height: 116.71px !important;
    min-width: 116.71px !important;

}

#toggle-slider {
    position: absolute;
    z-index: 999;
    top: -30px;
}


@media (max-width:450px) {
    #secondSectionFullScreen #back-button-fullscreen {
        top: 30px;
    }

    #secondSectionFullScreen .full-screen-main-mobile {
        max-width: 300px;
    }

    #secondSectionFullScreen .full-screen-slider .slider {
        height: 88px !important;
    }

    #secondSectionFullScreen .full-screen-slider .slider-container {
        height: 72px !important;
        /* width: 116.71px !important; */

    }

    #secondSectionFullScreen .full-screen-slider .slider-container .card-slider {
        height: 72px !important;
        min-width: 72px !important;
    }

    #secondSectionFullScreen .full-screen-slider #toggle-slider {
        height: 20.56px;
        width: 38px;
    }

    #toggle-slider {
        position: absolute;
        z-index: 999;
        top: -20px;
    }

    #secondSectionFullScreen .card:hover .card-overlay {
        opacity: 0 !important;
    }

    #secondSectionFullScreen .card-image-slider {
        border-radius: 9px !important;
    }

    #secondSectionFullScreen .full-screen-main-mobile {
        /* padding-top: 150px !important; */
    }

    #secondSectionFullScreen .banner-inner-image {
        margin-bottom: 145px;
    }
}

/* ************************************** back game button design  **************************************** */
.game_back_button_bg {
    display: flex;
    gap: 10px;
    background-color: #002F73;
    padding: 12px;
    border-radius: 0 14px 14px 0px;
    align-items: center;
}

#game-back-button {
    cursor: grab;
    user-select: none; /* Prevent text selection during drag */
    transition: top 0.2s ease-in-out; /* Add a smooth transition effect */
}

#right-side-button {
    cursor: pointer;
}

#gameIframeContainer {
    position: relative;
}

/* ============================ End Full Screen Design ========================  */
.ad_title {
    font-size: 12px;
    text-align: center;
}

/* Loader */
.loader-space {
    bottom: 22%;
}

@media (max-width:1279px) {
    .loader-space {
        bottom: 17%;
    }
}

@media (max-width:1199px) {
    .loader-space {
        bottom: 18%;
    }
}

@media (max-width:767px) {
    .loader-space {
        bottom: 27%;
    }
}

@media (max-width:554px) {
    .loader-space {
        bottom: 19%;
    }
}

/* <!-- =============================================================== Start Full Screen Slider ============================================================================ --> */

#carousel.owl-carousel.owl-loaded{
    padding-bottom: 0px;
    height: 138px;
    background-color: #0F3A9D ;
    border-bottom: #1A7EFB;
    border-top: #1A7EFB;
    padding: 11px 0px;
}
#carousel .parent{
    width: 116.71px;
    height: 116.71px;
    border-radius: 15.11px;
}

#carousel .parent img {
        /* height: 100%; */
        border-radius: 15.11px;
        object-fit: cover;
    }
    .owl-item {
        height: 186px;
    }

    /* #carousel .owl-nav button {
        position: absolute;
        top: 50%;
        background-color: #000;
        color: #fff;
        margin: 0;
        transition: all 0.3s ease-in-out;
    } */
/* 
    #carousel .owl-nav button.owl-prev {
        left: 0;
    }

    #carousel .owl-nav button.owl-next {
        right: 0;
    } */
/* 
    #carousel .owl-dots {
        text-align: center;
        padding-top: 15px;
    } */
/* 
    #carousel .owl-dots button.owl-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: inline-block;
        background: #ccc;
        margin: 0 3px;
    } */
/* 
    #carousel .owl-dots button.owl-dot.active {
        background-color: #000;
    } */

    /* #carousel .owl-dots button.owl-dot:focus {
        outline: none;
    } */
/* 
    #carousel .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.38) !important;
    } */

    /* span {
        font-size: 70px;
        position: relative;
        top: -5px;
    } */
/* 
    #carousel .owl-nav button:focus {
        outline: none;
    } */
/* 
    #carousel .owl-item {
        height: 300px !important;
       
        display: flex;
    } */

    /* #carousel .item {
        width: 100%;
    } */
/* <!-- =============================================================== End Full Screen Slider ============================================================================ --> */
@media (max-width:451px) {
    .loader-space {
        bottom: 20%;
    }
}

/***************************************** Slider ******************************************** */
.hero_slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #002253;
    height: 200px;
    border: solid 2px #1A7EFB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}
.hero_slider .owl-stage-outer{
    position: relative;
    display: flex;
    padding-left: 15px;
}
.hero_slider .owl-stage{
    height: 150px;
    position: absolute;
    top: 0;
    height: 200px;
    gap: 15px !important;
}
.hero_slider .owl-item{
    width: 150px !important;
    height: 150px;
    margin-right: 0px !important;
}
.btn-slider{
    display: block;
    width: 100%;
    height: auto;
}
.owl-nav button{
    
}

.item {
    min-width: 150px;
}

.card-slider {
    min-width: 150px;
    margin: 0 5px;
    text-align: center;
    border: unset;
}

.card-image-slider {
    border-radius: 20px !important;
}


.hero_slider:hover .owl-nav button{
    position: absolute;
    top: 50%;
    width: 36px;
    height: 60px;
    font-size: 25px;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #01A8FF, #0298FE, #0976FE) !important;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.hero_slider .owl-prev {
    left: 0px;
    border-radius: 0px 15px 15px 0px;
}

.hero_slider .owl-next {
    right: 0px;
    border-radius: 15px 0px 0px 15px;
}

@media screen and (min-width: 1024px) and (max-width:1199px) {
    /* .slider:hover .btn-slider {
        position: absolute;
        top: 50%;
        height: 56px;
        width: 32px;
        transform: translateY(-50%);
        font-size: 20px;

    } */

}
@media screen and (min-width: 1024px) and (max-width:1199px) {
    .slider {
        height: 119px;
    }

    .slider-container {
        height: 100px !important;
    }

    .card-slider {
        min-width: 100px;
    }

    /* .slider:hover .btn-slider {
        position: absolute;
        top: 50%;
        height: 56px;
        width: 32px;
        transform: translateY(-50%);
        font-size: 20px;

    } */

}