:root {
  --bg: #0a0a0a; /* Black pekat */
  --bg-soft: rgba(10, 10, 10, 0.96); /* Black transparan lembut */
  --accent: #d4a558; /* Warna Cream/Gold Gelap Baru untuk Aksen Utama */
  --accent-bright: #e7c488; /* Warna Cream/Gold Cerah Baru */
  --gold: #f5f5dc; /* Cream/Beige untuk highlight utama */
  --gold-soft: rgba(245, 245, 220, 0.18); /* Cream transparan */
  --text-main: #f5f5dc; /* Cream/Beige untuk teks utama */
  --text-muted: #a9a9a9; /* Abu-abu gelap untuk teks sekunder */
  --card-bg: rgba(17, 17, 17, 0.9); /* Latar belakang Card Black lembut */
  --border-soft: rgba(245, 245, 220, 0.12); /* Garis batas lembut cream transparan */
  --radius-xl: 24px;
  --shadow-soft: 0 28px 60px rgba(10, 10, 10, 0.9);
  --container-width: 1120px;
}
 
* {
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
 
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Mengganti gradien merah tua ke hitam */
  background: radial-gradient(circle at top left, #333333 0, #0a0a0a 45%, #000000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
 
a {
  color: inherit;
  text-decoration: none;
}
 
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}
 
/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  /* Mengganti warna header */
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.8));
  border-bottom: 1px solid rgba(245, 245, 220, 0.05);
  transition: box-shadow 0.22s ease-out, background 0.22s ease-out, transform 0.18s ease-out;
}
 
header.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 1);
  transform: translateY(-1px);
}
 
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
 
.nav-left {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  /* Mengganti gradien logo */
  background: radial-gradient(circle at 20% 0%, #d4a558, #333333 55%, #f5f5dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #000000; /* Teks logo hitam */
  box-shadow: 0 10px 25px rgba(245, 245, 220, 0.35);
}
 
.brand-text {
  display: flex;
  flex-direction: column;
}
 
.brand-text span:first-child {
  font-weight: 600;
  letter-spacing: 0.02em;
}
 
.brand-text span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}
 
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
 
nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.93rem;
}
 
.nav-link {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.16s ease-out;
}
 
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  /* Mengganti gradien link */
  background: linear-gradient(to right, var(--gold), var(--accent-bright));
  transition: width 0.22s ease-out;
}
 
.nav-link:hover {
  color: #ffffff; /* Putih/Cream terang saat hover */
}
 
.nav-link:hover::after {
  width: 100%;
}
 
.nav-link.active {
  color: #ffffff; /* Putih/Cream terang saat aktif */
}
 
.nav-link.active::after {
  width: 100%;
}
 
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Mengganti gradien tombol primary */
  background: radial-gradient(circle at 10% 0, #333333, #e7c488 45%, #f5f5dc 100%);
  color: #000000; /* Teks hitam */
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  cursor: pointer;
  /* Mengganti shadow tombol */
  box-shadow: 0 18px 40px rgba(212, 165, 88, 0.8);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.16s ease-out;
  white-space: nowrap;
}
 
.btn-primary:hover {
  transform: translateY(-1px);
  /* Mengganti shadow tombol hover */
  box-shadow: 0 28px 60px rgba(212, 165, 88, 1);
  filter: brightness(1.05);
}
 
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  /* Mengganti warna border outline */
  border: 1px solid rgba(245, 245, 220, 0.5);
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  gap: 8px;
  transition: background 0.16s ease-out, border-color 0.16s ease-out, color 0.16s ease-out;
}
 
.btn-outline:hover {
  background: rgba(17, 17, 17, 0.96);
  /* Mengganti warna border outline hover */
  border-color: rgba(245, 245, 220, 0.9);
  color: #ffffff; /* Cream terang saat hover */
}
 
main {
  padding-bottom: 80px;
}
 
/* HERO */
.hero {
  position: relative;
  padding: 48px 0 32px;
}
 
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: center;
}
 
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  /* Mengganti warna tagline */
  color: #000000;
  background: rgba(245, 245, 220, 0.35);
  border: 1px solid rgba(245, 245, 220, 0.45);
  margin-bottom: 10px;
}
 
