:root{
    /* --clr-primary: #ff8400;
    --clr-secondary: #fbba56; */
    --clr-primary: #ffc100;
    --clr-hover: #e7af00;
    --clr-secondary: #282828;
    --background-dark: linear-gradient(360deg, black, #454545);
    --background-transparent: rgba(255, 204, 0, 0.1);
    --grd-primary: linear-gradient(0deg, #eac943 0%, #f8b838 100%);
    --grd-btn: linear-gradient(0deg, black, rgb(21 67 0));
    --default-shadow: 0 5px 10px 1px rgba(0,0,0,0.3);
    --clr-asc: #ffc800;
    --clr-cyan: #ffb300;
    --grd-black: linear-gradient(0deg, rgb(0 0 0) 0%,#703600 100%);
    --grd-neon: linear-gradient(0deg, rgb(123, 84, 0) 0%, rgb(57, 29, 0) 30%, rgb(0, 0, 0) 100%);
}

html{
    margin: auto;
    position: relative;
}

html, body{
    height: 100%;
    overflow: hidden;
    /*max-width: 500px;*/
}

*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: black;
}

.text-primary{
    color: var(--clr-primary);
}

#content{
    z-index: 1;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    top: 80px;
    bottom: 55px;
    background: #fff7df;
    background: #e3e3e3;
    background-size: cover;
    background-position: center;
    color: #fff;
    /* background-image: url("../img/background.jpg"); */
}

header{
    z-index: 2;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    gap:0.5rem;
    justify-content: space-between;
    height: 60px;
    background: linear-gradient(180deg, #353535, #000000);
}

header a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#site-logo{
    max-height: 80%;
    max-width: 100%;
}

#marquee{
    z-index: 2;
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 100%;
    /* background: linear-gradient(90deg, #002701 0%, #0a592d 50%, #002701 100%); */
    /* color: white; */
    /* color: black; */
    /* background: black;
    color: yellow; */
    background: var(--clr-primary);
    color: black
    /* background: var(--clr-asc); */
}

#marquee span{
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    margin: auto;
    white-space: nowrap;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 40s;
    top: 50%;
    transform: translateY(-50%);
}

#marquee::after {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    top: 2px;
    left: 0;
    background-image: url(../img/6397a1a0d2b4657b8de0d.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: #ffc100;
}

@keyframes marquee{
    from{
        right: -90%;
    }
    to{
        right: 100%;
    }
}

.hide{
    display: none !important;
}

.box{
    padding: 0 10px 15px;
    color:black;
}

.box.single {
    margin: 30px auto;
}

svg > *{
    color:var(--clr-purple);
}

::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

section{
    padding: 3rem 1.5rem;
}

a{
    text-decoration: none;
}

.mt-10{
    margin-top: 10px;
}
.mt-15{
    margin-top:1.5rem;
}

.mb-15{
    margin-bottom:1.5rem;
}

.mb-20{
    margin-bottom:2rem;
}

.mb-25{
    margin-bottom:2.5rem;
}

.mw{
    max-width: 500px !important;
}

.btn{
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    line-height: 1
}

.btn-cancel{
    color: #ffffff;
    background: #ff0000;
    border: 2px solid #b70000;
}

.btn-primary{
    /* background: linear-gradient(0deg, rgb(255, 185, 65) 0%, rgb(255, 200, 20) 100%);
    border: 2px solid rgb(255, 0, 0);
    color: white;
    box-shadow: 0 5px 5px rgba(0,0,0,0.5); */
    background: var(--clr-primary);
    color: black;
    border: 2px solid black;
    min-width: 100px;
}

.btn-secondary {
    background: linear-gradient(0deg, rgb(234 137 45) 0%, rgb(226 121 47) 100%);
    box-shadow: 0 5px 5px rgb(227 159 17 / 50%);
}

