/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
}

/* =========================
   THEME
========================= */
:root {
  --gold: #ffd700;
  --orange: #ff8c00;
  --red: #ff3c00;
  --dark: #0b0b0b;
  --dark2: #111;
  --text: #eee;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,165,0,0.2);
  z-index: 999;
}

.header .container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 38px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAV */
.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  position: relative;
}

/* HOVER EFFECT */
.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--gold);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  background: var(--dark2);
  border-radius: 8px;
  min-width: 200px;
  padding: 5px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
}

.dropdown-menu a:hover {
  background: rgba(255,165,0,0.1);
}

/* CTA */
.cta a {
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* BURGER */
.burger {
  display: none;
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   MOBILE MENU FIX PREMIUM
========================= */

/* HEADER MOBILE */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--gold);
}

/* CLOSE BUTTON */
#closeMenu {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* LINK */
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,165,0,0.1);
  font-size: 15px;
}

/* HOVER */
.mobile-menu a:hover {
  color: var(--gold);
}

/* DROPDOWN */
.mobile-dropdown {
  border-bottom: 1px solid rgba(255,165,0,0.1);
}

/* TOGGLE */
.mobile-dropdown-toggle {
  padding: 12px 0;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
}

/* SUBMENU LINK */
.mobile-submenu a {
  font-size: 14px;
  color: #ccc;
  border: none;
  padding: 8px 0;
}

/* ACTIVE */
.mobile-dropdown.active .mobile-submenu {
  display: flex;
}

/* CTA */
.mobile-cta {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  color: #000 !important;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  font-weight: bold;
}

.mobile-submenu {
  transition: all 0.3s ease;
}

/* =========================
   HERO
========================= */
.hero {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  padding: 100px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT */
.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-text span {
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: #ccc;
  margin-bottom: 30px;
}

/* BUTTON */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--red));
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

/* IMAGE */
.hero-image img {
  max-width: 500px;
  width: 100%;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--dark);
  padding: 20px;
  transition: 0.3s;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

  .nav, .cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-image img {
    max-width: 500px;
  }
}

/* =========================
   FEATURES / KEUNGGULAN
========================= */
.features {
  padding: 80px 0;
  background: #050505;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.section-title p {
  color: #aaa;
  font-size: 15px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ITEM */
.feature-item {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,165,0,0.1);
}

/* HOVER EFFECT */
.feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255,165,0,0.4);
  box-shadow: 0 10px 30px rgba(255,140,0,0.2);
}

/* ICON */
.feature-item .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* TITLE */
.feature-item h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.feature-item p {
  color: #ccc;
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 24px;
  }

}

/* =========================
   PROVIDER SECTION
========================= */
.providers {
  padding: 80px 0;
  background: #000;
}

/* GRID */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* ITEM */
.provider-item {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255,165,0,0.1);
}

/* IMAGE */
.provider-item img {
  width: 100%;
  max-width: 80px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: 0.3s;
}

/* TEXT */
.provider-item span {
  display: block;
  color: #ccc;
  font-size: 14px;
}

/* HOVER EFFECT */
.provider-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,165,0,0.4);
  box-shadow: 0 10px 25px rgba(255,140,0,0.2);
}

.provider-item:hover img {
  filter: grayscale(0%);
}

.provider-item:hover span {
  color: #ffd700;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1024px){
  .provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px){
  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   JAM GACOR SECTION
========================= */
.jam-gacor {
  padding: 80px 0;
  background: #050505;
}

/* GRID */
.jam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.jam-item {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,165,0,0.1);
  transition: 0.3s;
}

/* HOVER */
.jam-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,165,0,0.4);
  box-shadow: 0 10px 25px rgba(255,140,0,0.2);
}

/* JAM TEXT */
.jam {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: bold;
}

/* STATUS */
.status {
  font-size: 14px;
  color: #ffd700;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
  .jam-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ SECTION
========================= */
.faq {
  padding: 80px 0;
  background: #000;
}

/* LIST */
.faq-list {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,165,0,0.2);
  padding: 15px 0;
  cursor: pointer;
}

/* QUESTION */
.faq-question {
  color: #fff;
  font-size: 16px;
  position: relative;
}

/* ICON + */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #ffd700;
}

/* ANSWER */
.faq-answer {
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;

  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-question::after {
  content: "+";
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

/* =========================
   SEO ARTICLE
========================= */
.seo-article {
  padding: 80px 0;
  background: #050505;
  color: #ccc;
}

.seo-article h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
}

.seo-article h3 {
  color: #ffd700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.seo-article p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.seo-article a {
  color: #ffae00;
  text-decoration: none;
}

.seo-article a:hover {
  text-decoration: underline;
}

/* SEO ARTICLE IMPROVEMENT */
.seo-article p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-article a {
  color: #ffae00;
  font-weight: 500;
}

.seo-article a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,165,0,0.1);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
  color: #ffd700;
  margin-bottom: 15px;
}

.footer-col p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffd700;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,165,0,0.1);
  padding-top: 15px;
}

.footer-bottom p {
  color: #777;
  font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}




