body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#0f0f0f;
  color:#fff;
}

/* HEADER */
/* HEADER */
header{
  background:#111;
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid #222;
}

/* FLEX FIX */
.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* CONTAINER */
.container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
  height:70px;
}

/* LOGO */
.logo{
  flex:0 0 auto;
}

/* NAV */
.main-nav{
  display:flex;
  gap:25px;
  justify-content:center;
  align-items:center;
  flex:1;
}

.main-nav a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  position:relative;
  transition:0.3s;
}

.main-nav a:hover{
  color:#ff9900;
}

/* RIGHT */
.header-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

/* BUTTONS */
.login-btn{
  border:1px solid #ff9900;
  color:#ff9900;
  padding:6px 14px;
  border-radius:4px;
  font-size:13px;
}

.cta-btn{
  background:#ff9900;
  color:#000;
  padding:6px 14px;
  border-radius:4px;
  font-size:13px;
}

/* BURGER */
.menu-toggle{
  display:none;
  font-size:24px;
  background:none;
  border:none;
  color:#fff;
}

/* =========================
   MOBILE VERSION
========================= */
@media(max-width:768px){

  .container{
    height:60px;
  }

  /* HIDE MENU */
  .main-nav{
    display:none;
  }

  /* BUTTON CLEAN */
  .cta-btn{
    display:none;
  }

  .login-btn{
    display:none;
  }

  /* SHOW BURGER */
  .menu-toggle{
    display:block;
  }

}

/* SIDEBAR */
.sidebar{
  position:fixed;
  top:0;
  right:-100%;
  width:260px;
  height:100%;
  background:#111;
  padding:20px;
  z-index:9999;
  transition:0.3s ease;
}

/* ACTIVE */
.sidebar.active{
  right:0;
}

/* CLOSE BUTTON */
.sidebar-close{
  text-align:right;
  font-size:24px;
  cursor:pointer;
  margin-bottom:20px;
}

/* MENU */
.sidebar-menu a{
  display:block;
  padding:14px 0;
  border-bottom:1px solid #222;
  color:#fff;
  text-decoration:none;
}

.sidebar-menu a:hover{
  color:#ff9900;
}

/* CTA */
.sidebar-cta{
  display:block;
  margin-top:20px;
  background:#ff9900;
  color:#000 !important;
  text-align:center;
  padding:12px;
  border-radius:4px;
  font-weight:bold;
}

.sidebar-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:9998;
}

.sidebar-overlay.active{
  opacity:1;
  visibility:visible;
}