.btn-submit{
    background: var(--clr-primary);
    /* box-shadow: 0 5px 5px rgba(0,0,0,0.5); */
    color: black;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid black;
    transition: 0.3s;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-submit:hover{
    background: var(--clr-hover);
}

.bg-dark{
    background: var(--background-dark);
}

.bg-primary{
    background: var(--grd-primary);
}

.bg-transparent{
    background: var(--background-transparent);
}

.text-success{
    color: #008400;
}

.text-secondary{
    color: var(--clr-secondary);
}

.text-error{
    color: red;
}

.text-center{
    text-align: center
}

.ds{
    box-shadow: var(--default-shadow);
}

header .col{
    padding: 0.5rem;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

header .col-1{
    flex: 0 0 calc(20% - 0.5rem);
}

header .col-2{
    flex: 0 0 calc(60% - 0.5rem);
    margin: auto;
    justify-content: center;
}

header .col-3{
    flex: 0 0 calc(20% - 0.5rem);
    margin: auto;
    justify-content: flex-end;
    align-items: center;
}

header img{
    max-height: 80%;
}

.hide{
    display: none !important;
}

#live-transaction{
    margin-top: 10px;
    font-size: 12px;
    /* padding: 5px; */
    border-radius: 3px;
    /* border: 1px solid var(--clr-cyan); */
    background: var(--clr-primary);
}

#live-transaction .title{
    color: white;
}


#live-transaction .top{
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background: black;
    border-radius: 5px 5px 0 0;
}

#live-transaction .live{
    display: flex;
    background: red;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    gap: 3px;
    flex-wrap: nowrap;
    align-items: center;
    animation: live 1.85s infinite;
    font-weight: 600;
    padding: 3px 5px;
    line-height: 1;
}

#live-transaction .live span{
    border-radius: 25px;
    background: #fff;
    width: 8px;
    height: 8px;
}

@keyframes live{
    0%{
        opacity: 0;
    }

    50%{
        opacity: 1;
    }

    100%{
        opacity: 0;
    }
}

#live-transaction .table-th{
    display: flex;
    text-align: left;
    justify-content: flex-start;
    align-items: center;

    font-weight: 600;
    line-height: 1;
    gap: 5px;
    flex-wrap: nowrap;
    color: white;
    width: 100%;
    overflow: hidden;

}

#live-transaction .table-th div{
    flex: 50%;
    font-size: 14px;
    padding: 5px;
    background: var(--clr-cyan);
}

#live-transaction .span{
    background: white;
}


#live-transaction .title{
    font-size: 14px;
    font-weight: 600;
}

#live-transaction .container{
    display:flex;
    gap: 5px;
    color:white;
    padding: 5px;
}

#live-transaction table{
  width: 100%;
  border-collapse: collapse;
}

#live-transaction thead td{
    border-radius: 8px;
    text-align: center;
    background: rgb(91 91 91 / 25%);
    color: white;
    padding: 5px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

#live-transaction td{
    font-size: 10px;
    line-height: 0.8;
    padding: 3px;
    color: #db6200;
    font-weight: 600
}

#live-transaction .amount{
    color: var(--clr-secondary);
    text-align: right;
    font-weight: 600
}

#balance-wrapper{
    background: white;
    border-radius: 15px;
    padding: 5px 5px;
    border-radius: 8px;
    background-image: url('../img/sign-form-background.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5px #ff8d0b;
    margin-top: 15px;
}

.form-wrapper{
    background: linear-gradient(0deg, #fff4d9, #ffffff);
    /* filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, .5)); */
    /* border: 2px solid var(--clr-primary);
    border: 2px solid white; */
    border: 2px solid #000000;
    background: #ffffff;
    margin: 0 auto;
    padding: 15px;
    border-radius: 5px;
}

.form-wrapper {
    margin: 0 auto;
    padding: 15px;
    border-radius: 5px;
}

.form-wrapper .header {
    font-size: 28px;
    color: var(--clr-style-1);
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    margin: 5px auto 5px;
    text-align: center;
}

#sign-form{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5px 5px;
}

#sign-form a{
    width: 50%;
    background-size: 100% 100%;
    text-shadow: none;
    max-width: 320px;
    text-align: center;
    font-size: 18px;
}

#sign-form a img{
    width: 100%;
    max-width: 210px;
}

#balance-wrapper .information{
    display: flex;
    gap: 5px;
    padding: 5px 0;
}

#balance-box{
    width: 62%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    padding-left: 10px;
}

#balance-box .title{
    font-size: 14px;
}

#balance-box .amount{
    font-size: 20px;
    margin: 5px 0;
    font-weight: 600;
}

#balance-box p, #balance-box b{
    font-size: 12px
}

