@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

/* =============================================
   TopUpKuy — Design System
   Terinspirasi: Clean, minimal, bold typography
   Banyak whitespace, warna netral + aksen emas
   ============================================= */

:root {
  /* Colors */
  --gold:        #C8960C;
  --gold-light:  #F5C518;
  --gold-bg:     #FFFBEB;
  --gold-border: #FDE68A;

  --dark:        #1A1A2E;
  --dark-2:      #2D2D44;
  --body-bg:     #F8F9FC;
  --white:       #FFFFFF;

  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --gray-900:    #111827;

  --accent:      #2563EB;
  --accent-light:#EFF6FF;
  --success:     #059669;
  --success-bg:  #ECFDF5;
  --danger:      #DC2626;
  --danger-bg:   #FEF2F2;
  --warning:     #D97706;
  --warning-bg:  #FFFBEB;

  /* Typography */
  --font-body:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display:'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --max-w:       1080px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--body-bg); color: var(--gray-900); line-height: 1.6; font-size: 15px; }
img { max-width: 100%; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 99px; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-wrap img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--gray-500); text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-md);
  transition: all .18s; white-space: nowrap;
}
.nav-links a:hover { color: var(--dark); background: var(--gray-100); }
.nav-links a.active { color: var(--dark); background: var(--gray-100); }
.nav-badge {
  background: var(--gold-light); color: var(--dark);
  font-size: 9px; font-weight: 800;
  padding: 2px 6px; border-radius: 99px;
  margin-left: 4px; vertical-align: middle; letter-spacing: .5px;
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--gray-700); }
.nav-hamburger svg { display: block; }
.nav-cta {
  background: var(--dark); color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-md) !important;
}
.nav-cta:hover { background: var(--dark-2) !important; color: var(--white) !important; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.page { display: none; }
.page.active { display: block; }
.section { padding: 3rem 0; }
.section-sm { padding: 1.5rem 0; }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 1.75rem; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.section-header h2 {
  font-size: 26px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.5px; line-height: 1.2;
}
.section-header p {
  color: var(--gray-500); font-size: 14px; margin-top: 6px; max-width: 480px;
}

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(200,150,12,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.3);
  color: var(--gold-light);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 99px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800; line-height: 1.08;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}
.hero h1 .highlight {
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 16px; max-width: 480px;
  margin: 0 auto 2.5rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center;
  gap: 0; margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1; min-width: 120px;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 28px; font-weight: 800;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: var(--radius-md);
  border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: all .18s; letter-spacing: .2px;
}
.btn-primary {
  background: var(--gold-light); color: var(--dark);
  box-shadow: 0 2px 8px rgba(245,197,24,0.3);
}
.btn-primary:hover { background: #E5B312; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,197,24,0.4); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--dark); background: var(--gray-50); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--gray-100); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ---- GAME CARDS ---- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.game-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center; cursor: pointer;
  transition: all .18s; position: relative; overflow: hidden;
}
.game-card:hover { border-color: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.game-card.selected { border-color: var(--gold-light); background: var(--gold-bg); box-shadow: 0 0 0 3px rgba(245,197,24,0.15); }
.game-card-check {
  position: absolute; top: 8px; right: 8px;
  background: var(--gold-light); color: var(--dark);
  font-size: 9px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}
.game-card.selected .game-card-check { display: flex; }
.game-icon { font-size: 32px; margin-bottom: 8px; line-height: 1; }
.game-name { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.game-type { font-size: 11px; color: var(--gray-400); margin-top: 3px; font-weight: 500; }
.game-popular-tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--dark); color: var(--white);
  font-size: 8px; font-weight: 800;
  padding: 3px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .5px;
}