/* PREMIUM HERO */
.hero {
  padding: 100px 0;
  background: radial-gradient(circle at top right, rgba(255,153,0,0.15), transparent 40%),
              linear-gradient(135deg,#0f0f0f,#1a1a1a);
}

.hero-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.hero-content{
  flex:1;
}

.hero-badge{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:42px;
  line-height:1.3;
  margin-bottom:20px;
  color:#ffffff;
}

.hero-content p{
  font-size:16px;
  color:#ccc;
  margin-bottom:30px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:40px;
}

.btn-primary{
  background:#ff9900;
  color:#000;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

.btn-secondary{
  border:1px solid #ff9900;
  color:#ff9900;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* STATS */
.hero-stats{
  display:flex;
  gap:40px;
  margin-bottom:30px;
}

.stat-item{
  font-size:14px;
}

.stat-item strong{
  display:block;
  font-size:20px;
  color:#ff9900;
}

/* TRUST BADGE */
.trust-badges{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.trust-badge{
  background:#1a1a1a;
  padding:10px 15px;
  border-radius:6px;
  font-size:13px;
  border:1px solid #222;
}

/* HERO IMAGE */
.hero-image{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

.hero-image img{
  width:100%;
  max-width:520px;
  height:auto;
  object-fit:contain;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero{
    padding:60px 0;
  }

  .hero-container{
    flex-direction:column;
    text-align:center;
  }

  .hero-content h1{
    font-size:30px;
  }

  .hero-stats{
    justify-content:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .trust-badges{
    justify-content:center;
  }

  .hero-image{
    margin-top:40px;
    text-align:center;
  }
}

/* ABOUT SECTION */
.about-section{
  padding:100px 0;
  background:#111;
}

.about-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.about-header{
  text-align:center;
  margin-bottom:60px;
}

.about-header h2{
  font-size:32px;
  margin-bottom:15px;
  color:#ffffff;
}

.about-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.about-content{
  display:flex;
  gap:50px;
  align-items:center;
}

.about-text{
  flex:1;
}

.about-text p{
  color:#ccc;
  line-height:1.8;
  margin-bottom:20px;
}
.about-text a{
  color:inherit;          /* mengikuti warna teks */
  text-decoration:none;   /* hilangkan underline */
  font-weight:500;
}

.about-text a:hover{
  color:#ff9900;          /* efek hover elegan */
}

.about-highlight{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.highlight-box{
  background:#1a1a1a;
  padding:25px;
  border-radius:8px;
  border:1px solid #222;
  transition:0.3s;
}

.highlight-box:hover{
  border-color:#ff9900;
}

.highlight-box strong{
  display:block;
  font-size:18px;
  color:#ff9900;
  margin-bottom:10px;
}

.highlight-box span{
  font-size:14px;
  color:#bbb;
}

/* RESPONSIVE */
@media(max-width:768px){

  .about-section{
    padding:60px 0;
  }

  .about-content{
    flex-direction:column;
  }

  .about-highlight{
    grid-template-columns:1fr;
  }

  .about-header h2{
    font-size:24px;
  }

}
/* OFFICIAL TRUST SECTION */
.official-section{
  padding:100px 0;
  background:linear-gradient(135deg,#111,#1a1a1a);
}

.official-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.official-header{
  text-align:center;
  margin-bottom:60px;
}

.official-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.official-header p{
  color:#aaa;
  font-size:16px;
  max-width:800px;
  margin:0 auto;
}

.official-content{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

.official-text p{
  color:#ccc;
  line-height:1.8;
  margin-bottom:20px;
  font-size:15px;
}

.official-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.official-box{
  background:#1a1a1a;
  padding:25px;
  border-radius:10px;
  border:1px solid #222;
  transition:0.3s;
}

.official-box:hover{
  border-color:#ff9900;
  transform:translateY(-4px);
}

.official-box strong{
  display:block;
  color:#ff9900;
  font-size:16px;
  margin-bottom:10px;
}

.official-box span{
  color:#bbb;
  font-size:14px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
  .official-content{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .official-section{
    padding:60px 0;
  }
  .official-header h2{
    font-size:24px;
  }
}

/* WHY CHOOSE US */
.why-section{
  padding:100px 0;
  background:#0f0f0f;
}

.why-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.why-header{
  text-align:center;
  margin-bottom:60px;
}

.why-header h2{
  font-size:32px;
  margin-bottom:15px;
  color:#ffffff;
}

.why-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.why-card{
  background:#1a1a1a;
  padding:35px 25px;
  border-radius:10px;
  border:1px solid #222;
  text-align:center;
  transition:0.3s;
}

.why-card:hover{
  border-color:#ff9900;
  transform:translateY(-5px);
}

.why-icon{
  font-size:28px;
  margin-bottom:15px;
  color:#ff9900;
}

.why-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#fff;
}

.why-card p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:992px){
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .why-section{
    padding:60px 0;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .why-header h2{
    font-size:24px;
  }

}

/* LOGIN SECTION */
.login-section{
  padding:100px 0;
  background:#111;
}

.login-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.login-header{
  text-align:center;
  margin-bottom:60px;
}

.login-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.login-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.login-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.login-card{
  background:#1a1a1a;
  padding:35px 25px;
  border-radius:10px;
  border:1px solid #222;
  transition:0.3s;
  text-align:center;
}

.login-card:hover{
  border-color:#ff9900;
  transform:translateY(-5px);
}

.login-number{
  font-size:28px;
  font-weight:bold;
  color:#ff9900;
  margin-bottom:15px;
}

.login-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#fff;
}

.login-card p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
}

.login-cta{
  text-align:center;
  margin-top:40px;
}

.login-cta a{
  background:#ff9900;
  color:#000;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* RESPONSIVE */
@media(max-width:768px){
  .login-section{
    padding:60px 0;
  }

  .login-steps{
    grid-template-columns:1fr;
  }

  .login-header h2{
    font-size:24px;
  }
}
/* REGISTER SECTION */
.register-section{
  padding:100px 0;
  background:#0f0f0f;
}

.register-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.register-header{
  text-align:center;
  margin-bottom:60px;
}

.register-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.register-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.register-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.register-card{
  background:#1a1a1a;
  padding:30px 20px;
  border-radius:10px;
  border:1px solid #222;
  transition:0.3s;
  text-align:center;
}

.register-card:hover{
  border-color:#ff9900;
  transform:translateY(-5px);
}

.register-number{
  font-size:26px;
  font-weight:bold;
  color:#ff9900;
  margin-bottom:15px;
}

.register-card h3{
  font-size:16px;
  margin-bottom:10px;
  color:#fff;
}

.register-card p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
}

.register-cta{
  text-align:center;
  margin-top:40px;
}

.register-cta a{
  background:#ff9900;
  color:#000;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* RESPONSIVE */
@media(max-width:992px){
  .register-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .register-section{
    padding:60px 0;
  }

  .register-steps{
    grid-template-columns:1fr;
  }

  .register-header h2{
    font-size:24px;
  }
}
/* GAME GUIDE SECTION */
.guide-section{
  padding:100px 0;
  background:#111;
}

.guide-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.guide-header{
  text-align:center;
  margin-bottom:60px;
}

.guide-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.guide-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
}

.guide-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.guide-card{
  background:#1a1a1a;
  padding:35px 25px;
  border-radius:12px;
  border:1px solid #222;
  transition:0.3s;
}

.guide-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
}

.guide-card h3{
  color:#ff9900;
  font-size:18px;
  margin-bottom:15px;
}

.guide-card p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
}

.guide-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:#ff9900;
  color:#000;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* RESPONSIVE */
@media(max-width:992px){
  .guide-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .guide-section{
    padding:60px 0;
  }
  .guide-grid{
    grid-template-columns:1fr;
  }
  .guide-header h2{
    font-size:24px;
  }
}
/* POPULAR SLOT SECTION */
.popular-slot-section{
  padding:100px 0;
  background:#0f0f0f;
}

.popular-slot-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.popular-slot-header{
  text-align:center;
  margin-bottom:60px;
}

.popular-slot-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.popular-slot-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
}

.popular-slot-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.popular-slot-card{
  background:#1a1a1a;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #222;
  transition:0.3s;
  text-align:center;
}

.popular-slot-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(255,153,0,0.3);
}

.popular-slot-content{
  padding:20px;
}

.popular-slot-content h3{
  font-size:16px;
  color:#fff;
  margin-bottom:10px;
}

.popular-slot-content p{
  font-size:13px;
  color:#bbb;
  margin-bottom:15px;
}

.popular-slot-btn{
  display:inline-block;
  padding:8px 15px;
  background:#ff9900;
  color:#000;
  border-radius:5px;
  font-weight:bold;
  text-decoration:none;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .popular-slot-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .popular-slot-section{
    padding:60px 0;
  }
  .popular-slot-grid{
    grid-template-columns:1fr;
  }
  .popular-slot-header h2{
    font-size:24px;
  }
}

/* PROVIDER SECTION */
.provider-section{
  padding:100px 0;
  background:#111;
}

.provider-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.provider-header{
  text-align:center;
  margin-bottom:60px;
}

.provider-header h2{
  font-size:32px;
  margin-bottom:15px;
  color:#fff;
}

.provider-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.provider-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:30px;
  align-items:center;
}

.provider-item{
  background:#1a1a1a;
  padding:20px;
  border-radius:8px;
  border:1px solid #222;
  text-align:center;
  transition:0.3s;
}

.provider-item:hover{
  border-color:#ff9900;
  transform:translateY(-4px);
}

.provider-item amp-img{
  max-width:100%;
}
.provider-item a{
  display:block;
}

.provider-item:hover{
  box-shadow:0 0 20px rgba(255,153,0,0.4);
}

/* RESPONSIVE */
@media(max-width:992px){
  .provider-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .provider-section{
    padding:60px 0;
  }

  .provider-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .provider-header h2{
    font-size:24px;
  }
}
/* SERVER SECTION */
.server-section{
  padding:100px 0;
  background:#0f0f0f;
}

.server-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.server-header{
  text-align:center;
  margin-bottom:60px;
}

.server-header h2{
  font-size:32px;
  margin-bottom:15px;
  color:#fff;
}

.server-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.server-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.server-card{
  background:#1a1a1a;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #222;
  transition:0.3s;
}

.server-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
}

.server-content{
  padding:25px;
}

.server-content h3{
  color:#fff;
  font-size:20px;
  margin-bottom:10px;
}

.server-content p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
  margin-bottom:20px;
}

.server-btn{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:10px 18px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:992px){
  .server-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .server-section{
    padding:60px 0;
  }

  .server-grid{
    grid-template-columns:1fr;
  }

  .server-header h2{
    font-size:24px;
  }

}
/* SPORTSBOOK SECTION */
.sports-section{
  padding:100px 0;
  background:#111;
}

.sports-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.sports-header{
  text-align:center;
  margin-bottom:60px;
}

.sports-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.sports-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

/* GRID */
.sports-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.sports-card{
  background:#1a1a1a;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #222;
  transition:0.3s;
}

.sports-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
}

.sports-content{
  padding:30px;
}

.sports-content h3{
  font-size:22px;
  color:#fff;
  margin-bottom:15px;
}

.sports-content p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
  margin-bottom:20px;
}

.sports-btn{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:12px 20px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){

  .sports-section{
    padding:60px 0;
  }

  .sports-grid{
    grid-template-columns:1fr;
  }

  .sports-header h2{
    font-size:24px;
  }

}
/* FAQ SECTION */
.faq-section{
  padding:100px 0;
  background:#0f0f0f;
}

.faq-container{
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
}

.faq-header{
  text-align:center;
  margin-bottom:50px;
}