.hero-tagline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245, 245, 220, 0.9);
}
 
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
 
.hero h1 .highlight {
  /* Mengganti gradien highlight */
  background: linear-gradient(to right, #f5f5dc, #e7c488);
  -webkit-background-clip: text;
  color: transparent;
}
 
.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 18px;
}
 
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 24px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
 
.hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
 
.check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  /* Mengganti border checkmark */
  border: 1px solid rgba(245, 245, 220, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #000000;
  /* Mengganti background checkmark */
  background: rgba(212, 165, 88, 0.3);
}
 
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
 
.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
 
/* HERO BANNER */
.hero-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  /* Mengganti gradien banner */
  background: radial-gradient(circle at top left, rgba(212, 165, 88, 0.3), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(245, 245, 220, 0.4);
  transform: translateY(10px);
  opacity: 0;
  animation: heroFadeIn 0.7s ease-out forwards 0.15s;
}
 
@keyframes heroFadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
 
.hero-banner-img {
  position: relative;
  overflow: hidden;
  max-height: 320px;
}
 
.hero-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease-out;
}
 
.hero-banner:hover .hero-banner-img img {
  transform: scale(1.07);
}
 
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  /* Mengganti gradien overlay */
  background: radial-gradient(circle at top, rgba(17, 17, 17, 0.1), rgba(0, 0, 0, 0.98));
  mix-blend-mode: soft-light;
}
 
.hero-banner-floating {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-main);
}
 
.hero-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.9);
  /* Mengganti border chip */
  border: 1px solid rgba(245, 245, 220, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
 
.hero-kpi {
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(245, 245, 220, 0.2);
  text-align: right;
}
 
.hero-kpi strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
}
 
/* SECTIONS */
section {
  padding: 40px 0 12px;
  scroll-margin-top: 90px;
}
 
section h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
 
.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 24px;
}
 
/* CARDS / GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
 
.card {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
 
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  /* Mengganti gradien conic card */
  background: conic-gradient(from 180deg at 50% 0%, rgba(245, 245, 220, 0.7), transparent 40%, transparent 80%, rgba(212, 165, 88, 0.7));
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: -1;
}
 
.card:hover::before {
  opacity: 0.7;
}
 
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Mengganti gradien after card */
  background: radial-gradient(circle at top left, rgba(212, 165, 88, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: -2;
}
 
.card:hover::after {
  opacity: 1;
}
 
.card h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 6px;
}
 
.card p {
  font-size: 0.86rem;
  color: var(--text-muted);
}
 
.badge-soft {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #000000;
  /* Mengganti warna badge */
  background: rgba(245, 245, 220, 0.5);
  border: 1px solid rgba(245, 245, 220, 0.65);
  margin-bottom: 10px;
}
 
/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}
 
.pricing-card {
  padding: 20px 18px 18px;
  border-radius: 20px;
  /* Mengganti gradien pricing card */
  background: radial-gradient(circle at top, rgba(212, 165, 88, 0.3), rgba(0, 0, 0, 0.98));
  border: 1px solid rgba(245, 245, 220, 0.7);
  box-shadow: var(--shadow-soft);
}
 
.pricing-card h3 {
  margin: 0 0 4px;
}
 
.pricing-label {
  font-size: 0.78rem;
  color: var(--accent-bright);
  margin-bottom: 10px;
}
 
.pricing-price {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold);
}
 
.pricing-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}
 
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
 
.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}
 
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 245, 220, 0.9);
  margin-top: 6px;
}
 
/* TABEL GAME */
.game-table-wrapper {
  margin-top: 18px;
  overflow-x: auto;
}
 
.game-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 620px;
}
 
.game-table thead {
  /* Mengganti gradien header tabel */
  background: linear-gradient(to right, #333333, #555555);
}
 
.game-table th,
.game-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(245, 245, 220, 0.06);
}
 
