* {
    font-family: "Outfit", "Inter", sans-serif; 
    box-sizing: border-box;
}

body {
    background: linear-gradient(-45deg, #0d0118, #2e1d0f, #000000, #1b002c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    background-color: #0b0b0f;
    color: #ffffff;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ctext x='50%25' y='50%25' font-family='Outfit, Arial, sans-serif' font-size='42' font-weight='800' fill='white' text-anchor='middle' dominant-baseline='middle' transform='rotate(-35 200 200)'%3EKONOHA%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: moveWatermark 25s linear infinite;
}

@keyframes moveWatermark {
    from { background-position: 0 0; }
    to { background-position: 400px -400px; }
}

h1 {
    text-align: center;
    color: #fff;
}

a:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.adv {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

img {
    vertical-align: middle;
    border-style: none;
}

/* popup style*/
.popup-container{
    text-emphasis-position: center;
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popup-body{
    width: 350px;
    height: 200px;
    margin: 5% auto;
    background: rgba(25, 5, 40, 0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

@media (max-width: 512px){
    .popup-body{
        width: 310px;
        margin: 10% auto;
    }
}

.popup-img{
    width: 450px;
    height: 555px;
    margin: 8% auto;
}

.popup-img-close{
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: white;
    color: black;
    float: right;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-left: -7px;
    margin-top: -20px
}

@media (min-width: 993px){
    .popup-img-close{
        margin-left: 42px;
        margin-top: -12px;
    }
}

.popup-header{
    height: 45px;
    width: 100%;
    background: linear-gradient(90deg, #9a00d9, #e000ff);
    float: left;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.popup-header h6{
    margin: 13px;
}

.popup-content{
    width: 100%;
    height: auto;
    padding: 15px 39px;
    float: left;
    font-size: 14px;
    background-color: transparent;
}

.col2{
    width: 50%;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

.mrtop10{
    margin-top: 10px;
}

.hr{
    width: 100%;
    height: 2px;
    background: #9a00d9;
    float: left;
}

.popup-label{
    width: 100%;
    float: left;
    background: #9a00d9;
    padding: 10px 15px;
    font-size: 12px;
}

.popup-close{
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: white;
    color: black;
    float: right;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-top: -10px;
    margin-left: -9px;
}

.bg-blue-button{
    background: #b200fc;
}

.bg-black-button{
    background: #535353;
}

.popip-button{
    cursor: pointer;
    width: 50%;
    float: left;
    height: 40px;
}

.popip-button:hover{
    background: #b200fc;
}



/* Slideshow container */
.slideshow-images-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  margin-bottom: 6px;
}

/* Hide the images by default */
.slideshow-images {
  display: none;
}

/* Next & previous buttons */
.prev-slideshow-images, .next-slideshow-images {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -14px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}


.title {
    display: flex;
    justify-content: center;
    padding: 20px;
	margin-bottom: 5px;
}

.title-text {
    color: white;
    font-size: 2.5rem;
	font-weight: 900;
}

.slot {
    display: block;
}

.spinner {
    animation: 0.5s ease-in-out 0s normal none infinite running sk-scaleout;
    background-color: magenta;
    border-radius: 100%;
    display: inline-table;
    position: relative;
    float: inherit;
    height: 20px;
    margin: -8px 0 0 -12px;
    position: absolute;
    width: 20px;
    z-index: 2;
}

@keyframes sk-scaleout {0% {transform: scale(0);} 100% {opacity: 0; transform: scale(1);}}

.logo {
	text-align: center;
}

.logo img {
	height: 70px;
}

.root {
    float: none;
    width: 100%;
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
   /*  background: #1a1a1a; */
    display: inline-block;
	padding: 5px;
    border-radius: 15px;
}

.slot .slot-sidebar {
    width: 100%;
    float: none;
    flex: none;
    max-width: 100%;
    padding: 0;
    margin-bottom: 20px;
    background-color: transparent;
}

.sidebar-right {
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffd700;
    border-radius: 16px 16px 0px 0px;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-right img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255,215,0,0.5));
}

.sidebar-right h3 {
    display: none;
}

.slot-sidebar-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    -webkit-overflow-scrolling: touch;
}

.slot-sidebar-nav::-webkit-scrollbar {
    display: none;
}

.slot-sidebar-nav > li {
    flex: 0 0 auto;
    display: inline-block;
    min-width: 120px;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: none;
    transition: all 0.2s;
    text-align: center;
}
.slot-sidebar-nav > li:hover {
    background: rgba(255, 215, 0, 0.1);
}

.slot-sidebar-nav > li > a {
    color: #fff;
    font-size: 13px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    gap: 10px;
}

.btn-provider i {
    margin: 0;
    transform: scale(1.2);
}

.enter {
    display: none;
}

.btn-provider span {
    font-size: 13px;
}

.btn-provider h2 {
    font-size: 13px;
}

.Home {
    background-image: url(../home.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.Favorit {
    background-image: url(../favorit.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.slot88-logo {
    background-image: url(../slot88.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 32px;
    color: #ffffff;
}

.joker-logo {
    background-image: url(../Joker.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 32px;
    color: #ffffff;
}

.pragma-logo {
    background-image: url(../Pragmaticplay.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.haba-logo {
    background-image: url(../habanero.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.idn-logo {
    background-image: url(../idnslot.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.cq9-logo {
    background-image: url(../cq9-2.png);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.pg-logo {
    background-image: url(../pg.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.micro-logo {
    background-image: url(../microgaming.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.isb-logo {
    background-image: url(../isoftbet.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.ps-logo {
    background-image: url(../playstar.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.ttg-logo {
    background-image: url(../logo-ttg.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.sg-logo {
    background-image: url(../spadegaming.svg);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.rt-logo {
    background-image: url(../redtiger.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.rtg-logo {
    background-image: url(../rtg.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.sp-logo {
    background-image: url(../simpleplay.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.gmp-logo {
    background-image: url(../gameplay.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.net-logo {
    background-image: url(../netent.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}
.mno-logo {
    background-image: url(../mannaplay.html);
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 32px;
    background-size: 20px;
}

.active {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.25), transparent) !important;
    border-left: 3px solid #ffd700;
}

li.active a, i {
    color: rgb(255, 255, 255);
    filter: drop-shadow(0px 0px 0px white);
}

.contents {
    color: #fff;
    text-align: justify;
}

.contents h3 {
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 18px;
}

.contents img {
    position: relative;
    max-width: 100%;
}

.slot .content {
    float: none;
    width: 100%;
    padding: 0;
    flex: none;
    max-width: 100%;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    width: 100%;
    padding: 10px;
    position: relative;
    z-index: 0;
}

.card {
    background: transparent;
    border: none;
    text-align: center;
    padding: 0;
}

.card-content {
    background: rgba(25, 20, 35, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 0;
    color: #fff;
    font-size: 12px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}
.card-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.8);
}

.percent {
    height: 25px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    margin: 10px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.8);
}

.percent p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 900;
    line-height: 25px;
    transform: translateY(0);
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.percent-bar {
    background: linear-gradient(90deg, #ffaa00, #ffd700);
    box-shadow: 0 0 10px rgba(255,215,0,0.8), 0 0 20px rgba(255,170,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: transparent;
    text-align: center;
    white-space: nowrap;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    /* animation: ; */
    z-index: 10;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.yellow {
    background-color: #ffb900;
    box-shadow: 0 0 12px #ffb900;
}

.green {
    background-color: #00ff6a;
    box-shadow: 0 0 12px #00ff6a;
}

.red {
    background-color: #ff2a55;
    box-shadow: 0 0 12px #ff2a55;
}

/* TOMBOL DAFTAR */
.bg-blue-button{
    background: #e79e00;
}

.bg-black-button{
    background: #00ba00;
}

.popip-button{
    cursor: pointer;
    width: 50%;
    float: left;
    height: 40px;
}

.popip-button:hover{
    background: rgba(0, 0, 0, 0.65);
}




.hover-btn {
    position: absolute;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.65);
    transition: all 0.45s ease-in-out;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.play-btn {
	font-size: 15px;
    text-decoration: none;
    color: #111;
    text-align: center;
    align-items: center;
    width: 80%;
    margin: 27% auto;
    padding: 8px;
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
}
.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    color: #000;
}

.img-zoom {
    transition: all 0.45s ease-in-out;
    height: 141px;
}

.hover-btn:hover {
    opacity: 100%;
}

.hover-btn:hover ~ .img-zoom {
    transform: scale(1.2);
    position: relative;
}

.next-btn {
    display: none;
    width: 30%;
}

.mySlides {
    display: none;
}

.next-btn {
    background-color: #292a2b;
    border: none;
    color: #fff;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
	
    .slot-sidebar-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        border-bottom: 2px solid #ffd700;
        height: 105px;
        -webkit-overflow-scrolling: touch;
        background: rgba(15, 15, 20, 0.95);
        backdrop-filter: blur(10px);
    }
    .slot-sidebar-nav::-webkit-scrollbar {
        display: none;
    }
    .slot-sidebar-nav > li {
        flex: 0 0 auto;
        display: inline-block;
        width: 100px;
    }
    .slot-sidebar {
        float: none !important;
        width: 100% !important;
        flex: none !important;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .content {
        float: none !important;
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }
    .card {
        width: 33.3% !important;
    }
    .hover-btn:hover {
        opacity: 0;
    }

    .hover-btn:hover ~ .img-zoom {
        transform: scale(1);
        position: relative;
    }
    .btn-provider {
        text-align: center;
        display: block;
    }
    .slot-sidebar-nav > li > a {
        height: 70px;
    }
    .enter {
        display: block;
    }
    .btn-provider span {
        position: unset;
    }
    .btn-provider i {
        margin: 0;
    }
    .slot-sidebar-nav li {
        border-left: 0.2px solid #ffffff;
        border-right: 0.2px solid #ffffff;
        border-bottom: none;
    }
    .img-zoom {
        height: auto;
    }
    .next-btn {
        display: block;
    }
}


.player-counter-container > h2 {
    display: inline-block;
    outline: none;
    box-sizing: border-box;
    border-radius: 0.3em;
    text-transform: uppercase;
    box-shadow: inset 0 -2px 5px 1px rgb(0, 0, 0), inset 0 -1px 1px 3px rgb(0, 0, 0);
    background-image: linear-gradient(0deg, #ce3bff, #ce3bff, #ce3bff, #ce3bff, #ce3bff);
    border: 1px solid #000000;
    color: #ffffff;
    text-shadow: 0 2px 2px rgb(0 0 0);
    transition: all .2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
    max-width: 500px;
    z-index: 5;
    padding: 15px;
    letter-spacing: 0;
    font-size: 2vw;
    font-weight: bold;
    margin: 10px auto;
    line-height: inherit;
    text-align: center;
}

.player-counter-wrapper{
	display: flex;
	vertical-align: middle;
	align-items: center;
}

.player-counter-wrapper > span {
    position: absolute;
    font-size: 6.5vw;
    z-index: 1;
    color: rgb(255, 255, 255);
    font-weight: bold;
    left: 0;
    right: 0;
    text-align: center;
}

.player-counter-wrapper > img{
	width: 100%;
}

.announcement {
    width: 100%;
    padding: 7px;
    color: white;
    /* background: #212121; */
    position: relative;
    display: flex;
}

.announcement i {
    width: 28px;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    position: relative;
    left: 0;
    color: #96009b;
}

.banner {
   /* padding: 5px; */
}

.banner img {
    width: 100%;
}
.game {
    grid-column: 1 / -1;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 15px;
}

#footer-wrapper {
    text-align: center;
    font-size: 12px;
    color: #fff;
}
.form-enter {
    display: flex;
    gap: 10px;
    margin-top: 0;
}
.login {
    border-radius: 5px;
    font-weight: bold;
    padding: 5px 15px;
    background: linear-gradient(0deg, #f6c635, #ffd700);
}
.login a, .regis a {
    color: #000;
}
.regis {
    border-radius: 5px;
    font-weight: bold;
    padding: 5px 15px;
    background: linear-gradient(0deg, #18da12, #46f441);
}
.login a {
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}
.regis a {
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Menu Navigation Buttom */
.menu-bottom{
    display: none;
    height: 63px;
    width: 100vw;
    position: fixed;
    bottom: 0;
    background: black;
    border-top: 2px solid #707070;
}

.sub-menu-bottom{
    width: 25vw;
    height: 100%;
    float: left;
}

.sub-menu-bottom:hover{
    background: #525252;
}

.icon-menu{
    width: 4vw;
    height: auto;
    margin: 8px;
}

.text-menu{
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    color: white;
}

@media (max-width: 992px){
    .menu-bottom{
        display: block;
    }
}

@media (min-width: 768px){
    .menu-bottom{
        height: 82px;
    }
}