#fund-options{
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 0 5px;
}

#fund-options a{
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgb(250, 204, 55);
    text-align: center;
    justify-content: center;
    color: var(--clr-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(180deg, #ffffff, #cfe0fb);
    border: none;
}

#fund-options a img{
    width: 24px;
}

#referral-wrapper{
    position: relative;
    /* margin: 10px -10px 0 -10px; */
}

#referral-wrapper img{
    width: 100%;
}

#referral-wrapper .option-wrapper{
    position: absolute;
    left: 0;
    bottom: 30px;
    width: calc(100% - 20px);
    margin: 0 10px;
}

#referral-wrapper .options{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

#referral-wrapper a{
    flex: 0 0 calc(50% - 10px);
    color: var(--clr-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(180deg, #ffffff, #cfe0fb);
    border: none;
    padding: 10px;
    min-height: 36px;
}

#lucky-draw img{
    width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

#banners img{
    width: 100%;
}

#navi-menu{
    display: flex;
    bottom:0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    justify-content: space-around;
    height: 55px;
    align-items: center;
    background: var(--background-dark);
    box-shadow: 0 -5px 10px #00000055;
}

#navi-menu a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: white;
    flex-direction: column;
    flex: 0 0 20%;
    margin-top: 3px;
}

#navi-menu label{
    color: rgba(255,255,255, 0.5);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

#navi-menu img{
    width: 100%;
    max-width: 30px;
    height: auto;
    filter: grayscale(1) brightness(0.8);
}

#navi-menu .active img{
    filter: drop-shadow(0px 0px 0px var(--clr-primary));
}

#navi-menu .active label{
    color: white;
}

#game-wrapper{
    margin: 15px -5px 0 -5px;
    border-radius: 5px;
    background: #dfdfdf;
    background: #c3c3c3;
    border: 1px solid #8c8c8c;
}

#game-options {
    width: 100%;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

#game-options .option{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    border-radius: 8px;
    background: linear-gradient(0deg, rgb(53 53 53) 0%, rgb(12, 12, 12) 50%, rgb(85 85 85) 100%);;
    transform: scale(0.95);
    line-height: 1;
    min-width:120px;
    max-width: 120px;
}

#game-options .game-option{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    border-radius: 8px;
    transform: scale(0.95);
    line-height: 1;
    min-width: 120px;
    max-width: 160px;
    padding: 0px;
}

#game-options .game-option.active{
    animation: jumping 0.375s linear infinite
}

@keyframes jumpSideways {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-3px);
    }
    100% {
        transform: translateX(0);
    }
}

#game-options .option.active{
    /*background: linear-gradient(359deg, #ed754c, transparent);*/
    background: linear-gradient(359deg, #c4901e, #fff69c);
    border-radius: 8px;
    /* background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(13, 8, 107) 50%, rgb(11, 1, 41) 100%); */
    border: 2px solid var(--clr-primary);
    transform: scale(1);
    filter: drop-shadow(0 3px 5px #4066ee6e);
    /* animation: jumpSideways 1s infinite ease-in-out; */
    background: linear-gradient(360deg, #0a0a0a, #343433);
    background: linear-gradient(360deg, #ffaf00, #ffc100);
}

#game-options img{
    height: 48px;
    /* filter: grayscale(1); */
}

#game-options .active img{
    filter: grayscale(0);
}

#game-options label{
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #c1c1c1;
}

#game-options .active label{
    color: white;
    color: black;
}

#games{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    overflow-x: scroll;
    white-space: nowrap;
    cursor: grab;
    scroll-behavior: smooth; /* Optional: makes manual scrolling smoother */
    user-select: none; /* Prevents accidental text selection */
    -webkit-overflow-scrolling: touch;
}

.games::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari */
}

#games .game{
    flex: 0 0 calc(33% - 5px);
    position: relative;
    animation: zoomEffect 1.5s infinite ease-in-out;
    will-change: transform;
}


#games .game:before{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: black;
    color: var(--clr-primary);
    font-weight: 600;
    border-radius: 5px;
    top: 10px;
    font-size: 10px;
    line-height: 1;
    padding: 3px 8px;
}

/* #games .game.slot:before{
    content: 'SLOT';
} */

#games .game.livegame:before{
    content: 'LIVE';
}

