:root {
  --bg: #100a14;
  --surface: #201228;
  --accent: #ffd700;
  --accent2: #c084fc;
  --text: #fdf5ff;
  --muted: #b0a2b8;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Motif: Trophy Glow */
.trophy-glow {
  position: relative;
}
.trophy-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(192,132,252,0.05) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.trophy-glow > * {
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 44px;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background-color: #ffed4a;
  color: var(--bg);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 2px solid var(--accent2);
}

.btn-secondary:hover {
  background-color: rgba(192, 132, 252, 0.1);
  color: var(--text);
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  background-color: rgba(16, 10, 20, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(192, 132, 252, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-area {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Sections General */
section {
  padding: var(--spacing-xl) 0;
}

.bg-surface {
  background-color: var(--surface);
}

.section-title {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  text-transform: uppercase;
}

.section-intro {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg) auto;
  font-size: 1.1rem;
}

/* Hero Section */
#hero {
  padding: 6rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(192, 132, 252, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  background: rgba(192, 132, 252, 0.15);
  color: var(--accent2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(192, 132, 252, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-intro {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-card {
  background: linear-gradient(145deg, var(--surface), #1a0f21);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}

.mockup-card:nth-child(1) {
  top: 10%;
  left: 10%;
  transform: rotate(-5deg);
  animation-delay: 0s;
}

.mockup-card:nth-child(2) {
  bottom: 10%;
  right: 10%;
  transform: rotate(5deg);
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Games Section */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background-color: var(--surface);
  border: 1px solid rgba(192, 132, 252, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(192, 132, 252, 0.15);
}

.game-card h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--muted);
}

/* RTP Live Strip */
#rtp-live {
  background: linear-gradient(90deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

#rtp-live h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

#rtp-live p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.1rem;
}

/* Jackpot Highlight Strip */
#jackpot {
  padding: 3rem 0;
}

.jackpot-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.jackpot-item {
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.jackpot-item::before {
  content: '★';
  color: var(--accent);
}

/* Provider Row */
#provider {
  text-align: center;
}

.provider-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.provider-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.provider-item:hover {
  color: var(--accent);
}

/* Keunggulan */
.keunggulan-card {
  background: var(--bg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}

.keunggulan-card h3 {
  color: var(--text);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.keunggulan-card p {
  color: var(--muted);
}

/* Langkah */
.langkah-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.langkah-item {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  text-align: center;
  border-top: 3px solid var(--accent);
}

.langkah-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.langkah-item h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.langkah-item p {
  color: var(--muted);
}

/* Testimoni */
.testimoni-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent2);
  position: relative;
}

.testimoni-teks {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.testimoni-author {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.2rem;
}

.testimoni-kota {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Glosarium */
.glosarium-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.glosarium-item {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.glosarium-item dt {
  font-family: var(--font-display);
  color: var(--accent2);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.glosarium-item dd {
  color: var(--muted);
}

/* Salah Paham */
.salah-paham-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.sp-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.sp-wrong {
  padding: 1.5rem;
  background: rgba(255, 50, 50, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-wrong::before {
  content: 'Mitos:';
  display: block;
  font-family: var(--font-display);
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

.sp-right {
  padding: 1.5rem;
  background: rgba(50, 255, 50, 0.05);
}

.sp-right::before {
  content: 'Fakta:';
  display: block;
  font-family: var(--font-display);
  color: #51cf66;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .sp-item {
    grid-template-columns: 1fr;
  }
  .sp-wrong {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Area */
.area-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--accent2);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.area-content p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.area-tag {
  background: rgba(255, 215, 0, 0.1);
  color: var(--text);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--surface);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(192, 132, 252, 0.1);
  overflow: hidden;
}

summary {
  padding: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.5rem;
}

details[open] summary::after {
  content: '-';
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--muted);
}

/* Footer */
footer {
  background: #0a060d;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent2);
}

.copyright {
  color: rgba(176, 162, 184, 0.5);
  font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-intro {
    max-width: 100%;
  }
  .hero-visual {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    border-bottom: 1px solid rgba(192, 132, 252, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 1.5rem;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .mobile-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
