/* Winners Section */
.winners-section {
    padding: 0.5rem 0.75rem 0;
    overflow: hidden;
}
.winners-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.winners-trophy {
    font-size: 1.1rem;
}
.winners-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0c040;
}
.winners-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}
.winners-scroll-track {
    display: flex;
    gap: 0.6rem;
    animation: winnersScroll 20s linear infinite;
    width: max-content;
}
.winners-scroll-track:hover {
    animation-play-state: paused;
}
.winner-card {
    flex-shrink: 0;
    width: 7rem;
    background: linear-gradient(145deg, #2a2520, #1a1712);
    border: 1px solid rgba(240, 192, 64, 0.15);
    border-radius: 0.6rem;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.winner-card-logo {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.4rem;
    overflow: hidden;
}
.winner-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.winner-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    width: 100%;
}
.winner-card-name {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.winner-card-game {
    font-size: 0.6rem;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.winner-card-amount {
    font-size: 0.7rem;
    color: #4ade80;
    font-weight: 700;
}
@keyframes winnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

span.game_menu_text {
    display: block;
    width: 100%; 
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.game_menu_item {
    min-width: 4.5rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 5rem;
}
.swiper-slide.provider___swiper {
    border-radius: 150px;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
img.game_menu_icon {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    object-position: center;
    margin-bottom: .25rem;
    display: block;
}
.game-menu-list {
    flex: 1 1 0%;
    height: 100%;
    padding-bottom: 1.2rem;
    overflow: hidden;
}



.textformore.mt-\[1rem\].mb-\[1rem\].flex.justify-between.px-3 {
    margin-top: 0.5rem;
}

.hot_games[data-category-type="Slot"], .hot_games[data-category-type="Fishing"], .hot_games[data-category-type="Casino"], .hot_games[data-category-type="Arcade"]  {
    margin-top: 2rem;
}


.game_category {
    margin-top: .75rem;
    margin-bottom: .25rem;
    padding-bottom: 0;
    padding-inline: .5rem;
}
span.game_name {
    font-size: .75rem;
    text-align: center;
    align-items: center;
    display: flex;
    margin-top: .25rem;
    justify-content: center;
}

.text-bg {
    background: var(--secondary-gradient-bg);
    width: fit-content;
    text-align: end;
    display: flex;
    justify-content: flex-end;
    float: right;
    padding: .35rem;
    border-radius: .4rem;
    color: #1e1e1e;
    line-height: 1.5;
    font-weight: 600;
}
.game_menu_item  {
    opacity: .88;
    cursor: pointer;
}
.game_menu_item.py-3.game_category_active {
    opacity: 1 !important;
    transition: .2s 
ease-in-out;
}
.game-content-wrap {
    overflow: hidden;
    padding: .5rem;
    min-height: 150px;
}
.game_category_active {
    background: var(--game-menu-active-bg);
    border-radius: 1rem;
    opacity: 1 !important;
}

.game-content-wrap-bg {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.35rem;
    background: #222224;
    border-radius: 2.2rem;
    box-shadow: inset 0 .2rem .28rem .2rem rgba(98, 189, 255, .25), inset 0 .2rem .28rem .1rem rgba(247, 88, 77, .25);
    position: relative;
    width: 100%;
}

.shine:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        90deg, 
        hsla(0, 0%, 100%, 0.062) 0%, 
        hsla(0, 0%, 100%, 0.062) 77%, 
        hsla(0, 0%, 100%, 0.205) 92%, 
        hsla(0,0%,100%,0)
    );
    transform: rotate(35deg);
    animation: animate-shine 1s ease-in-out infinite;
}

@keyframes animate-shine {
    0% {
        left: -60%;
    }
    100% {
        left: 120%;
    }
}
.shine {
    position: relative; 
    overflow: hidden; 
}

.game_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem .85rem;
    margin-top: 1rem;
}

.game_background {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: .5rem;
} 
h2.category-header.text-white.text-xl.font-bold.mb-2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1.75rem;
}
.lazy-load-image-background.blur.lazy-load-image-loaded.android {
    -webkit-filter: blur(0);
    filter: blur(0);
    transition: none;
    -webkit-filter: blur(0);
    filter: blur(0);
    transition: -webkit-filter .14s;
    transition: filter .14s;
    transition: filter .14s, -webkit-filter .14s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-list-item {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

img.game_img {
    opacity: 1;
    transition: none;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-radius: .5rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.provider_item {
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: .4rem;
    flex: 1 1 0;
    min-width: 0;
}
.providerList {
    display: flex;
    align-items: center;
    overflow-x: auto;
    width: 100%;
}
img.provider_logo {
    object-fit: contain;
    width: auto;
    height: 1.35rem;
    max-width: 100%;
    filter: grayscale(100%) brightness(200%) contrast(10%);
}
.provider_item.provider_active {
    position: relative;
    border-radius: .85rem;
    z-index: 1;
    overflow: hidden;
}

.provider_item.provider_active::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: bg_slide_in 0.3s ease-in-out forwards;
    background: linear-gradient(135deg, #abdcff, #0396ff);
        border-radius: 150px;
}
 

.filter-container {
    width: 100%;
}
.provider_item.provider_active>img.provider_logo {
    filter: none !important;
}
.filter__container {
    display: flex;
    flex-flow: column;
    max-width: 100%;
    overflow: hidden;
    background: #7b673c;
    align-items: center;
    padding: 1rem .5rem;
    border-radius: 1.35rem;
}
input#gameSearch {
    height: 2rem;
    line-height: 1.5;
    padding: 0 0.4rem 0 2.7rem;
    background: #272114;
    border-radius: 1.4rem;
}
#gameSearch:focus, #gameSearch:focus-visible, #gameSearch:focus-within {
    background: #2a2d36;
    border: 2px solid #2889f0;
    box-shadow: inset 0 .13rem .13rem 0 rgba(0, 0, 0, .25);
    outline-width: 0;
}
.search_icon {
    transform: rotateZ(270deg);
    left: 12px;
    font-size: 1.2rem;
    width: fit-content;
    height: 100%;
}
input#gameSearch::placeholder {
    line-height: 1.5;
    font-size: .856rem;
}
.search-bar-container {
    margin-bottom: 1rem;
}

.no_games_found {
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-flow: column;
} 
.game_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 1rem .85rem;
    margin-top: 1rem;
} 
.game_list:has(.game-list-item:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
}
.no_data {
    font-size: 1.3rem;
}
img.empty_img {
    opacity: .3;
}