/* #games .game.apk:before{
    content: 'APK';
}

#games .game.sports:before{
    content: 'SPORTs';
} */

#games .game.fishgame:before{
    content: 'FISHING';
}

#games .game.freegame:before{
    content: 'FREE BONUS';
    background: red;
    animation: freebonus .5s infinite linear
}

@keyframes freebonus{
    from{
        color: var(--clr-primary)
    }

    to{
        color: #fff
    }
}

#games img{
    width: 90%;
    filter: drop-shadow(0 3px 5px #e4af7263);
    margin: 0 5%;
}

@keyframes zoomEffect {
    0% {
        transform: scale(0.97);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.97);
    }
}

#games .disabled:after {
    content: '';
    position: absolute;
    height: 64px;
    width: 80px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 0 6px rgba(0, 0, 0, 0.6));
}

#games .disabled img {
    filter: brightness(0.5);
}

#games .under-maintenance:after {
    background-image: url(../img/maintenance2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


#games .lock:after {
    background-image: url(../img/lock2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


@media only screen and (max-width: 1600px){
    #game-options {
        width: calc(100% - 20px);
        margin-left: 10px;
    }

    /* #games{
        padding: 0 10px;
    } */
}

@media only screen and (max-width: 1200px){
    #game-options .option {
        min-width: 80px;
        max-width: 80px;
        /* width: 100px; */
        gap: 4px;
    }

    #game-options .game-option {
        min-width: 80px;
        max-width: 80px;
        /* width: 100px; */
        gap: 4px;
        cursor: pointer;
    }

    #game-options img {
        height: 32px;
        /* filter: grayscale(1); */
    }
}

#profile-container{
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
}


.section-header{
    border-radius: 50px;
    display: flex;
    position: absolute;
    bottom: 100%;
    transform: translate(-50%, 50%);
    left: 50%;
    display: flex;
    justify-content: center;
    height: 40px;
    align-items: center;
    gap: 5px;
    color: var(--clr-primary);
    border: 2.5px solid var(--clr-primary);
    min-width: 250px;
    max-width:375px;
    width:60%;
    padding: 15px;
}

.section-header label{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-wrap: nowrap;
}

.section{
    position: relative;
    padding: 40px 0px;
    border-radius: 8px;
}

form{
    margin: 0;
}

.input-field{
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    border-bottom: 2px solid rgb(254 181 31 / 75%);
    transition: 0.3s;
    background: linear-gradient(0deg, rgb(199 199 199 / 10%), transparent 60%);
    position: relative;
}

.inp-default {
    font-size: 16px;
    padding: 0;
    margin: 10px 5px;
    background: none;
    border-radius: 0;
    border: none;
    color: black;
}

.input-field:not(.default) {
    position: relative;
}

.input-field.custom {
    position: relative;
}

.input-field:not(.default) label {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 5px;
    transition: top 0.35s ease;
}

.input-field.custom label {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 5px;
    transition: top 0.35s ease;
}

.input-field label {
    font-size: 16px;
    color: rgb(0, 0, 0);
    opacity: 0.5;
}

.input-field .icon-tabler-lock {
    position: absolute;
    right: 5px;
    bottom: 10px;
}

.input-field:not(.default) input:not(:placeholder-shown)~label, .input-field:not(.default).focus label {
    top: -11px;
    font-weight: 600;
    opacity: 1;
    left: 0;
}
.input-field.custom input:not(:placeholder-shown)~label, .input-field.custom.focus label {
    top: -11px;
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
    left: 0;
}

.input-field.focus {
    border-bottom: 2px solid var(--clr-primary);
    background: linear-gradient(0deg, #fff99a0f, transparent);
}

.input-field.focus label {
    color: var(--clr-primary);
}

.input-field.with-note{
    margin-bottom: 32px;
}

.group-input{
    display: flex;
    position: relative;
}

.group-input .input-field{
    width: 100%;
}

.group-input .extra-field{
    width: 25%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-3px, calc(-50% + -15px));
    z-index: 2;
}

.btn-otp{
    background: #000;
    width: 90%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-primary);
    border: 1px solid;
    font-size: 14px;
}

.btn-otp.disabled{
    background: #636363;
    color: #f1f1f1;
    border: none;
    text-transform: unset;
    font-weight: 400;
}