/* ---- PRODUCT GRID ---- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; }
.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem; cursor: pointer;
  transition: all .18s; position: relative;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.product-card.selected { border-color: var(--gold-light); background: var(--gold-bg); }
.product-amount { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; }
.product-unit { font-size: 11px; color: var(--gray-400); margin: 3px 0 8px; font-weight: 500; }
.product-price { font-size: 16px; font-weight: 800; color: var(--gold); margin-top: 8px; }
.product-old { font-size: 12px; color: var(--gray-300); text-decoration: line-through; }
.product-discount {
  position: absolute; top: 8px; right: 8px;
  background: var(--danger); color: var(--white);
  font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 99px;
}
.product-bonus {
  display: inline-block;
  background: var(--success-bg); color: var(--success);
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 4px; margin-top: 4px;
}

/* ---- FORM ---- */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--gray-700); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-input, .form-select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  color: var(--gray-900); font-size: 14px;
  font-family: var(--font-body); font-weight: 500;
  outline: none; transition: border-color .18s;
  appearance: none;
}
.form-input::placeholder { color: var(--gray-300); }
.form-input:focus, .form-select:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(245,197,24,0.12); }
.form-input.error { border-color: var(--danger); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* ---- PAYMENT GRID ---- */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.payment-btn {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 14px;
  cursor: pointer; display: flex; align-items: center; gap: 12px;
  color: var(--dark); font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  transition: all .18s; text-align: left; width: 100%;
}
.payment-btn:hover, .payment-btn.selected {
  border-color: var(--gold-light); background: var(--gold-bg);
}
.payment-icon { font-size: 24px; flex-shrink: 0; }
.payment-name { font-weight: 700; font-size: 13px; color: var(--dark); display: block; }
.payment-note { font-size: 11px; color: var(--gray-400); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-400); margin-bottom: 1rem;
}

/* ---- TOPUP LAYOUT ---- */
.topup-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; align-items: start; }
.sticky-col { position: sticky; top: 80px; }

/* ---- SUMMARY ROWS ---- */
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-500);
}
.summary-row:last-child { border-bottom: none; font-size: 15px; font-weight: 800; padding-top: 12px; color: var(--dark); }
.summary-row span:last-child { font-weight: 600; color: var(--dark); }
.summary-row:last-child span:last-child { color: var(--gold); }

