/* ═══ QQMEGAH STANDARD STYLESHEET — Dark Green Theme ═══ */
/* Single source of truth for all pages */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --green: #00E676;
  --green-dark: #00C853;
  --green-light: #69F0AE;
  --green-deep: #00A844;
  --bg-primary: #0a1a0f;
  --bg-secondary: #0f2a17;
  --bg-card: #112a18;
  --bg-nav: rgba(10,26,15,0.97);
  --text-primary: #f0f0f0;
  --text-secondary: #b0c8b5;
  --text-muted: #7a9a80;
  --gradient-gold: linear-gradient(135deg, #00E676, #00C853);
  --shadow-gold: 0 4px 16px rgba(0,230,118,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
  /* Legacy aliases */
  --gold: #00E676;
  --gold-dark: #00C853;
  --gold-light: #69F0AE;
  --dark-bg: #0a1a0f;
  --dark-card: #0f2a17;
  --dark-card2: #0f2a17;
  --dark-2: #0f2a17;
  --dark-border: #1a3a22;
  --text: #f0f0f0;
  --accent-green: #00cc66;
  --accent-red: #ff4444;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; line-height: 1.4; }
h4 { font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 600; }
p { margin-bottom: 1rem; font-size: clamp(0.9rem, 1.5vw, 1rem); }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; font-size: clamp(0.9rem, 1.5vw, 1rem); }
img { max-width: 100%; height: auto; }
.gold-text, .text-gold, .accent-text, .gold, .green, .text-green { color: var(--green); }
.yellow { color: #ffc107; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.badge { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; background: rgba(0,230,118,0.12); color: var(--green); }
.badge-blue { background: rgba(100,149,237,0.15); color: #6495ed; }
.badge-gold { background: rgba(255,215,0,0.15); color: #ffd700; }
.badge-red { background: rgba(255,68,68,0.15); color: #ff4444; }
.icon { display: inline-block; font-size: 1.5rem; line-height: 1; }
.logo { display: inline-block; }
::selection { background: rgba(0,230,118,0.3); color: #fff; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3rem 1.5rem; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

/* ── Buttons (Standard) ── */
.btn, .btn-primary, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
  line-height: 1.4;
}
.btn:hover, .btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,230,118,0.5);
  color: #fff;
}
.btn-outline, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  line-height: 1.4;
}
.btn-outline:hover, .btn-secondary:hover {
  background: var(--green);
  color: #fff;
}
.btn-green { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ── Navbar ── */
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0,200,83,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.nav-logo-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo img { border-radius: 6px; }
.nav-links, .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li a, .nav-links a, .nav-menu li a, .nav-menu a {
  display: block;
  padding: 0.4rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover, .nav-links li a.active,
.nav-menu li a:hover, .nav-menu li a.active {
  color: var(--green);
  background: rgba(0,230,118,0.08);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-cta .btn, .nav-cta .btn-gold, .nav-cta .btn-outline {
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  min-height: 36px;
}
a.nav-cta {
  background: var(--gradient-gold);
  color: #0a1a0f;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ── Hamburger ── */
/* Hidden on desktop, visible on mobile via @media 860px below */
label[for="nav-toggle"] {
  display: none;
  cursor: pointer;
  z-index: 1001;
}
/* All hamburger class variants used across pages */
.hamburger,
.nav-hamburger,
.nav-toggle-label,
.hamburger-label,
label[for="nav-toggle"] > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid rgba(0,230,118,0.25);
  transition: background var(--transition);
}
.hamburger:hover, .nav-hamburger:hover, .nav-toggle-label:hover,
.hamburger-label:hover, label[for="nav-toggle"]:hover > span {
  background: rgba(0,200,83,0.15);
}
.hamburger span, .nav-hamburger span, .nav-toggle-label span,
.hamburger-label span, label[for="nav-toggle"] span span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--green);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile menu (hidden on desktop) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,26,15,0.99);
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
  gap: 0.3rem;
  overflow-y: auto;
  z-index: 999;
  border-top: 2px solid rgba(0,200,83,0.3);
}
.mobile-menu a {
  display: block;
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--green); background: rgba(0,200,83,0.08); }
.mobile-menu .mobile-cta { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu .mobile-cta .btn { width: 100%; justify-content: center; }

/* Hamburger open state is handled inside @media (max-width: 860px) below */

/* ── Ticker Bar ── */
.ticker-bar {
  background: linear-gradient(90deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
  border-bottom: 1px solid rgba(0,230,118,0.1);
  overflow: hidden;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 2rem;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-inner span {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0 0.5rem;
}
.ticker-inner strong { color: var(--green); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}
.hero h1 { margin-bottom: 1rem; }
.hero p { color: var(--text-secondary); max-width: 700px; margin: 0 auto 1.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Hero Stats (index, link-alternatif) ── */
.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 2rem; padding: 1.25rem 0;
}
.hero-stat {
  text-align: center; min-width: 100px;
}
.hero-stat strong {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--green);
  line-height: 1.2; margin-bottom: 0.25rem;
}
.hero-stat span {
  font-size: 0.8rem; color: var(--text-secondary); font-weight: 500;
}

/* ── Stats Bar (slot-gacor) ── */
.stats-bar {
  background: var(--bg-card); border-top: 1px solid rgba(0,230,118,0.1);
  border-bottom: 1px solid rgba(0,230,118,0.1); padding: 1.25rem 1.5rem;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem;
  text-align: center;
}
.stat-item { min-width: 100px; }
.stat-num {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--green);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.78rem; color: var(--text-secondary); margin-top: 0.2rem;
}

/* ── Stats Row (slot-dana) ── */
.stats-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem; margin-bottom: 1rem;
}
.stat-card {
  background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  text-align: center; min-width: 140px; flex: 1;
}
.stat-value {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--green);
  line-height: 1.2; margin-bottom: 0.25rem;
}