.additional-link{
    color: black;
    font-size: 14px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 10px 0 15px;
}

.additional-link span{
    color: black;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid black;
}

.input-note{
    display: flex;
    justify-content: flex-start;
    color: #515151;
    position: absolute;
    bottom: -20px;
    padding: 0 3px;
    font-size: 11px;
}

.input-note.red{
    color: red;
}

.input-field .cus-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
    color:black;
}

.sel-default{
    font-size: 16px;
    padding: 0;
    margin: 10px 0 5px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-sizing: border-box;
    color: black;
}

.sel-default option {
    background-color: rgba(255,255,255,0.1) !important;
    border-radius: 0;
    padding: 5px;
    color: black;
    box-sizing: border-box;
}

select option {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.upload-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 5px;
}

.upload-label .txt {
    font-size: 16px;
    color: white;
    opacity: 0.5;
    font-weight: 400;
}

.inp-browse {
    background: var(--clr-primary);
    border-radius: 5px;
    padding: 5px 10px;
}

.input-field .label-btn {
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
}

.uploaded-receipt {
    display: none;
    max-height: 200px;
    height: auto;
    max-width: 100%;
    overflow: hidden;
    margin: auto;
}

.uploaded-receipt.show {
    display: inline;
    margin-bottom: 25px;
}

#receipt-x {
    display: none;
    position: absolute;
    bottom: -9px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    border-radius: 5px;
    background: var(--red);
    max-width: 70px;
    padding: 5px;
}

#receipt-x.show {
    display: inline;
}


.notice-box {
    background: #555555;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    margin: 5px 0 15px 0;
}

.notice-box .top {
    display: flex;
    gap: 5px;
    align-items: center;
    color: white;
    justify-content: space-between;
}

.notice-box .top .label {
    display: flex;
    gap: 8px;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.notice-box .top img {
    height: 16px;
    width: 16px;
}

.notice-box .svg-toggle {
    transform: rotate(0deg);
    transition: 0.6s;
}

.notice-box .content {
    z-index: 1;
    overflow: hidden;
}

.notice-box .content ul {
    transform: translateY(-15px);
    animation: showNotice 0.6s forwards;
}

.notice-box ul {
    margin: 10px 0 0 0;
    padding-inline-start: 25px;
}

.notice-box li {
    color: white;
}

.notice-box p {
    font-size: 12px;
    font-weight: 400;
    color: white;
}

.notice-box.minimize .content ul {
    animation: hideNotice 0.6s forwards;
}

#apk-game-info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#myModal .content{
    max-width: 350px;
    margin: auto;
    padding: 15px 10px;
}

#apk-game-info img{
    width:55%;
    margin: 25px auto;
}

#apk-game-info .account-info{
    border: 1px solid #000;
    border-radius: 8px;
    margin: 5px;
    background: white;
}

#apk-game-info .top{
    text-align: center;
    color: var(--clr-primary);;
    padding: 5px;
    background: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #000;
}

#apk-game-info .row{
    border-bottom: 1px solid #000;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 0, 0);
}

#apk-game-info .row:last-of-type {
    border-bottom: none;
}

#apk-game-info label{
    line-height: 1;
    font-size: 12px;
}

#apk-game-info .value{
    margin-top: 5px;
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
    margin-bottom: 5px;
}

#apk-game-info .btn-copy{
    display: flex;
    align-items: center;
    justify-content: center;
}

#apk-game-info .action-wrapper{
    margin: 5px;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
}

#apk-game-info .btn{
    width: 50%;
    padding: 8px 15px;
    font-size: 16px;
}

#apk-game-info .download-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 5px;
    align-items: center;
    padding: 10px;
    background: rgb(255 193 0 / 53%);
    border-radius: 8px;
}

#apk-game-info .download-wrapper label{
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 600;
}

@keyframes text-glow{
    0%{
        filter: drop-shadow(0 0 5px rgba(245, 222, 179, 0));
    }

    50%{
        filter: drop-shadow(0 0 5px rgba(255, 140, 0, 1));
    }

    100%{
        filter: drop-shadow(0 0 5px rgba(245, 222, 179, 0));
    }
}

