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;
  }

}

