*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#050816;
  color:#fff;
  overflow-x:hidden;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at top,rgba(0,183,255,.25),transparent 35%),
  radial-gradient(circle at bottom,rgba(0,90,255,.15),transparent 35%);
  z-index:-1;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* LOADER */
#loader{
  position:fixed;
  inset:0;
  background:#050816;
  z-index:99999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  transition:.5s;
}

.spinner{
  width:70px;
  height:70px;
  border:5px solid rgba(255,255,255,.1);
  border-top:5px solid #00b7ff;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  100%{
    transform:rotate(360deg);
  }
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(15px);
  border-bottom:1px solid rgba(0,183,255,.15);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo{
  font-size:38px;
  font-weight:900;
  letter-spacing:3px;
  color:#00b7ff;
  text-shadow:0 0 20px #00b7ff;
}

.menu{
  display:flex;
  gap:30px;
}

.menu a{
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.menu a:hover{
  color:#00b7ff;
}

.buttons{
  display:flex;
  gap:12px;
}

.btn{
  padding:12px 28px;
  border:none;
  border-radius:14px;
  cursor:pointer;
  font-weight:700;
  transition:.3s;
}

.login{
  background:transparent;
  border:1px solid #00b7ff;
  color:#00b7ff;
}

.login:hover{
  background:#00b7ff;
  color:#000;
  box-shadow:0 0 20px #00b7ff;
}

.daftar{
  background:linear-gradient(45deg,#00b7ff,#0055ff);
  color:#fff;
  box-shadow:0 0 20px rgba(0,183,255,.4);
}

.daftar:hover{
  transform:translateY(-3px);
}

/* HERO */
.hero{
  padding:80px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:100px;
  border:1px solid rgba(0,183,255,.4);
  color:#00b7ff;
  margin-bottom:25px;
}

.hero h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:20px;
  font-weight:900;
}

.hero h1 span{
  color:#00b7ff;
  text-shadow:0 0 25px #00b7ff;
}

.hero p{
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:35px;
  font-size:17px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-image{
  position:relative;
}

.hero-image img{
  width:100%;
  border-radius:35px;
  border:1px solid rgba(0,183,255,.25);
  box-shadow:0 0 35px rgba(0,183,255,.15);
}

.jackpot-box{
  position:absolute;
  left:20px;
  bottom:20px;
  background:rgba(0,0,0,.7);
  padding:20px;
  border-radius:20px;
  border:1px solid rgba(0,183,255,.2);
}

.jackpot-box small{
  color:#00b7ff;
}

.jackpot-box h2{
  margin-top:10px;
  font-size:35px;
}

/* PROVIDERS */
.providers{
  padding:70px 0;
}

.provider-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}

.provider{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(0,183,255,.15);
  padding:25px;
  border-radius:20px;
  text-align:center;
  font-weight:700;
  transition:.3s;
}

.provider:hover{
  transform:translateY(-5px);
  border-color:#00b7ff;
  box-shadow:0 0 25px rgba(0,183,255,.2);
}

/* SECTION */
.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  color:#00b7ff;
  font-weight:700;
}

.section-title h2{
  margin-top:10px;
  font-size:50px;
  font-weight:900;
}

/* GAMES */
.games{
  padding:80px 0;
}

.game-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.game-card{
  background:#0a1022;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(0,183,255,.15);
  transition:.4s;
}

.game-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 35px rgba(0,183,255,.2);
}

.game-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.game-content{
  padding:25px;
}

.game-content h3{
  font-size:28px;
}

.play-btn{
  width:100%;
  margin-top:18px;
  padding:14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(45deg,#00b7ff,#0055ff);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

/* RTP */
.rtp{
  padding:80px 0;
}

.rtp-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.rtp-card{
  background:#0a1022;
  padding:30px;
  border-radius:30px;
  border:1px solid rgba(0,183,255,.15);
}

.rtp-head{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
}

.rtp-head h2{
  color:#00b7ff;
}

.progress{
  height:12px;
  background:#111b35;
  border-radius:100px;
  overflow:hidden;
}

.fill{
  height:100%;
  background:linear-gradient(45deg,#00b7ff,#0055ff);
}

/* FLOATING BUTTON */
.floating-button{
  position:fixed;
  right:20px;
  bottom:20px;
  padding:16px 24px;
  border-radius:100px;
  background:linear-gradient(45deg,#00b7ff,#0055ff);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 0 25px rgba(0,183,255,.4);
  z-index:999;
}

/* FOOTER */
footer{
  padding:35px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  color:#999;
}

/* MOBILE */
.mobile-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
}

@media(max-width:992px){

  .hero-grid,
  .game-grid,
  .provider-grid,
  .rtp-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .menu{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#091122;
    flex-direction:column;
    padding:30px;
    display:none;
  }

  .menu.active{
    display:flex;
  }

  .mobile-toggle{
    display:block;
  }

  .buttons{
    display:none;
  }

  .hero h1{
    font-size:42px;
  }

  .section-title h2{
    font-size:36px;
  }

  .jackpot-box h2{
    font-size:26px;
  }

}
/* REVIEW */
.reviews{
  padding:80px 0;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.review-card{
  background:#0a1022;
  border:1px solid rgba(0,183,255,.15);
  border-radius:30px;
  padding:30px;
  transition:.3s;
}

.review-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 30px rgba(0,183,255,.2);
}

.stars{
  color:#00b7ff;
  font-size:22px;
  margin-bottom:20px;
}

.review-card p{
  line-height:1.8;
  color:#cfcfcf;
}

.review-user{
  margin-top:20px;
}

/* FAQ */
.faq{
  padding:80px 0;
}

.faq-box{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:#0a1022;
  border:1px solid rgba(0,183,255,.15);
  border-radius:20px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  text-align:left;
  padding:25px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.faq-answer{
  padding:0 25px 25px;
  color:#cfcfcf;
  line-height:1.8;
}

/* SEO CONTENT */
.seo-content{
  padding:80px 0;
}

.seo-box{
  background:#0a1022;
  border:1px solid rgba(0,183,255,.15);
  border-radius:30px;
  padding:40px;
}

.seo-box p{
  color:#cfcfcf;
  line-height:2;
  margin-bottom:25px;
}

/* MOBILE */
@media(max-width:992px){

  .review-grid{
    grid-template-columns:1fr;
  }

}
.logo img{
  width:220px;
  max-width:100%;
  height:auto;
  display:block;
}

@media(max-width:768px){

  .logo img{
    width:170px;
  }

}