.game-table th {
  color: var(--gold);
  font-weight: 600;
  /* Mengganti border bawah header tabel */
  border-bottom: 2px solid rgba(245, 245, 220, 0.8);
  white-space: nowrap;
}
 
.game-table tbody tr:nth-child(even) {
  background: rgba(17, 17, 17, 0.7);
}
 
.game-table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.9);
}
 
.game-table tbody tr:hover {
  /* Mengganti warna hover tabel */
  background: rgba(212, 165, 88, 0.3);
}
 
.badge-mode {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  /* Mengganti badge mode */
  border: 1px solid rgba(245, 245, 220, 0.7);
  font-size: 0.75rem;
  color: #000000;
  background: rgba(245, 245, 220, 0.7);
}
 
.table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}
 
/* TESTIMONI */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
 
.testi-card {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(169, 169, 169, 0.4);
  font-size: 0.85rem;
}
 
.testi-card p {
  margin: 0 0 6px;
}
 
.testi-name {
  font-weight: 500;
  font-size: 0.83rem;
  color: var(--gold);
}
 
.testi-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}
 
/* FAQ */
.faq-list details {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 10px 14px;
  margin-bottom: 8px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  transition: border-color 0.16s ease-out, background 0.16s ease-out;
}
 
.faq-list details[open] {
  /* Mengganti warna open FAQ */
  border-color: rgba(245, 245, 220, 0.9);
  background: rgba(0, 0, 0, 0.98);
}
 
.faq-list summary {
  cursor: pointer;
  list-style: none;
}
 
.faq-list summary::-webkit-details-marker {
  display: none;
}
 
.faq-list p {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
 
/* INTERNAL LINKS SECTION */
.internal-links {
  padding: 32px 0 8px;
  border-top: 1px solid rgba(245, 245, 220, 0.07);
  border-bottom: 1px solid rgba(245, 245, 220, 0.07);
  /* Mengganti gradien internal links */
  background: radial-gradient(circle at top, rgba(212, 165, 88, 0.35), rgba(0, 0, 0, 0.98));
}
 
.internal-links h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--gold);
}
 
.internal-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
  column-gap: 32px;
}
 
.internal-links li {
  margin-bottom: 6px;
  font-size: 0.86rem;
}
 
.internal-links a {
  color: #ffffff;
}
 
.internal-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}
 
/* EXTERNAL LINKS SECTION */
.external-links {
  padding: 26px 0 8px;
}
 
.external-links h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--gold);
}
 
.external-links p {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 640px;
}
 
.external-links a {
  color: var(--gold);
  text-decoration: underline;
}
 
.external-links a:hover {
  color: #ffffff;
}
 
/* KONTAK */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 10px;
}
 
form label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
 
form input,
form textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(245, 245, 220, 0.18);
  background: rgba(0, 0, 0, 0.96);
  color: var(--text-main);
  font-size: 0.9rem;
  margin-bottom: 10px;
  outline: none;
}
 
form input:focus,
form textarea:focus {
  /* Mengganti warna focus form */
  border-color: rgba(245, 245, 220, 0.9);
  box-shadow: 0 0 0 1px rgba(245, 245, 220, 0.7);
}
 
form textarea {
  resize: vertical;
  min-height: 90px;
}
 
.contact-card {
  padding: 16px 16px 14px;
  border-radius: 18px;
  /* Mengganti gradien contact card */
  background: radial-gradient(circle at top, rgba(212, 165, 88, 0.3), rgba(0, 0, 0, 0.98));
  border: 1px solid rgba(245, 245, 220, 0.7);
  font-size: 0.86rem;
}
 
.contact-card p {
  margin: 0 0 8px;
}
 
/* FOOTER */
footer {
  border-top: 1px solid rgba(245, 245, 220, 0.12);
  padding: 18px 0 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
 
footer a {
  color: var(--text-muted);
}
 
footer a:hover {
  color: var(--gold);
}
 
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
 
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-banner {
    order: -1;
  }
  .grid-3,
  .pricing-grid,
  .testi-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  nav ul {
    display: none;
  }
  .game-table {
    min-width: 540px;
  }
  .internal-links ul {
    columns: 1;
  }
}