#apk-game-info .download-wrapper a{
    font-size: 13px;
    line-height: 1;
    background: #000;
    text-transform: uppercase;
    color: var(--clr-primary);
    border-radius: 8px;
    padding: 8px 10px;
    font-weight: 600;
    cursor: pointer;
}

#apk-game-info .download-wrapper a:hover{
    animation: jumping .375s linear;
}

#share-referral-content{
    padding: 15px
}


#share-referral-content h1{
    color: #000;
    margin: 0 auto 10px;
    text-align: center;
}

#share-referral-modal .modal-content{
    max-width:350px;
}

#share-referral-content .qr-wrapper{
    display: flex;
    justify-content: center;
}

#share-referral-content .qr{
    width: 65%;
    max-width: 250px;
    min-width: 100px;
    margin: auto;
}

#share-referral-content .qrcode{
    text-align: center;
    margin: 10px 25px;
    font-weight: 700;
    color: var(--clr-primary);;
    animation: 3s text-glow infinite;
    font-size: 24px;
}

#share-referral-content .refer-qrcode-note{
    color: #000;
    font-size: 12px;
    text-align: center;
    margin: 5px auto 15px;
}

#share-referral-modal .action-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin: 15px 10px;
    justify-content: center;
}

#share-referral-modal .action-wrapper img{
    padding: 5px;
    flex: 0 0 25%;
    width: 25%;
    cursor: pointer;
    transition: .375s;
    position: relative;
}

#share-referral-modal .action-wrapper img:hover{
    top: - 2px
}


@keyframes hideNotice {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-15px);
        height: 0;
        margin: 0;
    }
}

@keyframes showNotice {
    0% {
        opacity: 0;
        transform: translateY(-15px);
        height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        height: 100%;
    }
}

@media only screen and (max-width:340px){
    .input-note{
        font-size: 8px;
    }
}

.swiper-pagination-bullet-active{
    background: var(--clr-primary) !important;
}

@keyframes hideNotice {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-15px);
        height: 0;
        margin: 0;
    }
}

@keyframes showNotice {
    0% {
        opacity: 0;
        transform: translateY(-15px);
        height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        height: 100%;
    }
}

@media only screen and (max-width:340px){
    .input-note{
        font-size: 8px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1599px){
    #games .game{
        flex: 0 0 calc(25% - 5px);
    }
}


@media only screen and (min-width: 700px) and (max-width: 1023px){
    #games .game{
        flex: 0 0 calc(33.333% - 5px);
    }
}


@media only screen and (min-width: 700px){
    #content .front{
        width: calc(50% - 10px);
        margin-top: 10px;
    }



    #col-right {
        position: absolute;
        right: 0;
        width: calc(50% - 10px);
        padding: 0 10px;
        top: 0;
        margin-top: 10px;
    }

    #balance-wrapper{
        margin-top: 0
    }

    .section{
        max-width: 800px;
        margin: 40px auto 10px;
        padding: 40px 15px 15px;
    }

    .swiper-container{
        margin: 0 !important;
    }

    #referral-wrapper{
        margin: 10px 0 0;
    }


    #bonus-wrapper div img{
        min-width: 80px;
    }
}

@media only screen and (min-width:1600px){
    #content .front{
        width: calc(25% - 10px);
        margin-top: 10px;
        padding: 0 0 0 10px;
        min-width: 400px;
    }

    #col-right {
        position: absolute;
        right: 0;
        width: calc(25% - 10px);
        padding: 0 10px;
        top: 0;
        margin-top: 10px;
        min-width: 400px;
    }

    #game-wrapper{
        position: absolute;
        width: calc(50% - 10px);
        left: calc(50% + 20px);
        transform: translateX(calc(-50% + -10px));
        top: 0;
        margin-top: 10px;
        max-width: calc(100% - 820px);
    }

    #balance-wrapper{
        margin-top: 0;
    }

    #games .game{
        flex: 0 0 calc(20% - 5px);
    }

    .section{
        max-width: 800px;
        margin: 40px auto 10px;
        padding: 40px 15px 15px;
    }

    .swiper-container{
        margin: 0 !important;
    }

    #referral-wrapper{
        margin: 10px 0 0;
    }

    #bonus-wrapper div img{
        min-width: 80px;
    }
}

@media only screen and (min-width: 1024px){
    #promo-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    #promo-wrapper img{
        width: 50% !important;
        flex: 0 0 50%;
        padding: 15px;
    }
}