.faq-header h2{
  font-size:32px;
  color:#fff;
  margin-bottom:15px;
}

.faq-header p{
  color:#aaa;
  font-size:16px;
}

.faq-item{
  background:#1a1a1a;
  margin-bottom:15px;
  border-radius:8px;
  border:1px solid #222;
  padding:20px;
}

.faq-item h3{
  font-size:16px;
  color:#ff9900;
  margin-bottom:10px;
}

.faq-item p{
  font-size:14px;
  color:#bbb;
  line-height:1.7;
}

@media(max-width:768px){
  .faq-section{
    padding:60px 0;
  }
  .faq-header h2{
    font-size:24px;
  }
}
/* ARTIKEL PINTUPLAY */
.pintuplay-article-section{
  padding:80px 0;
  background:#0f0f0f;
}

.pintuplay-article-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.pintuplay-article-header{
  text-align:center;
  margin-bottom:50px;
}

.pintuplay-article-header h2{
  font-size:28px;
  color:#fff;
  margin-bottom:15px;
}

.pintuplay-article-header p{
  color:#aaa;
  font-size:15px;
}

.pintuplay-article-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.pintuplay-article-item{
  background:#1a1a1a;
  padding:25px;
  border-radius:8px;
  border:1px solid #222;
  transition:0.3s;
}

.pintuplay-article-item:hover{
  border-color:#ff9900;
  transform:translateY(-4px);
}

.pintuplay-article-item h3{
  margin:0;
  font-size:18px;
}

.pintuplay-article-item a{
  color:#fff;
  text-decoration:none;
}

.pintuplay-article-item a:hover{
  color:#ff9900;
}

/* RESPONSIVE */
@media(max-width:768px){
  .pintuplay-article-grid{
    grid-template-columns:1fr;
  }
}

.quick-links-section{
  padding:60px 0;
  background:#111;
}

.quick-links-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
  text-align:center;
}

.quick-links-section h2{
  font-size:24px;
  color:#fff;
  margin-bottom:30px;
}

.quick-links-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
}

.quick-links-grid a{
  background:#1a1a1a;
  padding:8px 15px;
  border-radius:5px;
  text-decoration:none;
  font-size:13px;
  color:#bbb;
  border:1px solid #222;
}

.quick-links-grid a:hover{
  border-color:#ff9900;
  color:#ff9900;
}
/* FOOTER ARTICLE SEO */
.footer-article {
  padding:80px 0;
  background:#0d0d0d;
  border-top:1px solid #222;
}

.footer-article-container {
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.footer-article h2 {
  font-size:28px;
  color:#ff9900;
  margin-bottom:30px;
  text-align:center;
}

.footer-article p {
  font-size:14px;
  color:#bbb;
  line-height:1.9;
  margin-bottom:20px;
  text-align:justify;
}

.footer-article strong {
  color:#ffffff;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-article {
    padding:50px 0;
  }

  .footer-article h2 {
    font-size:22px;
  }

  .footer-article p {
    font-size:13px;
  }
}
/* FOOTER ARTICLE LINK STYLE */
.footer-article a{
  color:inherit;          /* mengikuti warna teks normal */
  text-decoration:none;   /* hilangkan underline */
  font-weight:500;
}

.footer-article a:hover{
  color:#ff9900;          /* efek hover elegan */
}
/* FOOTER SEO */
.footer{
  background:#0a0a0a;
  padding:80px 0 40px 0;
  border-top:1px solid #222;
}

.footer-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:40px;
  margin-bottom:40px;
}

.footer-column h4{
  color:#ff9900;
  margin-bottom:20px;
  font-size:16px;
}

.footer-column a{
  display:block;
  color:#bbb;
  text-decoration:none;
  font-size:13px;
  margin-bottom:8px;
}

.footer-column a:hover{
  color:#ff9900;
}

.footer-bottom{
  background:#0a0a0a;
  padding:25px 20px;
  text-align:center;
  border-top:1px solid #222;
}

.footer-links{
  margin-bottom:15px;
}

.footer-links a{
  color:#777;
  text-decoration:none;
  margin:0 10px;
  font-size:13px;
}

.footer-links a:hover{
  color:#ff9900;
}

.copyright{
  font-size:12px;
  color:#555;
}
.footer-brand{
  color:#555;       /* sama seperti teks copyright */
  text-decoration:none;
  font-weight:600;
}

.footer-brand:hover{
  color:#ff9900;    /* efek hover elegan */
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){

  .footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .footer-links a{
    margin:0;
    font-size:14px;
  }

}


/* RESPONSIVE */
@media(max-width:992px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}
/* HANTU */
.hantu{
  display:none
}

/* POPUP OVERLAY */
.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.75);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
}

/* ACTIVE */
.popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* BOX */
.popup-box{
  background:#111;
  padding:20px;
  border-radius:10px;
  width:90%;
  max-width:320px;
  text-align:center;
  position:relative;
  animation:fadeUp 0.4s ease;
}

/* IMAGE */
.popup-img{
  width:100%;
  border-radius:8px;
  margin-bottom:15px;
}

/* TEXT */
.popup-box h3{
  color:#ff9900;
  margin-bottom:10px;
}

.popup-box p{
  font-size:14px;
  color:#ccc;
  margin-bottom:20px;
}