/* ---- ALERTS ---- */
.alert {
  border-radius: var(--radius-md); padding: 12px 16px;
  font-size: 13px; font-weight: 500; line-height: 1.55;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-info { background: var(--accent-light); color: #1D4ED8; border: 1px solid #BFDBFE; }
.alert-warning { background: var(--warning-bg); color: #92400E; border: 1px solid var(--gold-border); }
.alert-success { background: var(--success-bg); color: #065F46; border: 1px solid #A7F3D0; }
.alert-danger { background: var(--danger-bg); color: #991B1B; border: 1px solid #FECACA; }

/* ---- PAYMENT PAGE ---- */
.payment-wrap { max-width: 520px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.pay-timer {
  font-size: 40px; font-weight: 800; color: var(--dark);
  text-align: center; letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.pay-timer.urgent { color: var(--danger); }
.pay-code-box {
  background: var(--gray-50); border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.25rem; text-align: center; margin: 1rem 0;
}
.pay-code {
  font-family: 'Courier New', monospace;
  font-size: 24px; font-weight: 800; letter-spacing: 4px;
  color: var(--dark);
}
.copy-btn {
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-sm);
  cursor: pointer; margin-left: 8px;
  font-family: var(--font-body); transition: background .15s;
}
.copy-btn:hover { background: var(--gold-border); }
.qris-box {
  background: var(--gray-50); border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.qris-img {
  width: 200px; height: 200px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin: 0 auto; display: flex; align-items: center;
  justify-content: center; color: var(--gray-400);
  font-size: 12px; text-align: center; padding: 1rem;
}

/* ---- STATUS BADGES ---- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
}
.badge-pending { background: var(--warning-bg); color: var(--warning); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-failed  { background: var(--danger-bg);  color: var(--danger); }
.badge-processing { background: var(--accent-light); color: var(--accent); }

/* ---- HISTORY ---- */
.history-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.history-game { font-size: 14px; font-weight: 700; color: var(--dark); }
.history-detail { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ---- FEATURE CARDS ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .18s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1rem;
}
.feature-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ---- STEP LIST ---- */
.steps-list { display: flex; flex-direction: column; gap: 14px; }
.step-item { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  background: var(--dark); color: var(--white);
  font-size: 12px; font-weight: 800;
  min-width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.step-text { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.step-text strong { color: var(--dark); }

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--gray-200); margin: 1.25rem 0; }

/* ---- BANK ROW ---- */
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.bank-row:last-child { border-bottom: none; }
.bank-key { color: var(--gray-500); font-weight: 500; }
.bank-val { font-weight: 700; color: var(--dark); }
.bank-val.big { font-size: 18px; color: var(--gold); font-weight: 800; }

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366; color: var(--white);
  border-radius: 99px; padding: 13px 22px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none; transition: all .2s; z-index: 90;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--dark); color: var(--white);
  font-size: 13px; font-weight: 600;
  padding: 12px 22px; border-radius: 99px;
  box-shadow: var(--shadow-lg); z-index: 999;
  opacity: 0; transition: all .3s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.error { background: var(--danger); }

/* ---- SPINNER ---- */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin .8s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  padding: 2.5rem 1.5rem;
  text-align: center; font-size: 12px;
  margin-top: 5rem; line-height: 1.8;
}
footer strong { color: var(--gold-light); }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--gold-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 780px) {
  .topup-layout { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; gap: 4px; border-bottom: 1px solid var(--gray-200); z-index: 99; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 1rem; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 13px; border-radius: 50%; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem; }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */
.hero-slide {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  user-select: none;
}
.slide-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 600px) { .slide { height: 420px; } }

.slide-inner {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.slide-game-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,150,12,0.18);
  border: 1px solid rgba(200,150,12,0.35);
  color: var(--gold-light);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 99px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.slide-title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800; line-height: 1.08;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 1rem;
}
.slide-highlight { color: var(--gold-light); }
.slide-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px; max-width: 440px;
  line-height: 1.65; margin-bottom: 2rem;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Prev / Next buttons */
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 18px; cursor: pointer;
  transition: all .2s; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slide-btn:hover { background: rgba(255,255,255,0.22); }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
@media (max-width: 480px) {
  .slide-prev { left: 10px; }
  .slide-next { right: 10px; }
}

/* Dots */
.slide-dots {
  position: absolute; bottom: 70px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: all .25s; padding: 0;
}
.dot.active { background: var(--gold-light); width: 24px; }

/* Bottom game pills bar */
.slide-games-bar {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.slide-games-list {
  display: flex; gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.slide-games-list::-webkit-scrollbar { display: none; }
.slide-game-pill {
  flex-shrink: 0;
  background: transparent;
  border: none; border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  padding: 14px 20px; cursor: pointer;
  transition: all .18s; white-space: nowrap;
}
.slide-game-pill:hover, .slide-game-pill.active {
  color: var(--gold-light);
  background: rgba(200,150,12,0.12);
}

/* =============================================
   ADMIN / LAPORAN PAGE
   ============================================= */
.admin-header {
  background: var(--dark);
  padding: 2rem 1.5rem;
  color: var(--white);
}
.admin-header h1 {
  font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.admin-header p { color: rgba(255,255,255,0.45); font-size: 13px; }
.admin-login-wrap {
  max-width: 400px; margin: 4rem auto; padding: 0 1.5rem;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px; margin-bottom: 2rem;
}
.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.admin-stat-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-400); margin-bottom: 8px;
}
.admin-stat-value {
  font-size: 26px; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.admin-stat-value.gold { color: var(--gold); }
.admin-stat-value.green { color: var(--success); }
.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center; margin-bottom: 1.5rem;
}
.admin-filters .form-input {
  max-width: 180px; padding: 9px 12px; font-size: 13px;
}