#sidebar{
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 10008;
    width: 80%;
    height: 100%;
    transition: .425s;
    max-width: 275px;
}

#sidebar.show{
    left: 0
}

#sidebar.show:before{
    content: '';
    width: 102%;
    background: rgba(0,0,0,.75);
    position: fixed;
    height: 100%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: var(--max-vw);
}

#sidebar .container{
    top: 0;
    height: 100vh;
    overflow-y: hidden;
    padding-bottom: 30px;
    width: 100%;
    max-width: 325px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #000000;
    /* background-image: url('../img/sidebar-background.png'); */
    background-size: 150% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

#sidebar .container::-webkit-scrollbar{
    display: none;
}

#sidebar .top{
    padding: 40px 15px;
    border-bottom: 1px solid white;
    width: 100%;
    position: relative;
    display: flex;
    background: #000000;
}

#sidebar .top .btn-close{
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
}

#sidebar .top .btn-close > *{
    color: white;
}

#sidebar .top .profile-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

#sidebar .top .profile-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#sidebar .top .profile-wrapper span{
    font-weight: 600;
    color: white;
    font-size: 16px;
}

#sidebar .top span.balance{
    color: #f1c137;
}

#sidebar .top .logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sidebar .top .logo img{
    padding-top:20px;
    width: 100%;
    max-width: 150px
}

#sidebar .middle{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 5px;
    margin: 0 10px;
    border-bottom: 1px solid #ccc;
    height: 100px;
}

#sidebar .middle a{
    flex: 0 0 33.333%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#sidebar .middle a img{
    width: 32px;
}

#sidebar .middle a label{
    font-size: 12px;
    font-weight: 600;
    color: #af7920;
    text-align: center
}

#sidebar .items{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
    height: calc(100vh - 250px);
    overflow-y: scroll
}

#sidebar .item a{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 10px 35px;
}

#sidebar .item{
    border-bottom: 1px solid #ffffff4d
}

#sidebar .item:last-of-type{
    border-bottom: none;
}

#sidebar .item a img{
    width: 24px;
}

#sidebar .item a label{
    color: white;
    font-size: 15px;
    font-weight: 400;
    transform: none;
}

#downloadapp {
    position: absolute;
    z-index: 1;
    bottom: 48px;
}

#downloadapp .ic-close-circle {
    margin: 18px 5px;
}

.ic-close-circle {
    margin: -43px 0;
    border: 2px solid #fff;
    border-radius: 100%;
    padding: 4px;
    width: 28px;
    height: 28px;
}
.ic-close, .ic-close-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    opacity: .7;
    padding: 10px;
    text-align: right;
    cursor: pointer;
}

.ic-close-circle:before, .ic-close-circle:after {
    height: 15px;
    margin-left: -9px;
}
.ic-close:before, .ic-close-circle:before {
    transform: rotate(45deg);
}
.ic-close:before, .ic-close:after, .ic-close-circle:before, .ic-close-circle:after {
    position: absolute;
    margin-left: -15px;
    content: ' ';
    height: 25px;
    width: 2px;
    background-color: #fff;
}

#downloadapp img {
    max-width: 500px;
    width: 100%;
    cursor: pointer;
}

.floating-subs {
    position: fixed;
    width: 50px;
    bottom: 245px;
    right: 0px;
    z-index: 1;
    animation: Movemove 20s infinite;
}
.floating-subs img {
    width: 100%;
}

@keyframes Movemove{
    0% {
        transform: translateY(0);
    }

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


#popular-games, #customer-review {
    margin-top: 10px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#popular-games .title {
    font-size: 16px;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
    font-family: var(--font-secondary);
    filter: var(--container-shadow);
}

#popular-games .games, #customer-review .feedback-cards {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow: scroll;
  
}

#popular-games .games > div{
    animation: auto-scroll 6s infinite
}

#popular-games:hover .games > div,
#popular-games:focus-within .games > div {
  animation-play-state: paused;
}

@keyframes auto-scroll {
    0% {
      transform: translateX(0);
    }
    90% {
      transform: translateX(-300px); /* Scroll left = move content right */
    }
    100% {
      transform: translateX(0); /* Instant reset */
    }
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scrollable {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    user-select: none;
}
#popular-games .game {
    display: flex;
    gap: 0;
    flex-direction: column;
    min-width: 120px;
    background: white;
    filter: var(--container-shadow);
    margin-bottom: 15px;
    border-radius: 0 0 5px 5px;
}