/* BUTTON */
.popup-btn{
  display:block;
  background:#ff9900;
  color:#000;
  padding:12px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* CLOSE */
.popup-close{
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  font-size:20px;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    transform:translateY(40px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}

/* ❗ HANYA MOBILE */
@media(min-width:769px){
  .popup-overlay{
    display:none;
  }
}

.hero-about{
  padding:120px 20px 80px;
  text-align:center;
  background: radial-gradient(circle at top, rgba(255,153,0,0.15), transparent 50%),
              linear-gradient(135deg,#0f0f0f,#1a1a1a);
}

.hero-about h1{
  font-size:42px;
  margin-bottom:20px;
  line-height:1.3;
}

.hero-about p{
  font-size:16px;
  color:#aaa;
  max-width:600px;
  margin:0 auto;
  line-height:1.7;
}

.content-container-about{
  max-width:800px;
  margin:0 auto;
  padding:80px 20px;
}

.section-about{
  margin-bottom:60px;
  padding-bottom:40px;
  border-bottom:1px solid #1f1f1f;
}

.section-about:last-child{
  border-bottom:none;
}

.section-about h2{
  font-size:24px;
  margin-bottom:15px;
  color:#ff9900;
}

.section-about p{
  color:#bbb;
  line-height:1.8;
  font-size:15px;
}

.highlight-about{
  background:#1a1a1a;
  padding:25px;
  border-radius:10px;
  border:1px solid #222;
  margin-top:20px;
  line-height:2;
  font-size:14px;
  transition:0.3s;
}

.highlight-about:hover{
  border-color:#ff9900;
  box-shadow:0 0 20px rgba(255,153,0,0.2);
}

@media(max-width:768px){
  .hero-about{
    padding:80px 20px 50px;
  }

  .hero-about h1{
    font-size:28px;
  }
}



/* SLOT ONLINE INFO SECTION */
.slot-info-section{
  padding:100px 0;
  background:linear-gradient(135deg,#111,#0f0f0f);
}

.slot-info-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.slot-info-header{
  text-align:center;
  margin-bottom:60px;
}

.slot-info-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.slot-info-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.slot-info-content{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

.slot-info-text h3{
  font-size:22px;
  color:#ff9900;
  margin-bottom:15px;
}

.slot-info-text p{
  color:#ccc;
  line-height:1.9;
  margin-bottom:20px;
  font-size:15px;
}

.slot-info-highlight{
  display:grid;
  gap:20px;
}

.slot-feature{
  background:#1a1a1a;
  padding:25px;
  border-radius:10px;
  border:1px solid #222;
  transition:0.3s;
}

.slot-feature:hover{
  border-color:#ff9900;
  transform:translateY(-4px);
}

.slot-feature strong{
  display:block;
  font-size:18px;
  color:#ff9900;
  margin-bottom:8px;
}

.slot-feature span{
  font-size:14px;
  color:#bbb;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){

  .slot-info-section{
    padding:60px 0;
  }

  .slot-info-content{
    grid-template-columns:1fr;
  }

  .slot-info-header h2{
    font-size:26px;
  }
}
/* KEUNGGULAN SLOT ONLINE */
.keunggulan-slot-section{
  padding:100px 0;
  background:#111;
}

.keunggulan-slot-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.keunggulan-slot-header{
  text-align:center;
  margin-bottom:60px;
}

.keunggulan-slot-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.keunggulan-slot-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.keunggulan-slot-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.keunggulan-card{
  background:linear-gradient(145deg,#1a1a1a,#141414);
  padding:35px 30px;
  border-radius:14px;
  border:1px solid #222;
  transition:0.3s;
  position:relative;
  overflow:hidden;
}

.keunggulan-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(255,153,0,0.2);
}

.keunggulan-icon{
  font-size:28px;
  margin-bottom:18px;
  color:#ff9900;
}

.keunggulan-card h3{
  font-size:20px;
  color:#fff;
  margin-bottom:12px;
}

.keunggulan-card p{
  font-size:14px;
  color:#bbb;
  line-height:1.8;
}

.keunggulan-cta{
  text-align:center;
  margin-top:60px;
}

.keunggulan-cta a{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:14px 32px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
  transition:0.3s;
}

.keunggulan-cta a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:992px){
  .keunggulan-slot-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .keunggulan-slot-section{
    padding:60px 0;
  }

  .keunggulan-slot-grid{
    grid-template-columns:1fr;
  }

  .keunggulan-slot-header h2{
    font-size:26px;
  }
}
/* STRATEGI SLOT ONLINE */
.strategi-slot-section{
  padding:100px 0;
  background:linear-gradient(135deg,#0f0f0f,#111);
}

.strategi-slot-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.strategi-slot-header{
  text-align:center;
  margin-bottom:60px;
}

.strategi-slot-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.strategi-slot-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.strategi-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.strategi-item{
  background:#1a1a1a;
  padding:35px;
  border-radius:14px;
  border:1px solid #222;
  transition:0.3s;
}

.strategi-item:hover{
  border-color:#ff9900;
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(255,153,0,0.15);
}

.strategi-item h3{
  font-size:20px;
  color:#ff9900;
  margin-bottom:15px;
}

.strategi-item p{
  font-size:14px;
  color:#bbb;
  line-height:1.9;
}

.strategi-cta{
  text-align:center;
  margin-top:60px;
}

.strategi-cta a{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:14px 32px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
  transition:0.3s;
}

.strategi-cta a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:768px){

  .strategi-slot-section{
    padding:60px 0;
  }

  .strategi-grid{
    grid-template-columns:1fr;
  }

  .strategi-slot-header h2{
    font-size:26px;
  }
}
/* PROVIDER SLOT ONLINE TERBAIK */
.provider-slot-section{
  padding:100px 0;
  background:#111;
}

.provider-slot-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.provider-slot-header{
  text-align:center;
  margin-bottom:60px;
}

.provider-slot-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.provider-slot-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.provider-slot-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.provider-slot-card{
  background:linear-gradient(145deg,#1a1a1a,#141414);
  border-radius:14px;
  padding:35px 25px;
  border:1px solid #222;
  text-align:center;
  transition:0.3s;
}

.provider-slot-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(255,153,0,0.15);
}

.provider-slot-card amp-img{
  margin-bottom:20px;
}

.provider-slot-card h3{
  font-size:18px;
  color:#fff;
  margin-bottom:10px;
}

.provider-slot-card p{
  font-size:14px;
  color:#bbb;
  line-height:1.8;
  margin-bottom:20px;
}

.provider-slot-card a{
  display:inline-block;
  padding:10px 20px;
  background:#ff9900;
  color:#000;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.provider-slot-card a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:992px){
  .provider-slot-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .provider-slot-section{
    padding:60px 0;
  }
  .provider-slot-grid{
    grid-template-columns:1fr;
  }
  .provider-slot-header h2{
    font-size:26px;
  }
}
/* SERVER PILIHAN SLOT ONLINE */
.server-pilihan-section{
  padding:100px 0;
  background:linear-gradient(135deg,#0f0f0f,#111);
}

.server-pilihan-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.server-pilihan-header{
  text-align:center;
  margin-bottom:60px;
}

.server-pilihan-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.server-pilihan-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.server-pilihan-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.server-pilihan-card{
  background:#1a1a1a;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #222;
  transition:0.3s;
  display:flex;
  flex-direction:column;
}

.server-pilihan-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(255,153,0,0.15);
}

.server-pilihan-content{
  padding:25px;
  flex:1;
}

.server-pilihan-content h3{
  font-size:20px;
  color:#ff9900;
  margin-bottom:12px;
}

.server-pilihan-content p{
  font-size:14px;
  color:#bbb;
  line-height:1.8;
  margin-bottom:20px;
}

.server-pilihan-content a{
  display:inline-block;
  padding:10px 20px;
  background:#ff9900;
  color:#000;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
  transition:0.3s;
}

.server-pilihan-content a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:992px){
  .server-pilihan-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .server-pilihan-section{
    padding:60px 0;
  }
  .server-pilihan-grid{
    grid-template-columns:1fr;
  }
  .server-pilihan-header h2{
    font-size:26px;
  }
}
/* RTP TERTINGGI SLOT ONLINE */
.rtp-section{
  padding:100px 0;
  background:#111;
}

.rtp-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.rtp-header{
  text-align:center;
  margin-bottom:50px;
}

.rtp-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.rtp-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.rtp-table-wrapper{
  overflow-x:auto;
}

.rtp-table{
  width:100%;
  border-collapse:collapse;
  background:#1a1a1a;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #222;
}

.rtp-table th{
  background:#141414;
  color:#ff9900;
  padding:16px;
  font-size:14px;
  text-align:left;
}

.rtp-table td{
  padding:16px;
  font-size:14px;
  color:#ccc;
  border-top:1px solid #222;
}

.rtp-table tr:hover{
  background:#202020;
}

.rtp-badge{
  background:#ff9900;
  color:#000;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
}

.rtp-cta{
  text-align:center;
  margin-top:50px;
}

.rtp-cta a{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:14px 32px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
  transition:0.3s;
}

.rtp-cta a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:768px){
  .rtp-section{
    padding:60px 0;
  }
  .rtp-header h2{
    font-size:26px;
  }
}
/* CARA DAFTAR & MAIN SLOT ONLINE */
.cara-slot-section{
  padding:100px 0;
  background:linear-gradient(135deg,#0f0f0f,#111);
}

.cara-slot-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.cara-slot-header{
  text-align:center;
  margin-bottom:60px;
}

.cara-slot-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.cara-slot-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.cara-slot-steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.cara-step{
  background:#1a1a1a;
  padding:35px;
  border-radius:14px;
  border:1px solid #222;
  transition:0.3s;
  position:relative;
}

.cara-step:hover{
  border-color:#ff9900;
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(255,153,0,0.15);
}

.step-number{
  position:absolute;
  top:-15px;
  left:25px;
  background:#ff9900;
  color:#000;
  font-weight:bold;
  font-size:14px;
  padding:6px 12px;
  border-radius:20px;
}

.cara-step h3{
  font-size:20px;
  color:#ff9900;
  margin-bottom:15px;
  margin-top:10px;
}

.cara-step p{
  font-size:14px;
  color:#bbb;
  line-height:1.9;
}

.cara-cta{
  text-align:center;
  margin-top:60px;
}

.cara-cta a{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:14px 32px;
  border-radius:6px;
  font-weight:bold;
  text-decoration:none;
  transition:0.3s;
}

.cara-cta a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cara-slot-section{
    padding:60px 0;
  }
  .cara-slot-steps{
    grid-template-columns:1fr;
  }
  .cara-slot-header h2{
    font-size:26px;
  }
}

/* PERMAINAN SLOT TERPOPULER */
.slot-populer-section{
  padding:100px 0;
  background:#111;
}

.slot-populer-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.slot-populer-header{
  text-align:center;
  margin-bottom:60px;
}

.slot-populer-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.slot-populer-header p{
  color:#aaa;
  font-size:16px;
  max-width:750px;
  margin:0 auto;
  line-height:1.8;
}

.slot-populer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.slot-populer-card{
  background:linear-gradient(145deg,#1a1a1a,#141414);
  border-radius:16px;
  overflow:hidden;
  border:1px solid #222;
  transition:0.3s;
  display:flex;
  flex-direction:column;
}

.slot-populer-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(255,153,0,0.15);
}

.slot-populer-card amp-img{
  border-bottom:1px solid #222;
}

.slot-populer-content{
  padding:20px;
  flex:1;
}

.slot-populer-content h3{
  font-size:16px;
  color:#ff9900;
  margin-bottom:10px;
}

.slot-populer-content p{
  font-size:13px;
  color:#bbb;
  line-height:1.7;
  margin-bottom:15px;
}

.slot-populer-content a{
  display:inline-block;
  padding:8px 18px;
  background:#ff9900;
  color:#000;
  border-radius:6px;
  font-size:13px;
  font-weight:bold;
  text-decoration:none;
}

.slot-populer-content a:hover{
  opacity:0.85;
}

/* RESPONSIVE */
@media(max-width:992px){
  .slot-populer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .slot-populer-section{
    padding:60px 0;
  }
  .slot-populer-grid{
    grid-template-columns:1fr;
  }
  .slot-populer-header h2{
    font-size:26px;
  }
}/* FAQ SLOT ONLINE */
.faq-slot-section{
  padding:100px 0;
  background:linear-gradient(135deg,#0f0f0f,#111);
}

.faq-slot-container{
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
}

.faq-slot-header{
  text-align:center;
  margin-bottom:50px;
}

.faq-slot-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.faq-slot-header p{
  color:#aaa;
  font-size:16px;
}

.faq-slot-item{
  background:#1a1a1a;
  border-radius:12px;
  padding:25px;
  margin-bottom:20px;
  border:1px solid #222;
  transition:0.3s;
}

.faq-slot-item:hover{
  border-color:#ff9900;
  box-shadow:0 5px 20px rgba(255,153,0,0.15);
}

.faq-slot-item h3{
  font-size:16px;
  color:#ff9900;
  margin-bottom:12px;
}

.faq-slot-item p{
  font-size:14px;
  color:#bbb;
  line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:768px){
  .faq-slot-section{
    padding:60px 0;
  }
  .faq-slot-header h2{
    font-size:26px;
  }
}
/* ============================= */
/* SEO BOOSTER ARTICLE SECTION  */
/* ============================= */

.seo-slot-section{
  padding:100px 0;
  background:linear-gradient(135deg,#111,#0f0f0f);
}

.seo-slot-container{
  max-width:1000px;
  margin:0 auto;
  padding:0 20px;
}

.seo-slot-header{
  text-align:center;
  margin-bottom:50px;
}

.seo-slot-header h2{
  font-size:34px;
  color:#fff;
  margin-bottom:15px;
}

.seo-slot-header p{
  color:#aaa;
  font-size:16px;
  line-height:1.8;
}

.seo-slot-content h3{
  font-size:22px;
  color:#ff9900;
  margin-top:40px;
  margin-bottom:15px;
}

.seo-slot-content p{
  color:#ccc;
  line-height:1.9;
  font-size:15px;
  margin-bottom:20px;
}

.seo-slot-content ul{
  margin-bottom:20px;
  padding-left:20px;
}

.seo-slot-content li{
  color:#bbb;
  margin-bottom:8px;
  line-height:1.8;
}

.seo-slot-content a{
  color:#ff9900;
  text-decoration:none;
  font-weight:600;
}

.seo-slot-content a:hover{
  text-decoration:underline;
}

.seo-highlight-box{
  background:#1a1a1a;
  padding:30px;
  border-radius:12px;
  border:1px solid #222;
  margin:40px 0;
}

.seo-highlight-box strong{
  color:#ff9900;
}

/* FOOTER SEO */
.footer{
  background:#0a0a0a;
  padding:80px 0 40px 0;
  border-top:1px solid #222;
}

.footer-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:40px;
  margin-bottom:40px;
}

.footer-column h4{
  color:#ff9900;
  margin-bottom:20px;
  font-size:16px;
}

.footer-column a{
  display:block;
  color:#bbb;
  text-decoration:none;
  font-size:13px;
  margin-bottom:8px;
}

.footer-column a:hover{
  color:#ff9900;
}

.footer-bottom{
  background:#0a0a0a;
  padding:25px 20px;
  text-align:center;
  border-top:1px solid #222;
}

.footer-links{
  margin-bottom:15px;
}

.footer-links a{
  color:#777;
  text-decoration:none;
  margin:0 10px;
  font-size:13px;
}

.footer-links a:hover{
  color:#ff9900;
}

.copyright{
  font-size:12px;
  color:#555;
}
.footer-brand{
  color:#555;       /* sama seperti teks copyright */
  text-decoration:none;
  font-weight:600;
}

.footer-brand:hover{
  color:#ff9900;    /* efek hover elegan */
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){

  .footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .footer-links a{
    margin:0;
    font-size:14px;
  }

}


/* RESPONSIVE */
@media(max-width:992px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:992px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .grid{
    grid-template-columns:1fr;
  }
}


/* =========================
   SLOT PAGE ONLY (SAFE)
========================= */

.page-slot section{
  padding:100px 0;
}

.page-slot .slot-info-section,
.page-slot .keunggulan-slot-section,
.page-slot .strategi-slot-section,
.page-slot .provider-slot-section,
.page-slot .server-pilihan-section,
.page-slot .rtp-section,
.page-slot .cara-slot-section,
.page-slot .slot-populer-section,
.page-slot .faq-slot-section,
.page-slot .seo-slot-section{
  position:relative;
}

/* CONSISTENT CONTAINER */
.page-slot [class*="container"]{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

/* TYPOGRAPHY FIX */
.page-slot h2{
  font-size:34px;
  line-height:1.3;
}

.page-slot p{
  line-height:1.8;
}

/* SECTION DIVIDER */
.page-slot section::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(to right, transparent, #222, transparent);
}

/* CARD IMPROVEMENT */
.page-slot .keunggulan-card,
.page-slot .strategi-item,
.page-slot .provider-slot-card,
.page-slot .server-pilihan-card,
.page-slot .slot-populer-card{
  transition:all 0.3s ease;
}

.page-slot .keunggulan-card:hover,
.page-slot .strategi-item:hover,
.page-slot .provider-slot-card:hover,
.page-slot .server-pilihan-card:hover,
.page-slot .slot-populer-card:hover{
  transform:translateY(-6px);
}

/* GRID BALANCE */
.page-slot .keunggulan-slot-grid,
.page-slot .slot-populer-grid{
  align-items:stretch;
}

.page-slot .keunggulan-card,
.page-slot .slot-populer-card{
  height:100%;
}

/* BUTTON CONSISTENCY */
.page-slot .btn-outline{
  border:1px solid #ff9900;
  color:#ff9900;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* MOBILE */
@media(max-width:768px){

  .page-slot section{
    padding:60px 0;
  }

  .page-slot h2{
    font-size:26px;
  }

}



/* BANDAR TOGEL SECTION */
.bandar-section{
  padding:110px 0;
  background:linear-gradient(180deg,#0f0f0f,#141414);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.bandar-header{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px auto;
}

.bandar-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.bandar-header p{
  color:#aaa;
  font-size:16px;
}

.bandar-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.bandar-card{
  background:#1a1a1a;
  padding:40px 30px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.bandar-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.bandar-card h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:18px;
}

.bandar-card p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

.bandar-highlight{
  margin-top:70px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.bandar-highlight p{
  color:#bbb;
  font-size:15px;
  line-height:1.8;
}

@media(max-width:992px){
  .bandar-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .bandar-grid{
    grid-template-columns:1fr;
  }
  .bandar-header h2{
    font-size:24px;
  }
}
/* PASARAN TOGEL PREMIUM */
.pasaran-section{
  padding:100px 0;
  background:linear-gradient(180deg,#0f0f0f,#141414);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.pasaran-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px auto;
}

.pasaran-header h2{
  font-size:32px;
  margin-bottom:20px;
  color:#ff9900;
}

.pasaran-header p{
  color:#aaa;
  font-size:16px;
}

.pasaran-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.pasaran-card{
  background:#1a1a1a;
  border-radius:14px;
  padding:40px 30px;
  border:1px solid #222;
  text-align:center;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.pasaran-card:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#ff9900;
}

.pasaran-card:hover{
  transform:translateY(-8px);
  border-color:#ff9900;
  box-shadow:0 10px 30px rgba(255,153,0,0.15);
}

.pasaran-card h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:20px;
}

.pasaran-card p{
  color:#bbb;
  font-size:14px;
  margin-bottom:20px;
}

.pasaran-btn{
  display:inline-block;
  padding:10px 22px;
  border-radius:6px;
  background:#ff9900;
  color:#000;
  font-weight:bold;
  text-decoration:none;
  font-size:14px;
}

@media(max-width:768px){
  .pasaran-grid{
    grid-template-columns:1fr;
  }
  .pasaran-header h2{
    font-size:24px;
  }
}
/* RESULT & PREDIKSI PREMIUM */
.result-section{
  padding:100px 0;
  background:#111;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.result-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px auto;
}

.result-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.result-header p{
  color:#aaa;
  font-size:16px;
}

.result-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.result-card{
  background:#1a1a1a;
  border-radius:14px;
  padding:40px;
  border:1px solid #222;
  transition:0.3s;
}

.result-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(255,153,0,0.15);
}

.result-card h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:20px;
}

.result-card p{
  color:#bbb;
  font-size:14px;
  margin-bottom:20px;
}

.result-btn{
  display:inline-block;
  padding:10px 22px;
  border-radius:6px;
  background:#ff9900;
  color:#000;
  font-weight:bold;
  text-decoration:none;
  font-size:14px;
}

@media(max-width:768px){
  .result-grid{
    grid-template-columns:1fr;
  }
  .result-header h2{
    font-size:24px;
  }
}
/* WHY CHOOSE SECTION */
.why-section{
  padding:110px 0;
  background:linear-gradient(180deg,#0f0f0f,#151515);
}

.why-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.why-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.why-header p{
  color:#aaa;
  font-size:16px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.why-card{
  background:#1a1a1a;
  padding:40px 30px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.why-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.why-card h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:18px;
}

.why-card p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

@media(max-width:992px){
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
  }
  .why-header h2{
    font-size:24px;
  }
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:40px;
}

.card{
  background:#1a1a1a;
  border-radius:10px;
  padding:30px;
  border:1px solid #222;
  transition:0.3s;
}
.card:hover{
  border-color:#ff9900;
  transform:translateY(-5px);
}
.card h3{
  margin-bottom:15px;
  color:#ff9900;
}
.card a{
  color:#fff;
  text-decoration:none;
  display:inline-block;
  margin-top:15px;
}

@media(max-width:768px){
  .hero h1{font-size:26px}
  .grid{grid-template-columns:1fr}
}
/* TRUST SECTION */
.trust-section{
  padding:110px 0;
  background:linear-gradient(180deg,#111,#0f0f0f);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.trust-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.trust-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.trust-header p{
  color:#aaa;
  font-size:16px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.trust-card{
  background:#1a1a1a;
  padding:40px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.trust-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.trust-card h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:18px;
}

.trust-card p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

.trust-highlight{
  margin-top:60px;
  text-align:center;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.trust-highlight p{
  font-size:15px;
  color:#bbb;
  line-height:1.8;
}

.trust-highlight strong{
  color:#ff9900;
}

@media(max-width:768px){
  .trust-grid{
    grid-template-columns:1fr;
  }

  .trust-header h2{
    font-size:24px;
  }
}

/* CARA BERMAIN SECTION */
.cara-section{
  padding:110px 0;
  background:linear-gradient(180deg,#111,#151515);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.cara-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.cara-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.cara-header p{
  color:#aaa;
  font-size:16px;
}

.cara-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

.cara-step{
  background:#1a1a1a;
  padding:40px 30px;
  border-radius:16px;
  border:1px solid #222;
  position:relative;
  transition:0.3s;
  text-align:left;
}

.cara-step:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.cara-number{
  font-size:40px;
  font-weight:bold;
  color:#ff9900;
  opacity:0.15;
  position:absolute;
  top:20px;
  right:20px;
}

.cara-step h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:18px;
}

.cara-step p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

.cara-cta{
  text-align:center;
  margin-top:60px;
}

.cara-btn{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:14px 30px;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
}

@media(max-width:992px){
  .cara-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .cara-steps{
    grid-template-columns:1fr;
  }
  .cara-header h2{
    font-size:24px;
  }
}
/* JENIS TARUHAN SECTION */
.taruhan-section{
  padding:110px 0;
  background:linear-gradient(180deg,#0f0f0f,#141414);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.taruhan-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px auto;
}

.taruhan-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.taruhan-header p{
  color:#aaa;
  font-size:16px;
}

.taruhan-table-wrapper{
  overflow-x:auto;
}

.taruhan-table{
  width:100%;
  border-collapse:collapse;
  background:#1a1a1a;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #222;
}

.taruhan-table thead{
  background:#111;
}

.taruhan-table th{
  padding:18px;
  font-size:14px;
  text-align:left;
  color:#ff9900;
  border-bottom:1px solid #222;
}

.taruhan-table td{
  padding:18px;
  font-size:14px;
  color:#bbb;
  border-bottom:1px solid #222;
}

.taruhan-table tbody tr:hover{
  background:#151515;
}

.taruhan-note{
  margin-top:25px;
  text-align:center;
}

.taruhan-note p{
  font-size:13px;
  color:#666;
}

@media(max-width:768px){
  .taruhan-header h2{
    font-size:24px;
  }

  .taruhan-table th,
  .taruhan-table td{
    padding:14px;
    font-size:13px;
  }
}
/* SIMULASI SECTION */
.simulasi-section{
  padding:110px 0;
  background:#111;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.simulasi-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.simulasi-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.simulasi-header p{
  color:#aaa;
  font-size:16px;
}

.simulasi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.simulasi-card{
  background:#1a1a1a;
  padding:40px;
  border-radius:16px;
  border:1px solid #222;
  text-align:center;
  transition:0.3s;
}

.simulasi-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.simulasi-card h3{
  color:#ff9900;
  margin-bottom:20px;
  font-size:20px;
}

.simulasi-card p{
  color:#bbb;
  font-size:14px;
  margin-bottom:8px;
}

.simulasi-result{
  margin-top:20px;
  padding:20px;
  background:#151515;
  border-radius:10px;
  border:1px solid #222;
  font-size:15px;
  color:#aaa;
}

.simulasi-result strong{
  display:block;
  font-size:22px;
  color:#ff9900;
  margin-top:8px;
}

.simulasi-note{
  margin-top:40px;
  text-align:center;
}

.simulasi-note p{
  font-size:13px;
  color:#666;
}

@media(max-width:992px){
  .simulasi-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .simulasi-grid{
    grid-template-columns:1fr;
  }
  .simulasi-header h2{
    font-size:24px;
  }
}
/* KOMBINASI SECTION */
.kombinasi-section{
  padding:110px 0;
  background:linear-gradient(180deg,#151515,#0f0f0f);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.kombinasi-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.kombinasi-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.kombinasi-header p{
  color:#aaa;
  font-size:16px;
}

.kombinasi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.kombinasi-card{
  background:#1a1a1a;
  padding:40px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.kombinasi-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.kombinasi-card h3{
  color:#ff9900;
  margin-bottom:20px;
  font-size:18px;
}

.kombinasi-card p{
  color:#bbb;
  font-size:14px;
  margin-bottom:6px;
}

.kombinasi-result{
  margin-top:20px;
  padding:20px;
  background:#111;
  border-radius:10px;
  border:1px solid #222;
  font-size:14px;
  color:#aaa;
}

.kombinasi-result strong{
  display:block;
  font-size:20px;
  color:#ff9900;
  margin:10px 0;
}

.kombinasi-note{
  margin-top:40px;
  text-align:center;
}

.kombinasi-note p{
  font-size:13px;
  color:#666;
}

@media(max-width:992px){
  .kombinasi-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .kombinasi-grid{
    grid-template-columns:1fr;
  }
  .kombinasi-header h2{
    font-size:24px;
  }
}
/* COLOK SECTION */
.colok-section{
  padding:110px 0;
  background:#111;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.colok-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.colok-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.colok-header p{
  color:#aaa;
  font-size:16px;
}

.colok-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.colok-card{
  background:#1a1a1a;
  padding:40px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.colok-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.colok-card h3{
  color:#ff9900;
  margin-bottom:20px;
  font-size:18px;
}

.colok-card p{
  color:#bbb;
  font-size:14px;
  margin-bottom:6px;
}

.colok-result{
  margin-top:20px;
  padding:20px;
  background:#151515;
  border-radius:10px;
  border:1px solid #222;
  font-size:14px;
  color:#aaa;
}

.colok-result strong{
  display:block;
  font-size:22px;
  color:#ff9900;
  margin:10px 0;
}

.colok-explain{
  margin-top:60px;
  text-align:center;
  max-width:750px;
  margin-left:auto;
  margin-right:auto;
}

.colok-explain p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

.colok-note{
  margin-top:30px;
  text-align:center;
}

.colok-note p{
  font-size:13px;
  color:#666;
}

@media(max-width:768px){
  .colok-grid{
    grid-template-columns:1fr;
  }

  .colok-header h2{
    font-size:24px;
  }
}
/* COLOK JITU SECTION */
.colok-jitu-section{
  padding:110px 0;
  background:linear-gradient(180deg,#0f0f0f,#151515);
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.colok-jitu-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px auto;
}

.colok-jitu-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.colok-jitu-header p{
  color:#aaa;
  font-size:16px;
}

.colok-jitu-card{
  max-width:700px;
  margin:0 auto;
  background:#1a1a1a;
  padding:50px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.colok-jitu-card:hover{
  border-color:#ff9900;
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.colok-jitu-card h3{
  color:#ff9900;
  margin-bottom:25px;
  font-size:20px;
}

.colok-jitu-detail p{
  color:#bbb;
  font-size:14px;
  margin-bottom:6px;
}

.colok-jitu-result{
  margin-top:25px;
  padding:25px;
  background:#111;
  border-radius:10px;
  border:1px solid #222;
  font-size:14px;
  color:#aaa;
}

.colok-jitu-result strong{
  display:block;
  font-size:22px;
  color:#ff9900;
  margin-top:10px;
}

.colok-jitu-explain{
  margin-top:50px;
  text-align:center;
  max-width:750px;
  margin-left:auto;
  margin-right:auto;
}

.colok-jitu-explain p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

.colok-jitu-note{
  margin-top:25px;
  text-align:center;
}

.colok-jitu-note p{
  font-size:13px;
  color:#666;
}

@media(max-width:768px){
  .colok-jitu-header h2{
    font-size:24px;
  }

  .colok-jitu-card{
    padding:30px;
  }
}
/* MANAJEMEN MODAL SECTION */
.modal-section{
  padding:110px 0;
  background:#111;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.modal-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px auto;
}

.modal-header h2{
  font-size:32px;
  color:#ff9900;
  margin-bottom:20px;
}

.modal-header p{
  color:#aaa;
  font-size:16px;
}

.modal-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.modal-card{
  background:#1a1a1a;
  padding:40px;
  border-radius:16px;
  border:1px solid #222;
  transition:0.3s;
}

.modal-card:hover{
  border-color:#ff9900;
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,153,0,0.15);
}

.modal-card h3{
  color:#ff9900;
  margin-bottom:15px;
  font-size:18px;
}

.modal-card p{
  color:#bbb;
  font-size:14px;
  line-height:1.7;
}

.modal-simulasi{
  margin-top:70px;
  padding:40px;
  background:#1a1a1a;
  border-radius:16px;
  border:1px solid #222;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.modal-simulasi h3{
  color:#ff9900;
  margin-bottom:20px;
}

.modal-simulasi p{
  color:#bbb;
  margin-bottom:8px;
}

.modal-note{
  margin-top:40px;
  text-align:center;
}

.modal-note p{
  font-size:13px;
  color:#666;
}

@media(max-width:768px){
  .modal-grid{
    grid-template-columns:1fr;
  }

  .modal-header h2{
    font-size:24px;
  }
}



/* GUIDE ARTICLE SECTION */
.guide-section{
  padding:110px 0;
  background:linear-gradient(180deg,#151515,#0f0f0f);
  border-top:1px solid #222;
}

.guide-header{
  text-align:center;
  margin-bottom:60px;
}

.guide-header h2{
  font-size:32px;
  color:#ff9900;
}

.guide-content{
  max-width:900px;
  margin:0 auto;
}

.guide-content h3{
  color:#ff9900;
  margin-top:40px;
  margin-bottom:15px;
  font-size:20px;
}

.guide-content p{
  color:#bbb;
  line-height:1.8;
  font-size:15px;
  margin-bottom:15px;
}

.guide-content ul{
  margin:15px 0 25px 20px;
  color:#bbb;
}

.guide-content li{
  margin-bottom:8px;
  font-size:14px;
}
/* GUIDE ARTICLE LINK NORMAL COLOR */
.guide-content a{
  color:#bbb;              /* sama seperti warna paragraf */
  text-decoration:none;    /* hilangkan underline */
  font-weight:600;
}

.guide-content a:hover{
  color:#ff9900;           /* efek hover elegan */
}
@media(max-width:768px){
  .guide-header h2{
    font-size:24px;
  }
}



/* GLOBAL LINK STYLE - NORMAL COLOR */
a{
  color:#bbb;              /* samakan dengan warna paragraf */
  text-decoration:none;    /* hilangkan underline */
  transition:0.3s;
}

a:hover{
  color:#ff9900;           /* efek hover elegan */
}

/* =========================
   TOGEL HERO SECTION
========================= */

.togel-hero{
  position:relative;
  overflow:hidden;
  padding:120px 0 90px;
  background:
    radial-gradient(circle at top right,
    rgba(255,153,0,.15),
    transparent 40%),
    linear-gradient(135deg,#0f0f0f,#171717);
}

/* CONTAINER */
.togel-hero-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}

/* LEFT CONTENT */
.togel-hero-content{
  flex:1;
  max-width:580px;
}

/* BADGE */
.togel-hero-badge{
  display:inline-flex;
  align-items:center;

  padding:8px 18px;
  border-radius:30px;

  background:rgba(255,153,0,.12);
  border:1px solid rgba(255,153,0,.25);

  color:#ff9900;
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;

  margin-bottom:24px;
}

/* TITLE */
.togel-hero-content h1{
  font-size:clamp(38px,5vw,62px);
  line-height:1.15;
  letter-spacing:-1.5px;

  color:#fff;
  margin-bottom:24px;
}

/* DESCRIPTION */
.togel-hero-content p{
  font-size:16px;
  line-height:1.9;
  color:#bdbdbd;

  margin-bottom:38px;
}

/* BUTTON WRAPPER */
.togel-hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;

  margin-bottom:45px;
}

/* BUTTON */
.togel-btn-primary,
.togel-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:190px;
  padding:15px 28px;

  border-radius:12px;

  font-size:14px;
  font-weight:700;
  text-decoration:none;

  transition:.3s ease;
}

/* PRIMARY */
.togel-btn-primary{
  background:#ff9900;
  color:#000;

  box-shadow:
    0 10px 30px rgba(255,153,0,.18);
}

.togel-btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:
    0 15px 35px rgba(255,153,0,.28);
}

/* SECONDARY */
.togel-btn-secondary{
  border:1px solid rgba(255,153,0,.4);
  color:#ff9900;
  background:rgba(255,255,255,.02);
}

.togel-btn-secondary:hover{
  background:#ff9900;
  color:#000;
  transform:translateY(-3px);
}

/* STATS */
.togel-hero-stats{
  display:flex;
  gap:35px;
  flex-wrap:wrap;

  margin-bottom:35px;
}

.togel-stat-item{
  position:relative;
  padding-right:35px;
}

.togel-stat-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);

  width:1px;
  height:32px;

  background:#2a2a2a;
}

.togel-stat-item strong{
  display:block;

  font-size:26px;
  color:#ff9900;

  margin-bottom:6px;
}

.togel-stat-item span{
  font-size:14px;
  color:#999;
}

/* TRUST BADGES */
.togel-trust-badges{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.togel-trust-badge{
  padding:12px 16px;

  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);

  border-radius:12px;

  font-size:13px;
  color:#ccc;

  backdrop-filter:blur(10px);
}

/* HERO IMAGE */
.togel-hero-image{
  flex:1;

  display:flex;
  justify-content:center;
}

/* IMAGE */
.togel-hero-image img{
  width:100%;
  max-width:560px;

  border-radius:28px;

  box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.05);

  transition:.35s ease;
}

.togel-hero-image img:hover{
  transform:translateY(-6px);
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .togel-hero-container{
    flex-direction:column;
    text-align:center;
  }

  .togel-hero-content{
    max-width:100%;
  }

  .togel-hero-buttons{
    justify-content:center;
  }

  .togel-hero-stats{
    justify-content:center;
  }

  .togel-trust-badges{
    justify-content:center;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .togel-hero{
    padding:85px 0 60px;
  }

  .togel-hero-content h1{
    font-size:34px;
    line-height:1.25;
  }

  .togel-hero-content p{
    font-size:15px;
  }

  .togel-hero-buttons{
    flex-direction:column;
    gap:14px;
  }

  .togel-btn-primary,
  .togel-btn-secondary{
    width:100%;
    max-width:280px;
  }

  .togel-hero-stats{
    gap:24px;
  }

  .togel-stat-item{
    padding-right:0;
  }

  .togel-stat-item::after{
    display:none;
  }

  .togel-hero-image img{
    border-radius:20px;
  }

}