/* ── Cards & Grids ── */
.features-grid, .deposit-grid, .games-grid, .promo-grid, .provider-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card, .feature-card, .deposit-card, .game-card, .promo-card, .provider-card, .step-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.card:hover, .feature-card:hover, .game-card:hover, .promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(0,230,118,0.3);
}
.step-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  color: #0a1a0f;
  margin-bottom: 1rem;
}
.info-box {
  background: rgba(0,230,118,0.05);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.content-article { line-height: 1.8; }

/* ── Section Variants ── */
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-subtitle { color: var(--text-secondary); text-align: center; max-width: 700px; margin: -1.5rem auto 2rem; font-size: 0.95rem; }
.section-divider { width: 60px; height: 3px; background: var(--gradient-gold); margin: 0 auto 1.5rem; border-radius: 2px; }
.section-tag { display: inline-block; background: rgba(0,230,118,0.1); color: var(--green); font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.alt-section, .section-alt { background: var(--bg-secondary); }
.intro-article, .intro-section, .content-section { max-width: 900px; margin: 0 auto; padding: 2rem 1.5rem; }
.prose { line-height: 1.9; }
.prose h2 { margin: 2rem 0 1rem; }
.prose p { margin-bottom: 1rem; color: var(--text-secondary); }
.prose a { color: var(--green); text-decoration: underline; }
.main-content, .main-wrapper { max-width: 1200px; margin: 0 auto; }

/* ── Highlight & Notice Boxes ── */
.highlight-box { background: rgba(0,230,118,0.06); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.highlight-box p { margin: 0; }
.notice-box { border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1rem 0; display: flex; gap: 0.75rem; align-items: flex-start; }
.notice-box-icon { font-size: 1.2rem; flex-shrink: 0; }
.notice-box-text { flex: 1; }
.notice-box-info { background: rgba(0,230,118,0.06); border: 1px solid rgba(0,230,118,0.15); }
.notice-box-warning { background: rgba(255,165,0,0.08); border: 1px solid rgba(255,165,0,0.2); }
.notice-box-success { background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.2); }
.warning-box { background: rgba(255,165,0,0.08); border-left: 4px solid #ffa500; border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1rem 0; }
.success-box { background: rgba(0,230,118,0.08); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1rem 0; }

/* ── Trust Bar ── */
.trust-bar { background: var(--bg-card); border-bottom: 1px solid rgba(0,230,118,0.1); padding: 0.75rem 1.5rem; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-secondary); }
.trust-icon { font-size: 1rem; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.trust-section { padding: 2rem 1.5rem; }
.trust-feature { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.trust-feature-icon, .trust-icon-wrap { font-size: 1.5rem; flex-shrink: 0; }
.trust-title { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.trust-desc, .trust-sub { font-size: 0.85rem; color: var(--text-secondary); }
.trust-label { font-size: 0.8rem; color: var(--text-secondary); }

/* ── Breadcrumb Bar ── */
.breadcrumb-bar { background: var(--bg-card); padding: 0.75rem 1.5rem; border-bottom: 1px solid rgba(0,230,118,0.05); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 0.85rem; }
.breadcrumb .sep, .breadcrumb-sep { color: var(--text-muted); margin: 0 0.4rem; }
.breadcrumb .current { color: var(--text-secondary); }

/* ── Hero Extras ── */
.hero-badge { display: inline-block; background: rgba(0,230,118,0.1); color: var(--green); font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.hero-description { color: var(--text-secondary); max-width: 700px; margin: 0 auto 1.5rem; font-size: 1rem; }
.highlight { color: var(--green); }

/* ── Deposit Cards (slot-dana detail cards) ── */
.deposit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.deposit-title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.deposit-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.7; }
.deposit-detail { font-size: 0.82rem; color: var(--text-muted); list-style: none; padding: 0; }
.deposit-detail li { padding: 0.25rem 0; padding-left: 1.2rem; position: relative; }
.deposit-detail li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── Payment Cards ── */
.payment-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.5rem; transition: all var(--transition); }
.payment-card.featured { border-color: rgba(0,230,118,0.3); box-shadow: 0 0 20px rgba(0,230,118,0.1); }
.payment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.payment-detail { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.payment-strip { background: var(--bg-card); padding: 1rem 1.5rem; border-radius: var(--radius); margin: 1rem 0; }
.payment-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.payment-strip-label { width: 100%; text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.featured-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; margin-bottom: 0.75rem; }

/* ── RTP & Game Badges ── */
.rtp-table { width: 100%; }
.rtp-badge { display: inline-block; background: rgba(0,230,118,0.15); color: var(--green); font-weight: 700; font-size: 0.85rem; padding: 0.25rem 0.6rem; border-radius: 6px; }
.rtp-badge.medium { background: rgba(255,165,0,0.15); color: #ffa500; }
.fire-badge { color: #ff6b35; font-weight: 700; font-size: 0.82rem; }
.badge-hot, .badge-popular, .badge-new { font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px; }
.badge-hot { background: rgba(255,68,68,0.15); color: #ff4444; }
.badge-popular { background: rgba(255,193,7,0.15); color: #ffc107; }
.badge-new { background: rgba(0,230,118,0.15); color: var(--green); }
.badge-green { background: rgba(0,230,118,0.15); color: var(--green); font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px; }
.vol-badge { font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 4px; }
.vol-high, .vol-vhigh { background: rgba(255,68,68,0.12); color: #ff6b6b; }
.vol-med { background: rgba(255,193,7,0.12); color: #ffc107; }
.rtp-high { color: var(--green); }
.rtp-medium { color: #ffa500; }
.check, .check-yes { color: var(--green); font-weight: 700; }

/* ── Game Card Extras ── */
.game-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.game-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.game-name-cell { font-weight: 700; }
.game-provider { font-size: 0.8rem; color: var(--text-muted); }
.game-rtp { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-top: 0.25rem; }
.max-win-cell { font-weight: 600; color: var(--green); }

/* ── Provider Cards (extended) ── */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.provider-name { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.provider-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.provider-link { display: inline-block; margin-top: 0.75rem; color: var(--green); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.provider-link:hover { text-decoration: underline; }
.provider-logo-placeholder { background: var(--bg-secondary); color: var(--green); font-weight: 800; padding: 1rem; border-radius: 8px; margin-bottom: 0.75rem; text-align: center; }

/* ── Step Cards (numbered steps) ── */
.step-number { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--gradient-gold); border-radius: 50%; font-weight: 800; font-size: 1.1rem; color: #0a1a0f; margin-bottom: 0.75rem; flex-shrink: 0; }
.step-title { font-weight: 700; color: var(--text-primary); margin-bottom: 0.35rem; }
.step-desc { font-size: 0.9rem; color: var(--text-secondary); }
.steps-container { display: flex; flex-direction: column; gap: 1rem; }
.howto-steps { display: flex; flex-direction: column; gap: 1rem; }
.howto-step { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; }
.howto-step-num { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gradient-gold); border-radius: 50%; font-weight: 800; color: #0a1a0f; flex-shrink: 0; }
.howto-step-content { flex: 1; }

/* ── FAQ Section ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--text-primary); }
.faq-question:hover { color: var(--green); }
.faq-icon { color: var(--green); font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-toggle { display: none; }
.faq-toggle:checked ~ .faq-answer { max-height: 500px; padding: 0 1.25rem 1rem; }
.faq-toggle:checked ~ .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer-inner, .faq-answer p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ── Promo Cards ── */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.bonus-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.5rem; transition: all var(--transition); }
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: rgba(0,230,118,0.3); }
.bonus-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.promo-title { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.promo-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.promo-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.5rem; }
.promo-tag-new { background: rgba(0,230,118,0.15); color: var(--green); }
.promo-tag-hot { background: rgba(255,68,68,0.15); color: #ff4444; }
.promo-tag-weekly { background: rgba(100,149,237,0.15); color: #6495ed; }
.promo-tag-lifetime { background: rgba(255,215,0,0.15); color: #ffd700; }
.promo-terms { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }
.promo-highlight { background: rgba(0,230,118,0.06); border: 1px solid rgba(0,230,118,0.15); border-radius: var(--radius); padding: 1.25rem; margin: 1rem 0; display: flex; gap: 1rem; align-items: flex-start; }
.promo-highlight-icon { font-size: 1.5rem; flex-shrink: 0; }
.promo-highlight-text { flex: 1; }
.promo-checklist { list-style: none; padding: 0; }
.promo-checklist li { padding: 0.35rem 0 0.35rem 1.5rem; position: relative; color: var(--text-secondary); }
.promo-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.promo-value-display { text-align: center; margin: 1rem 0; }
.promo-value-num { font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.promo-value-label { font-size: 0.85rem; color: var(--text-secondary); }
.promo-value-sub { font-size: 0.8rem; color: var(--text-muted); }
.promo-summary-table { width: 100%; margin: 1rem 0; }
.promo-banner { background: linear-gradient(135deg, rgba(0,230,118,0.1), rgba(0,200,83,0.05)); border: 1px solid rgba(0,230,118,0.2); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin: 2rem 0; }
.promo-card-badge { position: absolute; top: -10px; right: 10px; }
.promo-card-body { padding: 0.5rem 0; }
.promo-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 3px; }
.promo-card-img-placeholder { background: var(--bg-secondary); border-radius: 8px; height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 1rem; }
.featured-promo { background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,200,83,0.03)); border: 2px solid rgba(0,230,118,0.3); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.featured-promo-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-gold); color: #0a1a0f; font-size: 0.75rem; font-weight: 800; padding: 0.3rem 1rem; border-radius: 50px; }
.featured-promo-inner { text-align: center; }
.comparison-table { width: 100%; }

/* ── CTA Sections ── */
.cta-banner { background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,200,83,0.04)); border: 1px solid rgba(0,230,118,0.2); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; text-align: center; margin: 2rem 0; }
.cta-buttons, .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.cta-float { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: rgba(10,26,15,0.97); border-top: 2px solid rgba(0,230,118,0.3); padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: center; gap: 1rem; backdrop-filter: blur(10px); }
.cta-float-title { font-weight: 700; font-size: 0.85rem; }
.cta-float-desc { font-size: 0.75rem; color: var(--text-secondary); }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.4); } 50% { box-shadow: 0 0 0 12px rgba(0,230,118,0); } }

/* ── Internal Links Grid ── */
.internal-links-section, .internal-links-grid, .related-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.internal-link-card, .internal-link-item, .related-link-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; transition: all var(--transition); display: flex; gap: 0.75rem; align-items: flex-start; }
.internal-link-card:hover, .related-link-card:hover { transform: translateY(-2px); border-color: rgba(0,230,118,0.3); box-shadow: var(--shadow-gold); }
.internal-link-icon, .related-link-icon { font-size: 1.5rem; flex-shrink: 0; }
.internal-link-text, .related-link-text { flex: 1; }
.internal-link-title, .related-link-title { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; font-size: 0.95rem; }
.internal-link-desc, .related-link-desc { font-size: 0.82rem; color: var(--text-muted); }
.internal-link-arrow { color: var(--green); font-size: 1.1rem; flex-shrink: 0; align-self: center; }
.authority-links, .authority-links-list { display: flex; flex-direction: column; gap: 0.5rem; }
.authority-link-item { display: flex; align-items: center; gap: 0.5rem; }

/* ── Misc Utility ── */
.mt-1 { margin-top: 0.5rem; }
.mt-24 { margin-top: 1.5rem; }
.tag { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 4px; background: rgba(0,230,118,0.1); color: var(--green); }
.table-responsive { overflow-x: auto; }
.logo-text { font-weight: 800; font-size: 1.3rem; color: var(--green); }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-item-icon { font-size: 1.2rem; flex-shrink: 0; }
.sticky-sidebar { position: sticky; top: 80px; }
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
.article-content { line-height: 1.9; }
.section-header { margin-bottom: 2rem; }
.hot { color: #ff4444; }
.new { color: var(--green); }
.medium { color: #ffa500; }

/* ── Footer Extras ── */
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 1.5rem 0; }
.footer-copyright { text-align: center; color: var(--text-muted); font-size: 0.78rem; padding: 1rem 0; }
.footer-badge { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.2); border-radius: 6px; padding: 0.35rem 0.7rem; font-size: 0.75rem; color: var(--green); font-weight: 600; }

/* ── Tables ── */
.table-wrapper { overflow-x: auto; margin: 1rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { background: var(--bg-card); color: var(--green); font-weight: 700; padding: 0.75rem; text-align: left; border-bottom: 2px solid rgba(0,230,118,0.2); }
td { padding: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-secondary); }
tr:hover td { background: rgba(0,230,118,0.03); }

/* ── Game Cards (special) ── */
.game-card { text-align: center; }
.game-card img { border-radius: 8px; margin-bottom: 0.75rem; }
.game-buttons { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.game-buttons a, .play-real, .play-demo {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
}
.play-real { background: var(--gradient-gold); color: #0a1a0f; }
.play-demo { background: transparent; border: 1px solid var(--green); color: var(--green); }

/* ── Filter Buttons ── */
.game-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.game-filters .filter-btn, .game-filters a {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid rgba(0,230,118,0.1);
  text-decoration: none;
  transition: all var(--transition);
}
.game-filters .filter-btn:hover, .game-filters .filter-btn.active,
.game-filters a:hover, .game-filters a.active {
  background: var(--green);
  color: #0a1a0f;
}

/* ── Payment Badges ── */
.payment-icons, .payment-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.payment-badge, .pay-badge {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
}

/* ── Breadcrumb ── */
.breadcrumb { padding: 0.75rem 1.5rem; background: var(--bg-card); }
.breadcrumb ol { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumb li + li::before { content: ">"; color: var(--text-muted); margin-right: 0.5rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }

/* ── Floating CS Button ── */
.cs-btn, .floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all var(--transition);
  background: var(--gradient-gold);
  color: #0a1a0f;
}
.cs-btn:hover, .floating-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0,230,118,0.5);
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, var(--bg-primary), #050f08);
  border-top: 2px solid rgba(0,230,118,0.3);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 3rem;
}
.footer-main { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand h3 { font-size: 1.5rem; color: var(--green); margin-bottom: 0.75rem; font-weight: 800; }
.footer-brand h3 span { color: #fff; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1rem; }
.footer-trust-badges, .trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.2);
  border-radius: 6px; padding: 0.35rem 0.7rem;
  font-size: 0.75rem; color: var(--green); font-weight: 600;
}
.footer-col h4 { color: var(--green); font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-payments, .footer-providers { max-width: 1200px; margin: 0 auto; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.footer-payments h4, .footer-providers h4 { color: var(--green); font-size: 0.85rem; margin-bottom: 1rem; font-weight: 600; }
.provider-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.provider-links a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; }
.provider-links a:hover { color: var(--green); }
.footer-disclaimer { max-width: 1200px; margin: 0 auto; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-disclaimer p { color: var(--text-muted); font-size: 0.75rem; line-height: 1.8; text-align: center; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 1.25rem 1.5rem; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--green); }
.footer-payment, .footer-payments { max-width: 1200px; margin: 0 auto; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }

/* ── Table Wrap (alias for table-wrapper) ── */
.table-wrap { overflow-x: auto; margin: 1rem 0; }

/* ── Hero Extras (index, link-alternatif) ── */
.hero-sub { color: var(--text-secondary); font-size: 1rem; max-width: 600px; margin: 0 auto 1.5rem; }

/* ── Sticky CS Button ── */
.sticky-cs { position: fixed; bottom: 20px; right: 20px; z-index: 900; }
.cs-pulse { animation: pulse 2s infinite; }

/* ── Index & Homepage Sections ── */
.games-section, .deposit-section, .promo-section { padding: 3rem 1.5rem; }
.games-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.game-thumb { border-radius: 8px; overflow: hidden; margin-bottom: 0.5rem; }
.game-info { padding: 0.5rem 0; }
.game-play { margin-top: 0.5rem; }
.game-hot { color: #ff4444; font-weight: 700; font-size: 0.78rem; }
.game-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; background: rgba(0,230,118,0.12); color: var(--green); }
.game-title { font-weight: 700; color: var(--text-primary); }
.game-desc { font-size: 0.85rem; color: var(--text-secondary); }
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.games-table { width: 100%; }
.deposit-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; background: rgba(0,230,118,0.12); color: var(--green); }
.deposit-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.deposit-min { font-size: 0.82rem; color: var(--text-muted); }
.deposit-item { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; }
.deposit-name { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.deposit-limit { font-size: 0.82rem; color: var(--text-muted); }
.payment-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.payment-name { font-weight: 600; color: var(--text-primary); }
.payment-alt { font-size: 0.82rem; color: var(--text-muted); }
.promo-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.promo-amount { font-size: 1.3rem; font-weight: 800; color: var(--green); }

/* ── Links Grid (all pages) ── */
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.link-card { display: flex; gap: 0.75rem; align-items: flex-start; background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; transition: all var(--transition); }
.link-card:hover { transform: translateY(-2px); border-color: rgba(0,230,118,0.3); box-shadow: var(--shadow-gold); }
.link-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.link-card-text { flex: 1; }
.link-arrow { color: var(--green); font-size: 1.1rem; flex-shrink: 0; align-self: center; }

/* ── Grid Utilities ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.content-alt, .content-body { line-height: 1.8; }
.section-bg-alt { background: var(--bg-secondary); }
.section-desc { color: var(--text-secondary); text-align: center; max-width: 700px; margin: 0 auto 2rem; }

/* ── Testimonials ── */
.testimonial-grid, .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.5rem; }
.testimonial-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar, .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.testimonial-info, .author-info { flex: 1; }
.testimonial-name, .author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.author-detail { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-stars, .stars { color: #ffc107; font-size: 0.85rem; letter-spacing: 2px; }

/* ── RTP Page (rtp-slot-live) ── */
.rtp-bar, .rtp-bar-wrapper { position: relative; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.rtp-meter { height: 100%; background: var(--gradient-gold); border-radius: 4px; transition: width 0.5s; }
.rtp-value { font-weight: 700; color: var(--green); font-size: 0.9rem; }
.rtp-med { color: #ffa500; }
.status-hot { color: #ff4444; font-weight: 700; }
.status-warm { color: #ffa500; font-weight: 700; }
.status-cool { color: #6495ed; font-weight: 700; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ff4444; animation: blink 1s infinite; margin-right: 0.35rem; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.volatility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.volatility-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.volatility-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.volatility-name { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.volatility-desc { font-size: 0.82rem; color: var(--text-secondary); }
.update-ticker, .ticker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.6rem 0.85rem;
  background: rgba(0,230,118,0.04);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.ticker-label { font-weight: 600; color: var(--text-secondary); flex-shrink: 0; display: inline-flex; align-items: center; }
.ticker-text { color: var(--text-muted); flex: 1 1 200px; min-width: 0; line-height: 1.5; }
.ticker-time { color: var(--green); font-weight: 600; flex-shrink: 0; margin-left: auto; }

@media (max-width: 600px) {
  .update-ticker, .ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.78rem;
  }
  .ticker-time { margin-left: 0; }
  .ticker-text { flex: 1 1 auto; }
}
.tips-box { background: rgba(0,230,118,0.06); border: 1px solid rgba(0,230,118,0.15); border-radius: var(--radius); padding: 1.25rem; margin: 1rem 0; }
.provider-rtp-label { font-size: 0.82rem; color: var(--text-muted); }
.provider-rtp-range { font-weight: 700; color: var(--green); }
.provider-games-list { font-size: 0.85rem; color: var(--text-secondary); }
.provider-tag, .provider-chip { display: inline-block; font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 4px; background: rgba(0,230,118,0.1); color: var(--green); font-weight: 600; margin: 0.15rem; }

/* ── Slot Deposit Pulsa Page ── */
.operator-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.operator-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.operator-icon { font-size: 2rem; flex-shrink: 0; }
.operator-info { flex: 1; }
.operator-name { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.operator-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; background: rgba(0,230,118,0.12); color: var(--green); }
.contact-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: var(--bg-card); border-radius: var(--radius); }
.cta-section { text-align: center; padding: 3rem 1.5rem; background: linear-gradient(135deg, rgba(0,230,118,0.06), rgba(0,200,83,0.03)); border-radius: var(--radius-lg); margin: 2rem 0; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.feature-item { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; }
.feature-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.feature-text { color: var(--text-secondary); font-size: 0.9rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-secondary); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.list-check { list-style: none; padding: 0; }
.list-check li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-secondary); }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.providers-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.bonus-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.bonus-title, .bonus-name { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.bonus-desc { font-size: 0.85rem; color: var(--text-secondary); }
.bonus-value, .bonus-amount, .bonus-percent { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.warn-box { background: rgba(255,165,0,0.08); border-left: 4px solid #ffa500; border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1rem 0; }

/* ── Slot Deposit 5000 Page ── */
.authority-section { padding: 3rem 1.5rem; }
.authority-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.authority-card { background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.5rem; }
.authority-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.authority-card-body { flex: 1; }
.authority-card-title { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.authority-card-desc { font-size: 0.85rem; color: var(--text-secondary); }
.notice-bar { background: rgba(0,230,118,0.06); border: 1px solid rgba(0,230,118,0.15); border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1rem 0; display: flex; gap: 0.75rem; align-items: center; }
.notice-icon { font-size: 1.2rem; flex-shrink: 0; }
.hot-badge { display: inline-block; background: rgba(255,68,68,0.15); color: #ff4444; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }
.faq-section, .steps-section { padding: 3rem 1.5rem; }

/* ── PKV Games Page ── */
.article-body { line-height: 1.9; }
.provider-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.provider-meta { display: block; margin-top: 0.4rem; font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.promo-terms { display: block; margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px dashed rgba(0,230,118,0.2); font-size: 0.78rem; color: var(--text-muted); font-weight: 400; line-height: 1.4; }
.vip-note { margin-top: 1.5rem; padding: 1rem 1.25rem; background: rgba(0,230,118,0.04); border-left: 3px solid var(--green, #00e676); border-radius: 6px; font-size: 0.92rem; color: var(--text-primary); line-height: 1.55; }

/* ── RTP Table (homepage) ── */
.rtp-table-wrap { margin: 2rem 0; overflow-x: auto; background: var(--bg-card); border: 1px solid rgba(0,230,118,0.15); border-radius: var(--radius); padding: 1.5rem; }
.rtp-table-title { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.rtp-table-caption { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.rtp-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.rtp-table th, .rtp-table td { padding: 0.6rem 0.75rem; text-align: left; border-bottom: 1px solid rgba(0,230,118,0.08); }
.rtp-table th { background: rgba(0,230,118,0.06); color: var(--text-primary); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }
.rtp-table tbody tr:hover { background: rgba(0,230,118,0.04); }
.trust-items { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.trust-sublabel { font-size: 0.75rem; color: var(--text-muted); }
.info-box-title { font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.td-green { color: var(--green); font-weight: 600; }
.td-highlight { background: rgba(0,230,118,0.04); }

/* ── Steps (used across multiple pages) ── */
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-card); border: 1px solid rgba(0,230,118,0.1); border-radius: var(--radius); padding: 1.25rem; }
.step-content { flex: 1; }

/* ── FAQ Arrow Toggle ── */
.arrow { display: inline-block; transition: transform var(--transition); font-size: 0.85rem; color: var(--text-muted); }

/* ═══ RESPONSIVE ═══ */

@media (max-width: 1024px) {
  .nav-links li a, .nav-menu li a { font-size: 0.7rem; padding: 0.35rem 0.45rem; }
  .nav-cta .btn { font-size: 0.72rem; padding: 0.35rem 0.7rem; }
  .features-grid, .promo-grid, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* Hide desktop nav links & CTA buttons */
  .nav-links, .nav-menu { display: none; }
  .nav-cta { display: none; }

  /* Show hamburger label in the right corner */
  label[for="nav-toggle"] {
    display: block;
    order: 99; /* force to end of flex row = right side */
  }

  /* Nav wrapper: just logo + hamburger */
      padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Ticker: smaller on mobile */
  .ticker-inner span { font-size: 0.7rem; }
  .ticker-inner { gap: 1.5rem; }

  /* Mobile menu dropdown */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,26,15,0.99);
    flex-direction: column;
    padding: 1rem;
    gap: 0.2rem;
    overflow-y: auto;
    z-index: 9999;
    border-top: 2px solid rgba(0,200,83,0.3);
  }
  .mobile-menu a {
    display: block;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
  }
  .mobile-menu a:hover {
    color: var(--green);
    background: rgba(0,200,83,0.08);
  }
  .mobile-menu .mobile-cta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-menu .mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* When hamburger is clicked (body.nav-open) — show mobile menu or nav-links */
  body.nav-open .mobile-menu {
    display: flex;
  }
  /* Fallback for pages without .mobile-menu — show .nav-links as mobile dropdown */
  body.nav-open .nav-links,
  body.nav-open .nav-menu {
    display: flex !important;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,26,15,0.99);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.2rem;
    overflow-y: auto;
    z-index: 9999;
    border-top: 2px solid rgba(0,200,83,0.3);
  }
  body.nav-open .nav-links li,
  body.nav-open .nav-menu li { width: 100%; }
  body.nav-open .nav-links li a,
  body.nav-open .nav-links a,
  body.nav-open .nav-menu li a,
  body.nav-open .nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #e0e0e0;
    text-decoration: none;
    white-space: normal;
  }
  body.nav-open .nav-links li a:hover,
  body.nav-open .nav-menu li a:hover {
    color: var(--green);
    background: rgba(0,200,83,0.08);
  }

  /* X animation — all hamburger class variants */
  body.nav-open .hamburger span:nth-child(1),
  body.nav-open .nav-hamburger span:nth-child(1),
  body.nav-open .nav-toggle-label span:nth-child(1),
  body.nav-open .hamburger-label span:nth-child(1),
  body.nav-open label[for="nav-toggle"] span span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  body.nav-open .hamburger span:nth-child(2),
  body.nav-open .nav-hamburger span:nth-child(2),
  body.nav-open .nav-toggle-label span:nth-child(2),
  body.nav-open .hamburger-label span:nth-child(2),
  body.nav-open label[for="nav-toggle"] span span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .hamburger span:nth-child(3),
  body.nav-open .nav-hamburger span:nth-child(3),
  body.nav-open .nav-toggle-label span:nth-child(3),
  body.nav-open .hamburger-label span:nth-child(3),
  body.nav-open label[for="nav-toggle"] span span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 2rem 1rem; }
  .hero { padding: 2rem 1rem 3rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat strong { font-size: 1.2rem; }
  .stats-inner { gap: 0.75rem; }
  .stat-num { font-size: 1.2rem; }
  .stats-row { gap: 0.75rem; }
  .stat-card { min-width: 120px; padding: 1rem; }
  .stat-value { font-size: 1.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .features-grid, .games-grid, .promo-grid, .provider-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .deposit-grid { grid-template-columns: 1fr; }
  .content-grid, .two-col, .content-two-col { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .payment-grid, .bonus-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .internal-links-section, .internal-links-grid, .related-links-grid, .links-grid { grid-template-columns: 1fr; }
  .operator-grid { grid-template-columns: 1fr; }
  .volatility-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .authority-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 0.75rem; }
  .trust-item { font-size: 0.75rem; }
  .cta-float { flex-direction: column; gap: 0.5rem; padding: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  table { font-size: 0.8rem; }
  th, td { padding: 0.5rem; }
}

@media (max-width: 480px) {
  .features-grid, .games-grid, .promo-grid, .provider-grid, .steps-grid, .bonus-grid {
    grid-template-columns: 1fr;
  }
  .payment-grid, .trust-grid, .links-grid, .grid-3 { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr; }
  .volatility-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; }
  .hero-stats { gap: 0.75rem; }
  .hero-stat strong { font-size: 1rem; }
  .hero-stat span { font-size: 0.72rem; }
  .stats-row { flex-direction: column; align-items: center; }
  .stat-card { width: 100%; min-width: unset; }
  .stats-inner { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stat-item { min-width: 80px; }
  .stat-num { font-size: 1.1rem; }
  .promo-value-num { font-size: 2rem; }
  .cs-btn, .floating-btn { font-size: 0.8rem; padding: 0.6rem 1rem; }
  .game-filters { gap: 0.35rem; }
  .game-filters .filter-btn, .game-filters a { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
  /* Ticker even smaller on small phones */
  .ticker-inner span { font-size: 0.65rem; }
  .ticker-inner { gap: 1rem; }
  .ticker-bar { padding: 0.35rem 0; }
}


/* ═══ STANDARD NAV (replaces all old nav rules) ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,26,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,230,118,0.15);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 0.5rem;
}
.site-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #00E676;
  text-decoration: none;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-right: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.desktop-nav a {
  padding: 0.35rem 0.5rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: #d0d0d0;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: #00E676; }
.header-cta {
  display: flex;
  gap: 0.4rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.btn-login {
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00E676;
  border: 1px solid #00E676;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-login:hover { background: #00E676; color: #0a1a0f; }
.btn-daftar {
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00E676, #00C853);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-daftar:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,230,118,0.4); }

/* Hamburger button — hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #00E676;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — hidden by default */
.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,26,15,0.98);
  z-index: 9999;
  flex-direction: column;
  padding: 0.75rem;
  overflow-y: auto;
  border-top: 2px solid rgba(0,230,118,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
}
.mobile-nav a:hover { color: #00E676; background: rgba(0,230,118,0.06); }
.mobile-nav-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-cta a {
  text-align: center;
  border-bottom: none;
  border-radius: 50px;
  font-size: 0.9rem;
}
.mobile-nav-cta .btn-daftar {
  padding: 0.75rem;
  font-size: 0.9rem;
  display: block;
  text-align: center;
}
.mobile-nav-cta .btn-login {
  padding: 0.75rem;
  font-size: 0.9rem;
  display: block;
  text-align: center;
}

@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .hamburger-btn { display: flex; }
}

/* ═══ RTP TABLE — MOBILE STACKED CARDS (scoped to .rtp-stack only) ═══ */
@media (max-width: 720px) {
  .rtp-stack { overflow-x: visible; margin: 0.75rem 0 1.25rem; }
  .rtp-stack table { display: block; width: 100%; border-collapse: separate; border-spacing: 0; background: transparent; }
  .rtp-stack thead { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .rtp-stack tbody, .rtp-stack tbody tr { display: block; width: 100%; }
  .rtp-stack tbody tr {
    margin-bottom: 12px;
    padding: 14px 14px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,230,118,0.18);
    border-radius: 12px;
  }
  .rtp-stack tbody tr:hover td { background: transparent; }
  .rtp-stack tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
    text-align: right;
    font-size: 0.88rem;
  }
  .rtp-stack tbody td:last-child { border-bottom: none; padding-bottom: 2px; }
  .rtp-stack tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-align: left;
  }

  /* First cell = card header (game name) */
  .rtp-stack tbody td:first-child {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 0 0 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(0,230,118,0.18);
    text-align: left;
  }
  .rtp-stack tbody td:first-child::before { display: none; }

  /* Emphasise the live RTP value */
  .rtp-stack tbody td .rtp-value { font-size: 1.05rem; font-weight: 800; }

  /* Bar RTP cell spans full width, label above, bar below */
  .rtp-stack tbody td[data-label="Bar RTP"] {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 10px 0 4px;
  }
  .rtp-stack tbody td[data-label="Bar RTP"]::before {
    text-align: left;
    margin-bottom: 6px;
  }
  .rtp-stack tbody td[data-label="Bar RTP"] .rtp-meter { width: 100%; background: transparent; height: auto; }
  .rtp-stack tbody td[data-label="Bar RTP"] .rtp-bar-wrapper {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 4px;
    position: relative;
  }
  .rtp-stack tbody td[data-label="Bar RTP"] .rtp-bar {
    height: 100%;
    border-radius: 6px;
    background: rgba(255,255,255,0.15);
    transition: width 0.4s ease;
  }
  .rtp-stack tbody td[data-label="Bar RTP"] .rtp-bar.green { background: #00E676; }
  .rtp-stack tbody td[data-label="Bar RTP"] .rtp-bar.yellow { background: #FFC107; }
  .rtp-stack tbody td[data-label="Bar RTP"] .rtp-bar.red { background: #F44336; }
  .rtp-stack tbody td[data-label="Bar RTP"] small {
    text-align: right;
    display: block;
    font-size: 0.78rem !important;
    color: var(--text-muted);
  }
}