#popular-games .game img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}
.scrollable img {
    -webkit-user-drag: none;
    user-select: none;
}

#popular-games .info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px;
    overflow: hidden;
    color:black;
}

#popular-games .info-wrapper .game-name {
    font-size: 9px;
    line-height: 1;
}

#popular-games .info-wrapper .game-provider {
    padding: 0;
    background: transparent;
}

#popular-games .info-wrapper .game-provider {
    font-size: 9px;
    width: fit-content;
    border-radius: 50px;
    color:  grey;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
    width: 100%;
}

#popular-games .info-wrapper .game-rtp {
    display: flex;
    justify-content: center;
}
#popular-games .info-wrapper .game-rtp {
    font-size: 12px;
}
#popular-games .info-wrapper .game-rtp > div {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    background: var(--clr-primary);
    border-radius: 5px;
    color: #000;
}

@keyframes jumping{
    0%, 100%{
        transform: translateY(2px);
    }

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

.feedback-container{
    margin: auto;
    background: #fff;
    padding: 10px;
    border-radius: 8px
}

.feedback-container .btn-primary{
    margin: auto;
    border: 2px solid #000;
    background: var(--clr-primary);
    padding: 10px;
    border-radius: 8px;
    color: #000;
}

.feedback-container .btn-primary:hover{
    animation: jumping .375s linear infinite;
    background: var(--clr-primary);
}

#partner-wrapper{
    width: calc(100% - 20px);
    margin: 0 auto 15px;
    flex-wrap: wrap;
    display: flex;
}

#partner-wrapper h6{
    color: var(--clr-dark);
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
}

#partner-wrapper .partner-image-wrapper{
    display: flex;
}

#partner-wrapper .partner-image-wrapper img{
    width: auto;
    max-height: 20px;
}

#partner-wrapper .col{
    flex: 0 0 100%;
    margin-bottom: 10px;
}

#partner-wrapper .col.col-4{
    flex: 0 0 calc(25% - 10px);
    margin-right: 10px;
}

#partner-wrapper .company-info p{
    color: var(--clr-dark);
    font-size: 10px;
}

#partner-wrapper .company-name p{
    color: var(--clr-dark);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}

#trusted-banner{
    width: calc(100% - 20px);
    margin: 20px auto 20px;
}

#trusted-banner img{
    width: 100%;
}

#side-buttons {
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 99;
}

#side-buttons > div{
    width: 28px;
    position: relative;
    overflow: hidden
}

#side-buttons > div img{
    width: 100%
}

#side-buttons > div span{
    position: absolute;
    z-index: 100;
    transform: rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    width: 28px;
    text-transform: uppercase;
    bottom: 48px;
    right: -4px;
    font-weight: 800;
    font-size: 12px;
}

#side-buttons .recommended span{
    animation: text-recommended 0.875s ease-in-out infinite;
    bottom: 48px;
    right: -1px;
}

@keyframes text-recommended{
    0%, 100%{
        color: #000;
    }

    50%{
        color: #eb9500;
    }
}

#side-buttons .trusted span{
    color: white;
    bottom: 48px;
    animation: btn-slide-text 5s linear infinite;
    /* animation: btn-deposit 1s linear infinite; */
}

@keyframes btn-slide-text{
    0%{
        right: -30px;
    }

    10%{
        right: -1px;
    }

    90%{
        right: -1px
    }

    100%{
        right: 30px;
    }
}

#side-partnership{
    position: fixed;
    right: 0;
    top: 10%;
    z-index: 99;
    animation: side-partnership 25s infinite linear;
}

#side-partnership img{
    width: 60px;
    fill: var(--container-shadow);
    will-change: transform;
    cursor: pointer;
    animation: zoom 0.575s infinite linear;
}

@keyframes zoom{
    0%, 100%{
        transform:  translateZ(0) scale(0.95);
    }

    50%{
        transform:  translateZ(0) scale(1);
    }
}

@keyframes side-partnership{
    0%, 100%{
        top: 10%;
    }

    50%{
        top: 40%;
    }
}