.game_category_display {
    position: relative;
    width: 100%;
    height: 100%;
}
.selector {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background: #000000;
    border-radius: 50%;
    color: #adc8db;
}
button.pagination-btn.pagination-next,
button.pagination-btn.pagination-previous {
    background: #fff;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100%;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    text-shadow: 0 0 1px BLACK;
    align-items: center;
    text-align: center;
}

button.pagination-btn.pagination-prev.p-2.disabled\:opacity-50.disabled\:cursor-not-allowed {
    background: #fff;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0;
    text-shadow: 0 0 1px BLACK;
    align-items: center;
    text-align: center;
}
.wrapper_modal_head>span {
    min-width: 4rem;
    display: flex;
    justify-content: center;
    background: #ffffff2e;
    padding: .2rem;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
div#newloader, #loading,.load {
    position: fixed;
    width: 100%;
    height: 100dvh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
}
.game_loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    background: rgba(0, 0, 0, 0.418);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9999999;
}
@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.game_loading .spinner {
    width: 38px;
    height: 38px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 9999999;
}

.overlay__loader__bg {
    position: fixed;
    z-index: 0;
    width: 100%;
    height: 100dvh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff00;
    -webkit-backdrop-filter: blur(1.06rem);
    backdrop-filter: blur(1.06rem);
    z-index: 999999;
}

.game_modal_header {
    transition: transform 0.35s ease;
    transform: translateY(-100%); 
}

.game_modal_header.show {
    transform: translateY(0); 
} 
.deposit_gameplay_opener {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400 !important;
    background: linear-gradient(#e8c16e, #b99340);
    border-radius: 50px;
    max-width: 100px;
    margin: 0 auto;
}
