/* ==========================================================================
   RIAGS STORE - EXCLUSIVE GAMING VAULT CSS (MULTI-PAGE SPA)
   Version: v4.5 — Rapikan Navbar Mobile + Hapus Tombol WhatsApp Navbar
   Colors: Dragon Red (#d32f2f), Steel Black (#0a0b0e - #1a1d29), Blade Gold (#f59e0b)
   Accent: WhatsApp Green (#25D366)
   Clean, Fast, Responsive (Desktop 3-4 cols, Mobile strictly 2 cols)
   ========================================================================== */

/* 1. CSS VARIABLES (DARK MODE ONLY) */
:root {
  /* Brand Palettes */
  --primary-red: #d32f2f;
  --primary-red-hover: #b71c1c;
  --primary-red-light: #ff4d6d;
  --primary-red-glow: rgba(211, 47, 47, 0.45);
  --primary-red-subtle: rgba(211, 47, 47, 0.12);

  --blade-gold: #f59e0b;
  --blade-gold-hover: #d97706;
  --blade-gold-light: #fde047;
  --blade-gold-glow: rgba(245, 158, 11, 0.35);
  --blade-gold-subtle: rgba(245, 158, 11, 0.12);

  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;

  /* WhatsApp Brand Colors */
  --wa-green: #25D366;
  --wa-green-hover: #1ebd58;
  --wa-green-dark: #128C7E;
  --wa-green-glow: rgba(37, 211, 102, 0.4);
  --wa-green-subtle: rgba(37, 211, 102, 0.15);

  /* Surfaces & Backgrounds */
  --bg-body: #0a0b0e;
  --bg-surface: #12141c;
  --bg-card: rgba(18, 21, 30, 0.88);
  --bg-card-hover: rgba(26, 30, 44, 0.96);
  --bg-input: #0e1017;
  --bg-elevated: #1a1d29;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-gold-hover: rgba(245, 158, 11, 0.65);
  --border-red: rgba(211, 47, 47, 0.4);

  /* Typography */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-gaming: 'Rajdhani', 'Plus Jakarta Sans', 'Impact', 'Arial Black', system-ui, sans-serif;
  --font-display: 'Rajdhani', 'Plus Jakarta Sans', sans-serif;
  /* [FIX-10] Font Mono Premium */
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Courier New', monospace;
  /* [V3.14] Font Kicker Gaming/Sci-Fi */
  --font-kicker: 'Orbitron', 'Rajdhani', 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 24px rgba(245, 158, 11, 0.25);
  --shadow-red: 0 0 28px rgba(211, 47, 47, 0.3);
  --shadow-wa: 0 4px 18px rgba(37, 211, 102, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* [FX-04] Optimal transition easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --container-max: 1240px;
}

/* [TH-01] 1.1 LIGHT THEME VARIABLES & OVERRIDES */

/* Light Theme Body Background — SOLID PUTIH BERSIH TANPA POLA */

/* [TH-01] [PX-NAV] Light Theme Component Overrides */

/* [V27-19] Light mode — protocol icon background */

/* [V27-20] Light mode — game hub bg lebih terlihat */

/* [V27-21] Light mode — flash sale section */

/* ==========================================================================
   [V30-01] HERO SECTION LIGHT MODE OVERRIDES
   ========================================================================== */

/* [FX-04] GPU Acceleration & optimal transitions */
.btn,
.product-card,
.game-hub-card,
.flash-sale-card,
.news-card,
.modal-card-dialog,
.filter-pill,
.pay-tab-btn,
.faq-item,
.icon-btn {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* [FX-09] Focus ring aksesibilitas + smooth scroll */
*:focus-visible {
  outline: 2px solid var(--blade-gold);
  outline-offset: 3px;
  border-radius: 4px;
  transition: outline-offset 0.2s var(--ease-out-expo);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 2. BASE RESET & GLOBAL CONTROLS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  color: inherit;
  outline: none;
}

ul, ol {
  list-style: none;
}

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

/* CRITICAL SAFEGUARD: SVG tidak boleh melebihi container */
svg {
  max-width: 100%;
  height: auto;
}

/* 3. DYNAMIC PARTICLE CANVAS (FONDASI TETAP) */
.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* 4. UTILITIES & TYPOGRAPHY */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.text-gradient-red {
  background: linear-gradient(135deg, #ff3355 0%, #d32f2f 50%, #b71c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fde047 0%, #f59e0b 60%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red { color: var(--primary-red); }
.text-gold { color: var(--blade-gold); }
.text-cyan { color: var(--accent-cyan); }
.text-emerald { color: var(--accent-emerald); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 0.875rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }

/* 5. SPA MULTI-PAGE VIEW SYSTEM (FADE-IN SLIDE-UP) */
.spa-main-container {
  position: relative;
  min-height: calc(100vh - 250px);
  z-index: 1;
}

/* [FX-06] Page transition halus — update easing */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.995);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  will-change: opacity, transform;
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: pageFadeSlideIn 0.5s var(--ease-out-expo) forwards;
}

@keyframes pageFadeSlideIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.995); }
  60% { opacity: 0.9; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.page-content-pad {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* 6. BUTTONS */
/* [FX-02] Icon button & sound toggle button */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  color: var(--text-main);
  border-color: var(--border-gold-hover);
  background: var(--bg-elevated);
}

/* [FX-05] Ripple effect saat klik */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleExpand 0.6s var(--ease-out-expo);
  pointer-events: none;
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* [FX-05] Press feedback — semua tombol utama */
.btn:active,
.btn-view-detail:active,
.btn-wa-nav:active,
.btn-buy-now-solid:active,
.btn-credit-outline:active,
.filter-pill:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s var(--ease-out-expo) !important;
}

/* [FX-05] Card press feedback */
.product-card:active,
.game-hub-card:active,
.flash-sale-card:active {
  transform: scale(0.985);
  transition: transform 0.12s var(--ease-out-expo);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-arrow {
  width: 1.15rem;
  height: 1.15rem;
  transition: transform var(--transition-fast);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0a0b0e;
  border-color: #fde047;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.btn-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glow {
  animation: pulseGoldGlow 3s infinite alternate;
}

@keyframes pulseGoldGlow {
  0% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35); }
  100% { box-shadow: 0 6px 28px rgba(245, 158, 11, 0.65); }
}

.btn-outline-gold {
  background: transparent;
  color: var(--blade-gold);
  border: 1px solid var(--blade-gold);
}

.btn-outline-gold:hover {
  background: var(--blade-gold-subtle);
  transform: translateY(-2px);
}

/* WhatsApp Buttons */
.wa-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  background: var(--wa-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-wa);
  transition: all var(--transition-fast);
}

.btn-wa-nav:hover {
  background: var(--wa-green-hover);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

/* [V4.4] Mobile label WA hidden by default (desktop & tablet show desktop label) */
.wa-label-mobile {
  display: none;
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-wa-hero:hover {
  background: var(--wa-green);
  color: #ffffff;
  border-color: var(--wa-green);
  box-shadow: var(--shadow-wa);
  transform: translateY(-2px);
}

.btn-wa-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--wa-green);
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-wa);
  transition: all var(--transition-fast);
}

.btn-wa-full:hover {
  background: var(--wa-green-hover);
}

/* Tombol "Lihat Detail →" pada Kartu Produk */
.btn-view-detail {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(211, 47, 47, 0.15) 100%);
  color: var(--blade-gold);
  border: 1px solid rgba(245, 158, 11, 0.5);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn-view-detail:hover {
  background: linear-gradient(135deg, var(--blade-gold) 0%, #d97706 100%);
  color: #0a0b0e;
  border-color: var(--blade-gold-light);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
}

.badge-verif-mini {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blade-gold);
  background: var(--blade-gold-subtle);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* 7. STICKY NAVBAR & [PX-NAV] SMOOTH SCROLL PARALLAX */
.navbar-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 11, 14, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  /* [V30-03] [V28-04] Navbar shrink parallax setup & clean will-change */
  transform-origin: top center;
  will-change: transform, padding, background, box-shadow;
}

/* [PX-NAV] Scrolled state with floating elevation and deeper frosted glass */
.navbar-sticky.scrolled {
  background: rgba(10, 11, 14, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(211, 47, 47, 0.28);
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.72),
              0 1px 0 rgba(255, 255, 255, 0.08),
              0 0 20px rgba(211, 47, 47, 0.14);
  /* [V28-04] Navbar shrink saat scroll */
  transform: scaleY(0.94);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;  /* logo | menu | actions */
  align-items: center;
  gap: 1.75rem;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* [V30-03] [V28-04] Kompensasi padding saat navbar shrink */
.navbar-sticky.scrolled .nav-container {
  padding: 0.75rem 1.25rem;
}

/* [PX-NAV] Ambient Specular Sheen Parallax Layer */
.navbar-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.navbar-sheen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: radial-gradient(400px circle at var(--sheen-x, 50%) 0px, rgba(255, 255, 255, 0.35), rgba(245, 158, 11, 0.15) 40%, transparent 80%);
  pointer-events: none;
}

.navbar-sticky.scrolled .navbar-sheen {
  opacity: 0.85;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo .logo-shield {
  flex-shrink: 0;
  position: relative;   /* konteks stacking agar glow tidak "bocor" ke teks */
  z-index: 1;
}

.brand-logo .logo-text-group {
  position: relative;
  z-index: 2;           /* teks selalu di atas glow */
  min-width: 0;
}

.brand-logo .logo-brand {
  display: block;
  white-space: nowrap;
  overflow: visible;
}

/* [V3.12] Brand logo desktop - Logo only */
.brand-logo--logo-only .logo-shield {
  width: 2.75rem;
  height: 2.75rem;
}

/* [V4.3] Logo text — default (desktop) disembunyikan */
.brand-logo-text--mobile {
  display: none !important;
}

.logo-shield {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1b1e2a 0%, #0d0f17 100%);
  border: 1px solid rgba(211, 47, 47, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3355;
  box-shadow: 0 0 16px var(--primary-red-glow);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}

.navbar-sticky.scrolled .logo-shield {
  box-shadow: 0 0 20px rgba(255, 51, 85, 0.55);
  border-color: rgba(255, 51, 85, 0.7);
}

.navbar-sticky.scrolled .badge-verif-mini {
  transform: scale(0.92);
  transform-origin: left center;
  opacity: 0.9;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.logo-svg {
  width: 1.45rem;
  height: 1.45rem;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-gaming);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text-main);
}

/* Menu — kolom 2, di-center */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links:has(.nav-hold-wrapper),
.nav-hold-wrapper {
  overflow: visible;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--text-main);
  background: rgba(211, 47, 47, 0.12);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red-glow);
  border-radius: 2px;
}

/* [V3.12] Chevron icon pada Tata Cara Pembayaran */
.nav-dropdown-chevron {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: var(--blade-gold);
  opacity: 0.7;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.nav-hold-wrapper[data-open="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-hold-wrapper:hover .nav-dropdown-chevron {
  opacity: 1;
}

/* ========================================================================== */
/* [NEW] NAV HOLD-WRAPPER (Long-press reveal)                                 */
/* ========================================================================== */
.nav-hold-wrapper {
  position: relative;
  display: inline-block;
}

/* Indikator progress hold — garis bawah yang mengisi */
.nav-hold-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
  border-radius: 2px;
  transition: width 0.15s linear;
  pointer-events: none;
}

.nav-hold-wrapper[data-holding="true"] .nav-hold-indicator {
  width: 100%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Highlight link saat ditahan */
.nav-hold-wrapper[data-holding="true"] .nav-link {
  color: var(--blade-gold);
}

/* ---------- Dropdown Panel ---------- */
.nav-hold-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  min-width: 280px;
  background: rgba(18, 21, 30, 0.96);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.75),
              0 0 20px rgba(245, 158, 11, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s;
  z-index: 200;
}

/* Panah kecil di atas panel */
.nav-hold-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 30px;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(18, 21, 30, 0.96);
  border-left: 1px solid rgba(245, 158, 11, 0.35);
  border-top: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 2px 0 0 0;
  z-index: 1;
}

/* Garis aksen gradient di atas panel */
.nav-hold-menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  z-index: 2;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* State terbuka */
.nav-hold-wrapper[data-open="true"] .nav-hold-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* ---------- Item Dropdown ---------- */
.nav-hold-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.nav-hold-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  border-radius: 0 2px 2px 0;
  transition: transform 0.25s ease;
}

.nav-hold-item:hover,
.nav-hold-item:focus-visible {
  background: rgba(245, 158, 11, 0.08);
  color: var(--text-main);
  padding-left: 1.15rem;
}

.nav-hold-item:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-hold-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blade-gold);
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-hold-item:hover .nav-hold-item-icon {
  opacity: 1;
  transform: scale(1.1);
}

.nav-hold-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-hold-item-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: inherit;
}

.nav-hold-item-desc {
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Tombol "Kontak Admin" aktif — saat halaman wawasan dibuka */
.nav-hold-wrapper.is-hold-active .nav-link {
  color: var(--blade-gold);
}

/* ========================================================================== */
/* LIGHT MODE OVERRIDES                                                       */
/* ========================================================================== */

/* ========================================================================== */
/* RESPONSIVE — Sembunyikan di mobile + tablet                                */
/* ========================================================================== */
.nav-link-tablet-contact {
  display: none;
}

@media (max-width: 991px) and (min-width: 769px) {
  .nav-link-tablet-contact {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .nav-hold-wrapper {
    display: none !important;
  }
}

/* Actions — kolom 3 */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  justify-self: end;
}

/* ==========================================================================
   [V3.12] NAVBAR RESPONSIVE BREAKPOINTS (Desktop / Laptop / Tablet)
   ========================================================================== */
/* Desktop besar (>1440px): semua tampil lega */
/* Laptop (1281–1440px): perkecil gap */
@media (max-width: 1440px) {
  .nav-container { padding: 0.85rem 1.25rem; gap: 1.35rem; }
  .nav-links { gap: 0.25rem; }
  .nav-link { padding: 0.45rem 0.7rem; font-size: 0.8125rem; }
}

/* Laptop kecil (1101–1280px): lebih compact */
@media (max-width: 1280px) {
  .nav-container { gap: 1.1rem; }
  .nav-links { gap: 0.15rem; }
  .nav-link { padding: 0.4rem 0.6rem; font-size: 0.78rem; }
  .currency-badge-pill { height: 34px; padding: 0 0.7rem; font-size: 0.78rem; }
}

/* Laptop sempit (992–1100px): WA button jadi icon saja */
@media (max-width: 1100px) and (min-width: 992px) {
  .currency-badge-pill { display: none !important; }
  .btn-wa-nav {
    padding: 0.55rem;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
  .btn-wa-nav span { display: none; }
  .nav-link { padding: 0.4rem 0.55rem; font-size: 0.75rem; }
}

/* Mobile + tablet (≤991px): hamburger */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .hamburger-btn-svg { display: inline-flex; }
  .nav-container {
    grid-template-columns: auto 1fr auto;
  }

  /* [V4.5] Task 2: Safeguard sembunyikan Currency Pill di tablet & mobile */
  .currency-badge-pill {
    display: none !important;
  }

  /* [V4.5] Task 1: Sembunyikan tombol WA navbar di tablet & mobile */
  #navWhatsAppBtn {
    display: none !important;
  }

  /* [V4.3] Tampilkan teks brand di mobile & tablet */
  .brand-logo-text--mobile {
    display: flex !important;
    flex-direction: column;
  }

  .brand-logo-text--mobile .logo-brand {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    line-height: 1.05;
  }

  .brand-logo {
    gap: 0.55rem;
  }
}

/* [V4.3] Anti-overflow di mobile kecil */
@media (max-width: 480px) {
  .brand-logo-text--mobile .logo-brand {
    font-size: 1.05rem;
  }
}

.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-medium);
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--blade-gold);
}

.mobile-auth-wrapper {
  margin-top: 1rem;
}

/* 8. HERO SECTION & BANNER SLOT */
.hero-section {
  position: relative;
  padding: 4rem 0 3.5rem;
  z-index: 1;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
}

.hero-banner-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  filter: contrast(1.1) brightness(0.8);
}

.hero-banner-img.img-fallback-hidden {
  display: none;
}

.hero-banner-fallback-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(211, 47, 47, 0.28) 0%, rgba(18, 21, 30, 0.95) 65%, var(--bg-body) 100%),
              linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  z-index: 0;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.5) 0%, rgba(10, 11, 14, 0.88) 75%, var(--bg-body) 100%);
  z-index: 2;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.35);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #ff3355;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3355;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.pill-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ff6b81;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-gaming);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.headline-static {
  color: var(--text-main);
}

.headline-dynamic {
  display: inline-block;
  min-height: 1.2em;
}

.hero-subheadline {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.text-highlight {
  color: var(--text-main);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0;
}

.protocol-cta-group {
  margin-top: 2.75rem;
  margin-bottom: 0;
}

.cta-after-search-section {
  padding: 1.5rem 0 3rem;
}

.cta-below-search {
  justify-content: center;
  margin-bottom: 0;
}

/* Sembunyikan Section CERITA PEMBELI KAMI */
#testimonials {
  display: none !important;
}

/* 9. SECTION HEADERS */
.section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-kicker {
  font-family: var(--font-kicker);
  font-size: 0.78rem;         /* sedikit lebih kecil karena Orbitron cenderung lebar */
  font-weight: 700;           /* Orbitron 800 terlalu tebal untuk size kecil */
  letter-spacing: 0.15em;     /* lebih renggang khas font sci-fi */
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

/* [V3.14] Light mode kicker font safeguard */

.section-title {
  font-family: var(--font-gaming);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* 10. SECTION KEUNGGULAN RIAGS STORE (SEBELUMNYA HILANG CSS - SEKARANG DIPERBAIKI PENUH) */
.protocol-section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .protocol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.protocol-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.protocol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all var(--transition-normal);
}

.protocol-card:nth-child(1):hover::before {
  background: var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red-glow);
}

.protocol-card:nth-child(2):hover::before {
  background: var(--blade-gold);
  box-shadow: 0 0 12px var(--blade-gold-glow);
}

.protocol-card:nth-child(3):hover::before {
  background: var(--accent-emerald);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.protocol-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

/* Fix Ukuran Icon SVG Keunggulan agar tidak melar besar */
.protocol-icon {
  width: 3.5rem;
  height: 3.5rem;
  max-width: 56px;
  max-height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.protocol-icon svg {
  width: 1.85rem !important;
  height: 1.85rem !important;
  max-width: 30px !important;
  max-height: 30px !important;
  display: block;
}

.protocol-card h3 {
  font-family: var(--font-gaming);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.protocol-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 12. SECTION FLASH SALE (COUNTDOWN 24H & HORIZONTAL CARDS) */
.flash-sale-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(211, 47, 47, 0.06) 0%, transparent 100%);
}

.flash-sale-header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.flash-sale-title-group {
  display: flex;
  flex-direction: column;
}

.flash-sale-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(211, 47, 47, 0.25);
  border: 1px solid rgba(211, 47, 47, 0.5);
  border-radius: var(--radius-full);
  color: #ff4d6d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
  animation: flashPulse 1.8s infinite;
}

.flash-sale-subtitle {
  display: block;
  color: var(--blade-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

@keyframes flashPulse {
  0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(211, 47, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.flash-countdown-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border: 1px solid rgba(211, 47, 47, 0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 0 18px rgba(211, 47, 47, 0.25);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unit-val {
  font-family: var(--font-gaming);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blade-gold);
}

.unit-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.countdown-colon {
  font-family: var(--font-gaming);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-red);
  margin: 0 0.15rem;
  line-height: 1;
}

/* Horizontal Scroll Container Flash Sale */
.flash-sale-scroll-container {
  overflow-x: auto;
  padding-bottom: 1.25rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) var(--bg-surface);
}

.flash-sale-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.flash-sale-scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
}

.flash-sale-grid {
  display: flex;
  gap: 1.25rem;
  min-width: min-content;
}

.flash-sale-card {
  width: 290px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid rgba(211, 47, 47, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}

.flash-sale-card:hover {
  transform: translateY(-4px);
  border-color: var(--blade-gold);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.25), 0 0 15px rgba(245, 158, 11, 0.2);
}

.flash-badge-glowing {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.55rem;
  background: var(--primary-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px var(--primary-red);
  z-index: 2;
}

.price-strike {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-flash-gold {
  font-family: var(--font-gaming);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blade-gold);
  line-height: 1;
}

/* 13. SECTION BERITA (KONDISIONAL VIA JS) */
.news-section {
  padding: 3.5rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-md);
}

.news-thumb-wrap {
  height: 140px;
  background: #10131d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-thumb-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.news-card:hover .news-thumb-wrap svg {
  transform: scale(1.05);
}

.news-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.75rem;
  color: var(--blade-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* [REV-NEWS] News Section Light Mode Overrides */

/* 14. HALAMAN TENTANG KAMI */
/* [V30-09] [V30-02] Reorder grid template: Owner (kiri 1fr) dan Sejarah (kanan 1.6fr) */
.about-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.history-card {
  display: flex;
  flex-direction: column;
}

.owner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-gold);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.about-icon-badge {
  font-size: 2rem;
}

.about-card-title {
  font-family: var(--font-gaming);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
}

.about-card-body p {
  line-height: 1.7;
}

.owner-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.owner-avatar-shield {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  overflow: hidden;
}

.owner-avatar-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.owner-info {
  margin-top: 0.5rem;
  width: 100%;
}

.owner-tagline {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.25rem;
}

.owner-name {
  font-family: var(--font-gaming);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px rgba(245, 158, 11, 0.15);
  margin-bottom: 0.15rem;
}

.owner-divider {
  width: 60px;
  height: 2px;
  margin: 0.75rem auto 0.85rem;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.owner-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 2px solid var(--blade-gold);
  padding-left: 1rem;
  margin-top: 0.75rem;
  text-align: left;
}

.owner-signature {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.visi-misi-section {
  margin-top: 3.5rem;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.visi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.visi-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-sm);
}

.visi-icon {
  width: 3rem;
  height: 3rem;
  max-width: 48px;
  max-height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.visi-icon svg {
  width: 1.6rem !important;
  height: 1.6rem !important;
  max-width: 26px !important;
  max-height: 26px !important;
}

.visi-card h4 {
  font-family: var(--font-gaming);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.visi-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 15. TOP GAMES HUB (HORIZONTAL REDESIGN) & STOCK GAME */
.game-hub-container-stock {
  margin-bottom: 1.5rem;
}

.game-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .game-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

.game-hub-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.game-hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.game-hub-logo {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-hub-logo .game-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.game-hub-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.game-hub-title {
  font-family: var(--font-gaming);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.15rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-hub-publisher {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Back button & Game page header */
.back-to-games-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.back-to-games-btn:hover {
  border-color: var(--border-gold-hover);
  color: var(--blade-gold);
  background: var(--blade-gold-subtle);
}

.back-icon {
  width: 1rem;
  height: 1rem;
}

.game-page-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.game-page-title {
  font-family: var(--font-gaming);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}

.game-page-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Arsenal Toolbar */
.arsenal-toolbar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(12px);
}

.toolbar-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-header-left .section-title {
  margin-bottom: 0;
}

.search-box-wrapper {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.15rem;
  height: 1.15rem;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--blade-gold);
  box-shadow: 0 0 14px var(--blade-gold-subtle);
}

.clear-search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
}

.clear-search-btn:hover {
  color: var(--primary-red);
}

.toolbar-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.filter-groups-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.filter-subgroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.filter-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 110px;
}

.filter-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.filter-pill.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red-glow);
}

.price-pill.active {
  background: var(--blade-gold);
  color: #0a0b0e;
  border-color: var(--blade-gold-light);
  box-shadow: 0 0 10px var(--blade-gold-glow);
}

.sort-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.sort-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.sort-select {
  padding: 0.45rem 0.85rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.8125rem;
  cursor: pointer;
}

.sort-select:focus {
  border-color: var(--blade-gold);
}

/* 16. PRODUCT GRID & CARD (DESKTOP 3-4 COLS, MOBILE STRICTLY 2 COLS) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* [FX-08] Stagger card entrance */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  animation: cardStaggerIn 0.4s var(--ease-out-expo) forwards;
}

@keyframes cardStaggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25), 0 0 15px rgba(211, 47, 47, 0.2);
}

.card-header-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #0f1118;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .card-banner-img {
  transform: scale(1.08);
}

.card-visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,11,14,0.85) 90%, var(--bg-card) 100%);
}

.card-game-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: rgba(10, 11, 14, 0.85);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  z-index: 2;
}

.tag-ff { border-left: 3px solid #ff9800; }
.tag-mlbb { border-left: 3px solid #2196f3; }
.tag-roblox { border-left: 3px solid #10b981; }

.card-badge-status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  z-index: 2;
}

.badge-verified {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-top-seller {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-hot {
  background: rgba(211, 47, 47, 0.25);
  color: #ff6b81;
  border: 1px solid rgba(211, 47, 47, 0.5);
}

.card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* [FIX-10] Ganti monospace default dengan JetBrains Mono */
.card-ign-code {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.card-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.card-spec-pill {
  padding: 0.15rem 0.5rem;
  font-size: 0.6875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.card-skin-highlights {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.card-price-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.card-price {
  font-family: var(--font-gaming);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blade-gold);
  line-height: 1;
}

/* 17. SKELETON LOADER ANIMATION */
/* [REV-15] Skeleton fade-out halus */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  transition: opacity 0.25s ease;
}

.skeleton-grid.fade-out {
  opacity: 0;
}

@media (max-width: 1100px) {
  .skeleton-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-thumb {
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-btn {
  height: 38px;
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.empty-results-box {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-lg);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-results-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.empty-results-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* 18. HALAMAN TATA CARA PEMBAYARAN */
.payment-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pay-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.02em;
}

.tab-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* [V27-02] Tab icon SVG */
.tab-icon-svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: currentColor;
}

.pay-tab-btn:hover:not(.active) {
  border-color: var(--border-gold-hover);
  color: var(--text-main);
  background: var(--bg-elevated);
}

/* Active tab — lebih bold, lebih berisi */
.pay-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  border-color: var(--blade-gold-light);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45),
              0 0 0 1px rgba(253, 224, 71, 0.6) inset;
  transform: translateY(-1px);
}

.pay-tab-btn.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blade-gold-light), transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.pay-tab-btn.active .tab-icon-svg {
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* [V3.11] Light Mode Override Khusus Tab Aktif */

.pay-tab-content {
  display: none;
  animation: pageFadeSlideIn 0.35s ease forwards;
}

.pay-tab-content.active {
  display: block;
}

.pay-instructions-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.pay-card-header {
  margin-bottom: 2rem;
}

.pay-card-title {
  font-family: var(--font-gaming);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.steps-flow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-fast);
}

.step-item:hover {
  border-color: var(--border-gold-hover);
  background: rgba(245, 158, 11, 0.03);
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  color: #ffffff;
  font-family: var(--font-gaming);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pay-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pay-cta-btn {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* Tabel Tenor Cicilan */
.tenor-table-wrapper {
  margin: 2.5rem 0 1.5rem;
  background: rgba(14, 16, 23, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.tenor-table-title {
  font-family: var(--font-gaming);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.table-responsive {
  overflow-x: auto;
}

.tenor-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.tenor-table th, .tenor-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tenor-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-weight: 700;
}

.tenor-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--blade-gold-subtle);
  border: 1px solid var(--blade-gold);
  border-radius: var(--radius-sm);
  color: var(--blade-gold);
  font-weight: 700;
}

.payment-methods-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.payment-methods-title {
  font-family: var(--font-gaming);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pay-pill-lg {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}

.security-warning-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(211, 47, 47, 0.12);
  border: 1px solid rgba(211, 47, 47, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.warning-icon {
  font-size: 2rem;
  line-height: 1;
}

.warning-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ff99a8;
}

.warning-text strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

/* 19. HALAMAN KONTAK ADMIN & FAQ */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.contact-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.admin-profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.admin-avatar-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.admin-avatar-shield {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1f2438 0%, #10121a 100%);
  border: 2px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blade-gold);
  box-shadow: 0 0 16px var(--primary-red-glow);
}

.admin-svg-icon {
  width: 2.2rem !important;
  height: 2.2rem !important;
  max-width: 35px !important;
  max-height: 35px !important;
}

.admin-profile-info {
  display: flex;
  flex-direction: column;
}

.online-pulse-indicator {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: #10b981;
  border: 2px solid var(--bg-surface);
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: statusPulse 1.6s infinite;
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.admin-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: block;
}

.admin-name {
  font-family: var(--font-gaming);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.admin-online-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.status-text {
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 700;
}

.admin-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.admin-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.meta-label {
  color: var(--text-muted);
}

.meta-value {
  font-weight: 700;
}

.btn-contact-wa {
  padding: 0.9rem;
  font-size: 1rem;
}

/* ==========================================================================
   [SI-02] DARK SOCIAL MEDIA ICONS
   ========================================================================== */

.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-icon-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s var(--ease-out-expo);
  overflow: hidden;
  z-index: 1;
  min-height: 56px;
}

.social-icon-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-color, var(--blade-gold));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.social-icon-item:hover::before,
.social-icon-item:focus-visible::before {
  transform: translateY(0);
}

.social-icon-item:hover,
.social-icon-item:focus-visible {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-glow, rgba(245, 158, 11, 0.35));
}

.social-icon-item svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}

.social-icon-item:hover svg {
  transform: scale(1.15);
}

.social-icon-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: inherit;
  transition: color 0.3s ease;
}

/* Tooltip */
.social-icon-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.35rem 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease-out-expo);
  z-index: 10;
}

.social-icon-item:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Brand Colors */
.social-icon-item[data-brand="whatsapp"] { --brand-color: #25D366; --brand-glow: rgba(37, 211, 102, 0.4); }
.social-icon-item[data-brand="instagram"] { --brand-color: #E4405F; --brand-glow: rgba(228, 64, 95, 0.4); }
.social-icon-item[data-brand="discord"] { --brand-color: #5865F2; --brand-glow: rgba(88, 101, 242, 0.4); }
.social-icon-item[data-brand="email"] { --brand-color: #EA4335; --brand-glow: rgba(234, 67, 53, 0.4); }
.social-icon-item[data-brand="tiktok"] { --brand-color: #000000; --brand-glow: rgba(0, 0, 0, 0.5); }
.social-icon-item[data-brand="youtube"] { --brand-color: #FF0000; --brand-glow: rgba(255, 0, 0, 0.4); }

/* Light Theme */

/* Mobile Responsive */
@media (max-width: 768px) {
  .social-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
  
  .social-icon-item {
    min-height: 48px;
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
  }

  .social-icon-item svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .social-icon-label {
    font-size: 0.8rem;
  }
}

/* FAQ Accordion */
.faq-section {
  margin-top: 3.5rem;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-gaming);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-fast);
  color: var(--blade-gold);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(14, 16, 23, 0.4);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 20. MODAL DESKRIPSI PRODUK — "SHOWCASE DETAIL" */
/* [FX-07] Modal masuk lebih halus */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo), backdrop-filter 0.35s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.modal-card-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 35px rgba(211, 47, 47, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.94);
  opacity: 0;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.35s ease;
}

/* [REV-03] Gradient strip atas modal tanpa merusak border-radius */
.modal-card-dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  z-index: 20;
  pointer-events: none;
}

.modal-backdrop.open .modal-card-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-ambient-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(211, 47, 47, 0.35) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}



.modal-step-view {
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 90vh;
}

.modal-step-view.active {
  display: flex;
}

.modal-header-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-height: 400px;
  background: #090a0f;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Modal banner image (SVG atau custom) */
.modal-header-visual .card-banner-img,
.modal-header-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.modal-banner-art-wrap {
  width: 100%;
  height: 100%;
  animation: modalPulse 6s infinite alternate ease-in-out;
}

@keyframes modalPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

/* [V29-01] Modal header meta: space-between agar badge status otomatis mepet kanan */
.modal-header-meta {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 3;
}

.order-id-code {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.modal-content-scrollable {
  padding: 0;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--blade-gold) var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Padding untuk konten setelah banner */
.modal-content-scrollable > *:not(.modal-header-visual) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Konten pertama setelah banner dapat padding top */
.modal-content-scrollable > .modal-header-visual + * {
  padding-top: 1.25rem;
}

/* Konten terakhir dapat padding bottom */
.modal-content-scrollable > *:last-child {
  padding-bottom: 1.25rem;
}

.modal-rank-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.modal-rank-badge {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(211, 47, 47, 0.25) 100%);
  border: 1px solid var(--blade-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-gaming);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blade-gold-light);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
  text-transform: uppercase;
}

.modal-product-title {
  font-family: var(--font-gaming);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  text-align: center;
}

/* Spec Matrix Grid (2 Kolom) */
.spec-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.spec-matrix-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.spec-item-icon {
  font-size: 1.35rem;
}

.spec-item-text {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Highlight Skin & Senjata */
.modal-highlight-section {
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.highlight-title {
  font-family: var(--font-gaming);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-skin-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.skin-bullet-item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.skin-bullet-item::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--blade-gold);
  font-size: 0.75rem;
  top: 2px;
}

/* Catatan Penjual */
.modal-seller-notes-card {
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.25rem;
  background: rgba(245, 158, 11, 0.03);
}

.seller-notes-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--blade-gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.seller-notes-content {
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Modal Price Card */
.modal-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(14, 16, 23, 0.9);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

/* [REV-07] Badge diskon hemat di modal */
.flash-hemat-badge {
  background: var(--primary-red);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  margin-left: 0.75rem;
  box-shadow: 0 2px 10px rgba(211, 47, 47, 0.4);
}

.price-info-group {
  display: flex;
  flex-direction: column;
}

.price-kicker {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
}

.modal-big-price {
  font-family: var(--font-gaming);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.guarantee-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #34d399;
}

/* Footer Actions Modal */
.modal-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.btn-buy-now-solid {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-wa);
}

.btn-buy-now-solid:hover {
  background: linear-gradient(135deg, #1ebd58 0%, #075E54 100%);
  transform: translateY(-2px);
}

.btn-credit-outline {
  background: transparent;
  color: var(--blade-gold);
  border: 1px solid var(--blade-gold);
  font-weight: 800;
  border-radius: var(--radius-md);
}

.btn-credit-outline:hover {
  background: var(--blade-gold-subtle);
  transform: translateY(-2px);
}

/* STEP 2: SYARAT & KETENTUAN (S&K) */
.terms-step-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.step-indicator-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  margin-bottom: 0.65rem;
}

.crumb-done {
  color: #34d399;
  font-weight: 700;
}

.crumb-separator {
  color: var(--text-dim);
}

.crumb-active {
  color: var(--blade-gold);
  font-weight: 800;
}

.terms-heading {
  font-family: var(--font-gaming);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.terms-scroll-box {
  margin: 1rem 1.5rem;
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  background: rgba(10, 11, 14, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) var(--bg-surface);
}

.terms-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.terms-numbered-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 0.5rem;
}

.terms-numbered-list strong {
  color: var(--text-main);
  display: inline;
}

/* Custom Checkbox */
.terms-checkbox-wrap {
  padding: 0 1.5rem 1.25rem;
}

.custom-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 0.875rem;
  user-select: none;
  gap: 0.75rem;
  color: var(--text-main);
}

.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: var(--bg-input);
  border: 2px solid var(--border-medium);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.checkbox-label-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.custom-checkbox-container:hover input ~ .checkmark {
  border-color: var(--blade-gold);
}

.custom-checkbox-container input:checked ~ .checkmark {
  background-color: var(--wa-green);
  border-color: var(--wa-green);
}

.checkmark:after {
  content: "";
  display: none;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.btn-terms-submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: auto;
}

/* [REV-13] FLOATING BACK-TO-TOP BUTTON */
.back-to-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--blade-gold));
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 500;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 4.25rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
  }
}

/* 21. TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-item {
  background: rgba(18, 21, 30, 0.95);
  border: 1px solid var(--blade-gold);
  box-shadow: var(--shadow-lg), 0 0 15px var(--blade-gold-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 340px;
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.toast-item.toast-leave {
  animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(15px); }
}

/* [V27-05] Toast type indicator */
.toast-item.toast-success { border-left: 3px solid #34d399; }
.toast-item.toast-warning { border-left: 3px solid #fbbf24; }
.toast-item.toast-info { border-left: 3px solid var(--blade-gold); }

/* 22. FOOTER */
.site-footer {
  background: #06070a;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 0;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Footer logo spacing — lebih lega dari navbar */
.footer-logo {
  margin-bottom: 0.5rem;
  gap: 1rem !important;   /* <-- naikkan dari default 0.75rem */
}

/* Redam glow di footer agar tidak menutupi teks */
.footer-logo .logo-shield {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;   /* <-- WAJIB, agar tidak terkompresi oleh flex */
  will-change: auto; /* matikan parallax hint di footer */
  box-shadow: 0 0 12px rgba(211, 47, 47, 0.35) !important;
  border-color: rgba(211, 47, 47, 0.5) !important;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.security-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

/* [V27-04] Stamp icon SVG */
.stamp-icon-svg {
  width: 1rem;
  height: 1rem;
  color: #34d399;
  flex-shrink: 0;
}

.stamp-icon {
  font-size: 1rem;
}

.footer-heading {
  font-family: var(--font-gaming);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-links a:hover {
  color: var(--blade-gold);
  padding-left: 4px;
}

.payment-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pay-pill {
  font-size: 0.6875rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  background: #040507;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

.footer-credit-link {
  color: var(--blade-gold);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-credit-link:hover {
  color: var(--blade-gold-hover);
  text-decoration: underline;
}

/* ==========================================================================
   23. RESPONSIVE BREAKPOINTS (STRICTLY 2 COLS GRID ON MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .section {
    padding: 3rem 0;
  }

  .about-grid-layout {
    grid-template-columns: 1fr;
  }

  .visi-misi-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Container & Global Mobile Spacing */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .section-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Mobile Navigation & Brand */
  .nav-container {
    padding: 0.65rem 1rem;
  }

  .navbar-sticky.scrolled .nav-container {
    padding: 0.45rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .brand-logo {
    gap: 0.6rem;
  }

  .logo-shield {
    width: 2.15rem;
    height: 2.15rem;
  }

  .logo-svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .logo-brand {
    font-size: 1.25rem;
  }

  .badge-verif-mini {
    font-size: 0.58rem;
    padding: 0.1rem 0.35rem;
  }

  /* [V4.5] Task 1: Hapus tombol WhatsApp dari navbar mobile */
  #navWhatsAppBtn {
    display: none !important;
  }

  /* [V4.5] Task 3a: Pastikan Grid Proporsional */
  .nav-container {
    padding: 0.65rem 1rem;
    gap: 0.75rem;
    grid-template-columns: auto 1fr auto;
  }

  /* [V4.5] Task 4: Optimasi Brand Logo Teks di Mobile */
  .brand-logo-text--mobile {
    display: flex !important;
    flex-direction: column;
    min-width: 0;
    overflow: visible;
  }

  .brand-logo-text--mobile .logo-brand {
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    line-height: 1.1;
  }

  .brand-logo {
    gap: 0.5rem;
    min-width: 0;
    max-width: 100%;
  }

  /* [V4.5] Task 5: Optimasi Group Actions Mobile */
  .nav-actions {
    gap: 0.5rem;
    justify-self: end;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .hamburger-btn-svg {
    width: 2.25rem;
    height: 2.25rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2rem 0 1.5rem;
    min-height: auto;
  }

  .hero-badge-pill {
    margin-bottom: 0.85rem;
    padding: 0.25rem 0.75rem;
  }

  .pill-text {
    font-size: 0.72rem;
  }

  .hero-headline {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }

  .hero-subheadline {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 0.5rem;
  }

  .hero-cta-group,
  .protocol-cta-group {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    gap: 0.65rem;
  }

  .protocol-cta-group {
    margin-top: 1.75rem;
    margin-bottom: 0;
  }

  .hero-cta-group .btn,
  .protocol-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Protocol Grid Mobile */
  .protocol-section {
    padding: 2rem 0;
  }

  .protocol-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .protocol-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
    gap: 0.75rem;
  }

  .protocol-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
  }

  .protocol-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }

  .protocol-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Flash Sale Section & Anti-Collision Cards */
  .flash-sale-section {
    padding: 2rem 0;
  }

  .flash-sale-header-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .flash-countdown-box {
    align-items: flex-start !important;
    width: 100%;
  }

  .flash-sale-card {
    width: 250px !important;
    flex-shrink: 0 !important;
    border-radius: var(--radius-md);
  }


  .flash-sale-card .card-game-tag {
    top: 0.4rem !important;
    left: 0.4rem !important;
    font-size: 0.6rem !important;
    padding: 0.15rem 0.45rem !important;
    max-width: 65% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .flash-sale-card .flash-badge-glowing {
    top: auto !important;
    bottom: 0.4rem !important;
    right: 0.4rem !important;
    font-size: 0.6rem !important;
    padding: 0.15rem 0.5rem !important;
  }

  .flash-sale-card .card-body {
    padding: 0.75rem;
  }

  .flash-sale-card .card-title {
    font-size: 0.875rem !important;
    height: 2.6em !important;
  }

  .flash-sale-card .card-price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.15rem !important;
  }

  .flash-sale-card .price-strike {
    font-size: 0.72rem;
  }

  .flash-sale-card .price-flash-gold {
    font-size: 1.15rem;
  }

  /* [PX-01] Fix testimonials mobile override — kalah cascade dari base */
  .testimonials-section {
    padding: 2rem 0 !important;
  }

  .testimonials-scroll-wrapper {
    margin: 0 -1rem !important;
    padding: 0 1rem !important;
  }

  .testimonials-track {
    scroll-padding-left: 1rem !important;
    gap: 0.85rem !important;
    padding: 0.25rem 0 1rem !important;
  }

  .testimonial-card {
    flex: 0 0 82vw !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
    padding: 1.5rem 1.15rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
  }

  .testimonial-quote-icon {
    font-size: 3rem !important;
    top: -4px !important;
    left: 1rem !important;
  }

  .testimonial-text {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1rem !important;
  }

  .testimonial-avatar {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
  }

  .testimonial-name {
    font-size: 0.875rem !important;
  }

  /* News Section Mobile */
  .news-section {
    padding: 2rem 0;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .news-card {
    border-radius: var(--radius-md) !important;
  }

  .news-thumb-wrap {
    height: 125px !important;
  }

  .news-body {
    padding: 1rem !important;
  }

  /* Stock Game Page: Hub & Toolbar */
  .arsenal-toolbar {
    padding: 1rem !important;
    margin-bottom: 1.25rem !important;
    border-radius: var(--radius-md) !important;
    gap: 0.85rem !important;
  }

  .toolbar-top {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  .search-box-wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }

  .filter-groups-wrapper {
    gap: 0.75rem !important;
  }

  /* Anti-Zigzag Filter Pills: Label di atas, pills di bawah rata kiri rapi */
  .filter-subgroup {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
  }

  .filter-group-label {
    min-width: auto !important;
    margin-bottom: 0.15rem !important;
    font-size: 0.7rem !important;
  }

  .filter-pills-list {
    width: 100% !important;
    gap: 0.35rem !important;
  }

  .filter-pill {
    padding: 0.35rem 0.65rem !important;
    font-size: 0.75rem !important;
    min-height: 40px !important;
    display: inline-flex;
    align-items: center;
  }

  .sort-selector-wrapper {
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
  }

  .sort-select {
    width: 100% !important;
  }

  /* Product Card 2-Kolom (Bebas Tabrakan 100%) */
  .product-grid, .skeleton-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .product-card {
    border-radius: var(--radius-md) !important;
  }


  /* Game tag di sudut kiri atas */
  .card-game-tag {
    top: 0.4rem !important;
    left: 0.4rem !important;
    font-size: 0.58rem !important;
    padding: 0.12rem 0.4rem !important;
    max-width: 58% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Badge status di sudut kanan bawah banner — DIJAMIN TIDAK AKAN PERNAH TABRAKAN! */
  .card-badge-status {
    top: auto !important;
    bottom: 0.4rem !important;
    right: 0.4rem !important;
    font-size: 0.58rem !important;
    padding: 0.12rem 0.4rem !important;
  }

  .card-body {
    padding: 0.65rem !important;
  }

  .card-ign-code {
    font-size: 0.68rem !important;
    margin-bottom: 0.15rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card-title {
    font-size: 0.8125rem !important;
    height: 2.5em !important;
    line-height: 1.25 !important;
    margin-bottom: 0.35rem !important;
  }

  .card-specs-row {
    margin-bottom: 0.4rem !important;
    gap: 0.25rem !important;
  }

  .card-spec-pill {
    padding: 0.1rem 0.35rem !important;
    font-size: 0.62rem !important;
  }

  .card-skin-highlights {
    font-size: 0.72rem !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.3 !important;
  }

  .card-footer {
    padding-top: 0.5rem !important;
    gap: 0.45rem !important;
  }

  /* Price row bertumpuk rapi */
  .card-price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.1rem !important;
  }

  .card-price-label {
    font-size: 0.62rem !important;
  }

  .card-price {
    font-size: 1rem !important;
    line-height: 1.1 !important;
  }

  .btn-view-detail {
    padding: 0.45rem 0.5rem !important;
    font-size: 0.72rem !important;
    min-height: 40px !important;
  }

  /* Modal on Mobile */
  .modal-backdrop {
    padding: 0.5rem !important;
  }

  .modal-card-dialog {
    max-height: 94vh !important;
    border-radius: var(--radius-md) !important;
  }


  /* [V29-01] Modal header meta mobile: nowrap, space-between, dan status badge mepet kanan */
  .modal-header-meta {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    bottom: 0.45rem !important;
    left: 0.65rem !important;
    right: 0.65rem !important;
  }

  .modal-header-meta .card-game-tag {
    position: static !important;
    max-width: none !important;
    font-size: 0.68rem !important;
  }

  .modal-header-meta .card-badge-status {
    position: static !important;
    font-size: 0.68rem !important;
    margin-left: auto !important;
  }

  .modal-content-scrollable {
    padding: 0 !important;
  }

  .modal-content-scrollable > *:not(.modal-header-visual) {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .modal-content-scrollable > .modal-header-visual + * {
    padding-top: 0.85rem;
  }

  .modal-content-scrollable > *:last-child {
    padding-bottom: 0.85rem;
  }

  .modal-rank-badge {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.75rem !important;
  }

  .modal-product-title {
    font-size: 1.15rem !important;
    margin-bottom: 0.75rem !important;
  }

  .spec-matrix-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.45rem !important;
    margin-bottom: 0.85rem !important;
  }

  .spec-matrix-item {
    padding: 0.5rem 0.65rem !important;
  }

  .spec-item-icon {
    font-size: 1.1rem !important;
  }

  .spec-label {
    font-size: 0.65rem !important;
  }

  .spec-value {
    font-size: 0.8rem !important;
  }

  .modal-highlight-section {
    padding: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .highlight-title {
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
  }

  .skin-bullet-item {
    font-size: 0.78rem !important;
  }

  .modal-seller-notes-card {
    padding: 0.65rem 0.85rem !important;
    margin-bottom: 0.75rem !important;
  }

  .modal-price-card {
    padding: 0.65rem 0.85rem !important;
  }

  .modal-big-price {
    font-size: 1.35rem !important;
  }

  .guarantee-badge {
    font-size: 0.68rem !important;
  }

  .modal-footer-actions {
    grid-template-columns: 1fr !important;
    gap: 0.45rem !important;
    padding: 0.75rem 0.85rem !important;
  }

  .btn-buy-now-solid,
  .btn-credit-outline {
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
    justify-content: center;
    min-height: 42px !important;
  }

  /* Step 2 S&K on Mobile */
  .terms-step-header {
    padding: 1rem 0.85rem 0.35rem !important;
  }

  .step-indicator-breadcrumbs {
    flex-wrap: wrap !important;
    gap: 0.25rem !important;
    font-size: 0.7rem !important;
    margin-bottom: 0.45rem !important;
  }

  .terms-heading {
    font-size: 1.25rem !important;
  }

  .terms-scroll-box {
    margin: 0.65rem 0.85rem !important;
    padding: 0.85rem !important;
    min-height: 120px !important;
    max-height: 190px !important;
  }

  .terms-numbered-list li {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .terms-checkbox-wrap {
    padding: 0 0.85rem 0.75rem !important;
  }

  .custom-checkbox-container {
    font-size: 0.8rem !important;
    align-items: flex-start !important;
  }

  /* About Page Mobile */
  .about-grid-layout {
    gap: 1.25rem !important;
    margin-bottom: 2rem !important;
  }

  .about-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }

  .about-card-title {
    font-size: 1.25rem !important;
  }

  .about-card-body p {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
  }

  .owner-avatar-shield {
    width: 75px !important;
    height: 75px !important;
  }

  .owner-name {
    font-size: 1.35rem !important;
  }

  .visi-misi-section {
    margin-top: 2rem !important;
  }

  .visi-misi-grid {
    gap: 1rem !important;
  }

  .visi-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }

  /* Payment Page Mobile */
  .payment-tabs-nav {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .pay-tab-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
  }

  .pay-instructions-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 1.25rem !important;
  }

  .pay-card-title {
    font-size: 1.35rem !important;
  }

  .steps-flow-list {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .step-item {
    padding: 0.85rem 0.75rem !important;
    gap: 0.75rem !important;
  }

  .step-num {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 1rem !important;
  }

  .step-content h4 {
    font-size: 0.9rem !important;
  }

  .step-content p {
    font-size: 0.8rem !important;
  }

  .tenor-table-wrapper {
    padding: 1rem 0.75rem !important;
    margin: 1.5rem 0 1rem !important;
  }

  .tenor-table th, .tenor-table td {
    padding: 0.55rem 0.65rem !important;
    font-size: 0.75rem !important;
  }

  .payment-methods-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }

  .security-warning-card {
    padding: 1rem !important;
    gap: 0.75rem !important;
    border-radius: var(--radius-md) !important;
  }

  .warning-text {
    font-size: 0.8125rem !important;
  }

  /* Contact Page & FAQ Mobile */
  .contact-layout-grid {
    gap: 1.25rem !important;
  }

  .contact-main-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }

  .admin-profile-header {
    gap: 0.85rem !important;
    margin-bottom: 1rem !important;
  }

  .admin-avatar-wrap {
    width: 56px !important;
    height: 56px !important;
  }

  .admin-name {
    font-size: 1.25rem !important;
  }

  .faq-section {
    margin-top: 2rem !important;
  }

  .faq-question-btn {
    padding: 0.9rem 1rem !important;
    font-size: 0.95rem !important;
  }

  .faq-answer-inner {
    padding: 0 1rem 0.85rem !important;
    font-size: 0.85rem !important;
  }

  /* Feedback Reactions: 5 Emoji dalam 1 Baris */
  .feedback-section {
    margin-top: 2rem !important;
    padding-top: 1rem !important;
  }

  .feedback-options {
    display: flex !important;
    justify-content: space-around !important;
    flex-wrap: nowrap !important;
    gap: 0.25rem !important;
    padding: 0.85rem 0.35rem !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
  }

  .feedback-option {
    min-width: 0 !important;
    min-height: 70px !important;
    padding: 0.2rem !important;
    flex: 1 !important;
  }

  .feedback-face {
    width: 42px !important;
    height: 42px !important;
  }

  .feedback-label {
    font-size: 0.62rem !important;
    max-width: 58px !important;
    line-height: 1.15 !important;
  }

  .feedback-thanks {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-md) !important;
  }

  .feedback-section:has(input[name="feedbackRating"]:checked) .feedback-thanks {
    max-height: 520px !important;
    padding: 1.25rem 1rem !important;
    margin-top: 1rem !important;
  }

  .thanks-icon {
    font-size: 2rem !important;
  }

  .thanks-title {
    font-size: 1.25rem !important;
  }

  .thanks-desc {
    font-size: 0.85rem !important;
  }

  .feedback-submit-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
  }

  /* Floating Toast Mobile */
  .toast-container {
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    align-items: center !important;
  }

  .toast-item {
    max-width: 360px !important;
    width: 100% !important;
    font-size: 0.8rem !important;
    padding: 0.65rem 1rem !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Footer on Mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Bold heading on mobile */
  .hero-headline,
  .section-title,
  .card-title,
  .game-hub-title {
    font-weight: 900;
    letter-spacing: 0.01em;
  }

  /* [V28-01] Paksa konten tombol WA center di mobile */
  .modal-footer-actions .btn,
  .pay-cta-wrapper .btn,
  .btn-contact-wa,
  .feedback-submit-btn,
  .btn-buy-now-solid,
  .btn-credit-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }

  /* Pastikan span text juga center saat wrapping */
  .modal-footer-actions .btn > span,
  .pay-cta-wrapper .btn > span,
  .btn-contact-wa > span,
  .feedback-submit-btn > span {
    text-align: center !important;
    flex-grow: 0 !important;
    flex-shrink: 1 !important;
  }

  /* [V28-02] Tombol modal detail — center rapi */
  #modalBtnBuyNow,
  #modalBtnCredit,
  #termsSubmitWABtn,
  #termsBackBtn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* [V28-04] Mobile navbar shrink parallax */
  .navbar-sticky.scrolled {
    transform: scaleY(0.96);
  }

  .navbar-sticky.scrolled .nav-container {
    padding: 0.65rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  /* [QA-01] Navbar padding konsisten sejajar dengan .container di mobile <=480px */
  .nav-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .navbar-sticky.scrolled .nav-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  /* [QA-02] Testimonials slider negative margin sesuai padding container */
  .testimonials-scroll-wrapper {
    margin: 0 -0.85rem !important;
    padding: 0 0.85rem !important;
  }

  /* [QA-03] Padding kartu kalkulator lebih nyaman di layar <=480px */
  .calculator-card,
  .calc-how-card {
    padding: 1.15rem 0.85rem !important;
  }

  .hero-headline {
    font-size: 1.85rem !important;
  }

  .product-grid, .skeleton-grid {
    gap: 0.5rem !important;
  }

  .card-body {
    padding: 0.55rem !important;
  }

  .card-title {
    font-size: 0.78rem !important;
  }

  .card-price {
    font-size: 0.95rem !important;
  }

  .btn-view-detail {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.45rem !important;
    min-height: 40px !important;
  }
}

/* [FX-17] Mode hemat efek untuk perangkat low-end */
.reduce-fx .particle-canvas {
  display: none !important;
}

.reduce-fx .product-card:hover,
.reduce-fx .game-hub-card:hover {
  transform: none;
}

/* ==========================================================================
   BANNER PROMO AKUN PREMIUM (BERANDA)
   ========================================================================== */
.promo-banner-section {
  padding: 1.5rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.promo-banner-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--bg-body) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.75rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6),
              0 0 20px -5px rgba(245, 158, 11, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.promo-banner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.75),
              0 0 28px -4px rgba(245, 158, 11, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.promo-banner-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, rgba(245, 158, 11, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.promo-banner-content {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.promo-kicker {
  display: inline-block;
  font-family: var(--font-kicker);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blade-gold, #f59e0b);
}

.promo-headline {
  font-family: var(--font-gaming);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin: 0;
  letter-spacing: 0.02em;
}

.promo-desc {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.975rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.55;
}

.promo-banner-action {
  flex-shrink: 0;
  z-index: 1;
}

.promo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-gaming);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
}

.promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.55);
}

.promo-btn-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s ease;
}

.promo-cta-btn:hover .promo-btn-arrow {
  transform: translateX(4px);
}

/* Light mode overrides */

@media (max-width: 768px) {
  .promo-banner-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
    gap: 1.35rem;
  }

  .promo-headline {
    font-size: 1.45rem;
  }

  .promo-desc {
    font-size: 0.9rem;
  }

  .promo-banner-action {
    width: 100%;
  }

  .promo-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }
}

/* ==========================================================================
   [TS-02] TESTIMONIALS — CSS-ONLY SCROLL SNAP
   ========================================================================== */

.testimonials-section {
  padding: 3.5rem 0;
  overflow: hidden;
}

.testimonials-scroll-wrapper {
  position: relative;
  margin: 0 -1.25rem; /* Full-bleed di mobile */
  padding: 0 1.25rem;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.testimonials-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Keyboard focus */
.testimonials-track:focus-visible {
  outline: 2px solid var(--blade-gold);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* [TS-03] Testimonial Card */
.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.testimonial-quote-icon {
  position: absolute;
  top: -8px;
  left: 1.5rem;
  font-family: var(--font-gaming);
  font-size: 4rem;
  font-weight: 900;
  color: var(--blade-gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gaming);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.testimonial-rating {
  display: flex;
  gap: 0.15rem;
}

.star {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.star.filled {
  color: var(--blade-gold);
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* [TS-04] Scroll Hint */
.testimonials-hint {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  animation: hintPulse 2s infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Sembunyikan hint di desktop */
@media (min-width: 992px) {
  .testimonials-hint {
    display: none;
  }
}

/* [TS-05] Desktop: tampilkan lebih banyak kartu */
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 380px;
  }
}

/* [TS-06] [PX-04] Fix 480px testimonial card — kalah !important dari 768px */
@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 280px !important;
    padding: 1.5rem 1.25rem 1.25rem !important;
  }

  .testimonial-text {
    font-size: 0.875rem;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* [TS-07] Light Theme */

/* ==========================================================================
   [FB-04] FEEDBACK REACTIONS SECTION (PURE CSS)
   ========================================================================== */

.feedback-section {
  margin-top: 3.5rem;
  padding-top: 2rem;
}

.feedback-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.feedback-reactions-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.feedback-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  max-width: 720px;
}

.feedback-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out-expo);
  min-width: 72px;
  min-height: 88px;
}

.feedback-option:hover {
  transform: translateY(-4px);
}

.feedback-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  margin: 0;
}

.feedback-option input[type="radio"]:focus-visible ~ .feedback-face {
  outline: 2px solid var(--blade-gold);
  outline-offset: 4px;
  border-radius: 50%;
}

.feedback-face {
  width: 60px;
  height: 60px;
  transition: transform 0.3s var(--ease-out-expo), filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-face svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.face-bg {
  fill: var(--bg-input);
  stroke: var(--border-medium);
  stroke-width: 2;
  transition: all 0.3s ease;
}

.eye, .eye-heart {
  fill: var(--text-muted);
  transition: all 0.3s ease;
}

.brow, .mouth {
  stroke: var(--text-muted);
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  transition: all 0.3s ease;
}

.mouth-love {
  fill: var(--text-muted);
  stroke: none;
}

.feedback-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  max-width: 76px;
  line-height: 1.25;
}

.feedback-option:hover .feedback-face {
  transform: scale(1.12);
}

.feedback-option:hover .face-bg {
  stroke: var(--blade-gold);
  fill: var(--blade-gold-subtle);
}

/* Checked States */
.feedback-option input[value="angry"]:checked ~ .feedback-face {
  transform: scale(1.18);
  filter: drop-shadow(0 0 12px rgba(211, 47, 47, 0.7));
  animation: shake-face 0.4s ease-in-out;
}
.feedback-option input[value="angry"]:checked ~ .feedback-face .face-bg {
  fill: rgba(211, 47, 47, 0.2);
  stroke: var(--primary-red);
}
.feedback-option input[value="angry"]:checked ~ .feedback-face .eye,
.feedback-option input[value="angry"]:checked ~ .feedback-face .brow,
.feedback-option input[value="angry"]:checked ~ .feedback-face .mouth {
  stroke: var(--primary-red);
}

.feedback-option input[value="sad"]:checked ~ .feedback-face {
  transform: scale(1.18);
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}
.feedback-option input[value="sad"]:checked ~ .feedback-face .face-bg {
  fill: rgba(59, 130, 246, 0.2);
  stroke: #3b82f6;
}
.feedback-option input[value="sad"]:checked ~ .feedback-face .eye,
.feedback-option input[value="sad"]:checked ~ .feedback-face .mouth {
  stroke: #3b82f6;
}

.feedback-option input[value="neutral"]:checked ~ .feedback-face {
  transform: scale(1.18);
  filter: drop-shadow(0 0 12px rgba(148, 163, 184, 0.5));
}
.feedback-option input[value="neutral"]:checked ~ .feedback-face .face-bg {
  fill: rgba(148, 163, 184, 0.2);
  stroke: #94a3b8;
}
.feedback-option input[value="neutral"]:checked ~ .feedback-face .eye,
.feedback-option input[value="neutral"]:checked ~ .feedback-face .mouth {
  stroke: #94a3b8;
}

.feedback-option input[value="good"]:checked ~ .feedback-face {
  transform: scale(1.18);
  filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.65));
  animation: bounce-face 0.5s var(--ease-out-expo);
}
.feedback-option input[value="good"]:checked ~ .feedback-face .face-bg {
  fill: rgba(16, 185, 129, 0.2);
  stroke: var(--accent-emerald);
}
.feedback-option input[value="good"]:checked ~ .feedback-face .eye,
.feedback-option input[value="good"]:checked ~ .feedback-face .mouth {
  stroke: var(--accent-emerald);
}

.feedback-option input[value="love"]:checked ~ .feedback-face {
  transform: scale(1.22);
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.8));
  animation: pulse-heart 0.6s ease-in-out;
}
.feedback-option input[value="love"]:checked ~ .feedback-face .face-bg {
  fill: rgba(245, 158, 11, 0.22);
  stroke: var(--blade-gold);
}
.feedback-option input[value="love"]:checked ~ .feedback-face .eye-heart,
.feedback-option input[value="love"]:checked ~ .feedback-face .mouth-love {
  fill: var(--blade-gold);
}

.feedback-option input:checked ~ .feedback-label {
  color: var(--text-main);
  font-weight: 800;
}

/* Animations */
@keyframes shake-face {
  0%, 100% { transform: scale(1.18) translateX(0); }
  25% { transform: scale(1.18) translateX(-4px); }
  75% { transform: scale(1.18) translateX(4px); }
}

@keyframes bounce-face {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1.18); }
}

@keyframes pulse-heart {
  0% { transform: scale(1); }
  30% { transform: scale(1.35); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1.22); }
}

/* Thank You Box */
.feedback-thanks {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-hover);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s var(--ease-out-expo), max-height 0.5s var(--ease-out-expo), padding 0.3s ease, margin 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.feedback-section:has(input[name="feedbackRating"]:checked) .feedback-thanks {
  opacity: 1;
  max-height: 400px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.thanks-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: thanksPop 0.5s var(--ease-out-expo);
}

@keyframes thanksPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-title {
  font-family: var(--font-gaming);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blade-gold);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.thanks-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.feedback-submit-btn {
  display: inline-flex;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* Light Theme Override */

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .feedback-option input:checked ~ .feedback-face {
    animation: none !important;
  }
}

/* ==========================================================================
   [V27-14 .. V27-17] MOBILE ULTRA-COMPACT LAYOUT FIXES (≤380px / 320px)
   ========================================================================== */

@media (max-width: 380px) {
  /* [V4.5] Task 3b: Cek Padding di Ultra Small (≤380px) */
  .nav-container {
    padding: 0.55rem 0.75rem;
  }

  /* [V30-03] [V28-04] Ultra small mobile navbar shrink */
  .navbar-sticky.scrolled {
    transform: scaleY(0.97);
  }

  .navbar-sticky.scrolled .nav-container {
    padding: 0.55rem 0.75rem;
  }

  .brand-logo {
    gap: 0.45rem;
  }

  .logo-shield {
    width: 1.85rem;
    height: 1.85rem;
  }

  .logo-svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .logo-brand {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }

  .brand-logo-text--mobile .logo-brand {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  /* Sembunyikan badge verifikasi di HP kecil untuk hemat ruang */
  .badge-verif-mini {
    display: none;
  }

  .nav-actions {
    gap: 0.3rem;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }

  .btn-wa-nav {
    width: auto;
    height: 34px;
    padding: 0 0.55rem;
    gap: 0.25rem;
  }

  .wa-label-mobile {
    font-size: 0.68rem;
  }

  /* [V27-15] Feedback emoji compact di HP kecil */
  .feedback-options {
    padding: 0.65rem 0.25rem !important;
    gap: 0.15rem !important;
  }

  .feedback-option {
    min-height: 62px !important;
    padding: 0.15rem !important;
  }

  .feedback-face {
    width: 36px !important;
    height: 36px !important;
  }

  .feedback-label {
    font-size: 0.55rem !important;
    max-width: 50px !important;
    line-height: 1.1 !important;
  }

  /* [V27-16] Product grid di HP kecil */
  .product-grid, .skeleton-grid {
    gap: 0.4rem !important;
  }


  .card-body {
    padding: 0.5rem !important;
  }

  .card-title {
    font-size: 0.75rem !important;
    height: 2.4em !important;
  }

  .card-price {
    font-size: 0.9rem !important;
  }

  .btn-view-detail {
    font-size: 0.68rem !important;
    padding: 0.38rem 0.4rem !important;
    min-height: 40px !important;
  }

  /* [V27-17] Container padding di HP kecil */
  .container {
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
  }

  /* [QA-04] Testimonials slider negative margin sesuai padding container di HP kecil */
  .testimonials-scroll-wrapper {
    margin: 0 -0.7rem !important;
    padding: 0 0.7rem !important;
  }

  .section {
    padding: 1.75rem 0 !important;
  }

  /* [V28-03] HP kecil — gap tombol WA lebih rapat */
  .modal-footer-actions .btn,
  .pay-cta-wrapper .btn,
  .btn-contact-wa,
  .feedback-submit-btn {
    gap: 0.4rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}

/* ==========================================================================
   [V29-04] EFEK KILAU BERJALAN (SHINE SWEEP) PADA SEMUA TOMBOL CTA
   ========================================================================== */
.btn-wa-nav,
.btn-wa-hero,
.btn-wa-full,
.btn-buy-now-solid,
.btn-contact-wa,
.feedback-submit-btn,
.pay-cta-btn.btn-wa-nav,
.btn-terms-submit,
.btn-gold,
.btn-outline-gold,
.btn-credit-outline,
.btn-view-detail {
  position: relative;
  overflow: hidden;
}

.btn-wa-nav::after,
.btn-wa-hero::after,
.btn-wa-full::after,
.btn-buy-now-solid::after,
.btn-contact-wa::after,
.feedback-submit-btn::after,
.pay-cta-btn.btn-wa-nav::after,
.btn-terms-submit::after,
.btn-gold::after,
.btn-outline-gold::after,
.btn-credit-outline::after,
.btn-view-detail::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--shine-color, rgba(255, 255, 255, 0.4)) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shineSweep 3.5s infinite;
  animation-delay: var(--shine-delay, 0s);
  pointer-events: none;
  z-index: 2;
}

.btn-wa-nav:hover::after,
.btn-wa-hero:hover::after,
.btn-wa-full:hover::after,
.btn-buy-now-solid:hover::after,
.btn-contact-wa:hover::after,
.feedback-submit-btn:hover::after,
.pay-cta-btn.btn-wa-nav:hover::after,
.btn-terms-submit:hover::after,
.btn-gold:hover::after,
.btn-outline-gold:hover::after,
.btn-credit-outline:hover::after,
.btn-view-detail:hover::after {
  animation-duration: 1.5s;
}

/* Specific button shine colors & delays */
.btn-wa-nav,
.btn-wa-hero,
.btn-wa-full,
.btn-contact-wa,
.pay-cta-btn.btn-wa-nav,
.btn-terms-submit {
  --shine-color: rgba(212, 255, 226, 0.55);
  --shine-delay: 0.2s;
}

.btn-gold {
  --shine-color: rgba(255, 245, 200, 0.7);
  --shine-delay: 0.5s;
}

.btn-outline-gold,
.btn-credit-outline {
  --shine-color: rgba(245, 158, 11, 0.35);
  --shine-delay: 0.75s;
}

/* [V30-05] Penyesuaian warna shine effect di light mode */

.btn-buy-now-solid,
.feedback-submit-btn,
.btn-view-detail {
  --shine-color: rgba(255, 255, 255, 0.4);
  --shine-delay: 0s;
}

@keyframes shineSweep {
  0% {
    left: -150%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    left: 150%;
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

/* Safeguard: prefers-reduced-motion & reduce-fx */
@media (prefers-reduced-motion: reduce) {
  .btn-wa-nav::after,
  .btn-wa-hero::after,
  .btn-wa-full::after,
  .btn-buy-now-solid::after,
  .btn-contact-wa::after,
  .feedback-submit-btn::after,
  .pay-cta-btn.btn-wa-nav::after,
  .btn-terms-submit::after,
  .btn-gold::after,
  .btn-outline-gold::after,
  .btn-credit-outline::after,
  .btn-view-detail::after {
    animation: none !important;
    display: none !important;
  }
}

.reduce-fx .btn-wa-nav::after,
.reduce-fx .btn-wa-hero::after,
.reduce-fx .btn-wa-full::after,
.reduce-fx .btn-buy-now-solid::after,
.reduce-fx .btn-contact-wa::after,
.reduce-fx .feedback-submit-btn::after,
.reduce-fx .pay-cta-btn.btn-wa-nav::after,
.reduce-fx .btn-terms-submit::after,
.reduce-fx .btn-gold::after,
.reduce-fx .btn-outline-gold::after,
.reduce-fx .btn-credit-outline::after,
.reduce-fx .btn-view-detail::after {
  animation: none !important;
  display: none !important;
}

/* ==========================================================================
   [KC-03] HALAMAN KALKULATOR PRIME & CEK HARGA PRIME
   ========================================================================== */
.calculators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  /* [V36-01] Jarak grid ke banner promo di bawahnya dijaga konsisten 2rem */
  margin-bottom: 2rem;
}

/* [V36-01] Banner promo akun premium di halaman kalkulator (di luar .calculators-grid) */
.promo-banner-section.calc-promo-section {
  padding: 0 0 2rem;
}

.promo-banner-section.calc-promo-section + .calc-how-section {
  margin-top: 0;
}

.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.calculator-card.full-width {
  grid-column: 1 / -1;
}

.calculator-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Garis aksen gradient merah-ke-emas 3px di atas kartu */
.calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d32f2f 0%, #f59e0b 100%);
  z-index: 2;
}

.calc-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

/* [KC-09] Icon wrapper lingkaran berdiameter 4rem dengan border emas tipis */
.calc-icon-badge {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid rgba(245, 158, 11, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blade-gold);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

/* [KC-10] Ukuran ikon 2.5rem */
.calc-icon-svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: currentColor;
}

.calc-icon-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.35));
  transition: transform 0.25s ease;
}

.calculator-card:hover .calc-icon-img {
  transform: scale(1.08);
}

.calc-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.calc-kicker {
  font-family: var(--font-kicker);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.calc-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* [KC-11] Deskripsi singkat kartu bergaya italic */
.calc-card-desc {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.calc-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.calc-input,
.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.calc-input:focus,
.form-control:focus {
  border-color: var(--blade-gold);
  box-shadow: 0 0 16px var(--blade-gold-subtle);
}

.calc-select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.calc-select:focus {
  border-color: var(--blade-gold);
  box-shadow: 0 0 16px var(--blade-gold-subtle);
}

.btn-full {
  width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.6rem !important;
  padding: 0.85rem 1.5rem !important;
}

.calc-btn-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.calc-subtext {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: -0.25rem 0 0.25rem;
}

/* [KC-12] Info rate dalam kotak berborder putus-putus emas */
.calc-rate-box {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blade-gold);
  border: 1px dashed rgba(245, 158, 11, 0.5);
  background: var(--blade-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.calc-error-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(211, 47, 47, 0.12);
  border: 1px solid rgba(211, 47, 47, 0.45);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #ff6b6b;
  font-size: 0.875rem;
  font-weight: 600;
  animation: pageFadeSlideIn 0.3s ease-out;
}

.calc-err-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  stroke: #ff6b6b;
}

/* [KC-08] Animasi fadeInSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-result-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
  animation: fadeInSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.calc-result-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blade-gold);
}

.calc-order-btn {
  width: 100% !important;
  justify-content: center !important;
  margin-top: 0.5rem;
}

.calc-info-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.calc-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-info-row.total-row {
  border-bottom: none;
  padding-top: 0.75rem;
}

.calc-info-name {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.calc-info-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.calc-level-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--blade-gold);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
}

/* Section Cara Kerja Kalkulator */
.calc-how-section {
  margin-top: 1rem;
}

.calc-how-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.calc-how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d32f2f 0%, #f59e0b 100%);
}

/* Responsive Kalkulator */
@media (max-width: 992px) {
  .calculators-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .calculator-card,
  .calc-how-card {
    padding: 1.35rem 1.1rem !important;
  }

  .calc-card-title {
    font-size: 1.45rem !important;
  }

  .calc-result-value {
    font-size: 1.85rem !important;
  }
}

@media (max-width: 380px) {
  .calculator-card,
  .calc-how-card {
    padding: 1.15rem 0.85rem !important;
  }

  .calc-icon-badge {
    width: 2.75rem;
    height: 2.75rem;
  }

  .calc-icon-svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .calc-icon-img {
    width: 1.65rem;
    height: 1.65rem;
  }

  .calc-card-title {
    font-size: 1.25rem !important;
  }

  .calc-result-value {
    font-size: 1.6rem !important;
  }
}

/* Light Theme Overrides untuk Kalkulator */

/* ========================================================================== */
/* [IDR-01] REGION & CURRENCY BADGE PILL (ID / IDR)                           */
/* ========================================================================== */
.currency-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 38px;
  padding: 0 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blade-gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

.currency-badge-pill:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
  transform: translateY(-1px);
}

.flag-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 14px;
  border-radius: 2.5px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  vertical-align: middle;
}

.flag-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.currency-text-val {
  line-height: 1;
}

/* [IDR-01m] Mobile Drawer Currency Indicator */
.mobile-currency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  font-size: 0.825rem;
  color: var(--text-muted);
  text-align: center;
}

.mobile-currency-row strong {
  color: var(--blade-gold);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* ========================================================================== */
/* [IDR-02] SERVER ID & KURS IDR INFO BAR (KALKULATOR)                        */
/* ========================================================================== */
.calc-region-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.calc-region-badge,
.calc-currency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-main);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
}

.calc-region-badge:hover,
.calc-currency-badge:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
}

.calc-badge-text {
  line-height: 1;
}

.badge-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: badgeDotPulse 2s infinite ease-in-out;
}

@keyframes badgeDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.currency-icon-svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--blade-gold);
  flex-shrink: 0;
}

/* ========================================================================== */
/* [IDR-03] RESPONSIVE & LIGHT THEME OVERRIDES                                */
/* ========================================================================== */
@media (max-width: 768px) {
  .calc-region-bar {
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }

  .calc-region-badge,
  .calc-currency-badge {
    padding: 0.45rem 0.95rem;
    font-size: 0.825rem;
  }
}

@media (max-width: 380px) {
  .currency-badge-pill {
    height: 32px;
    padding: 0 0.45rem;
    gap: 0.3rem;
  }

  .flag-wrapper {
    width: 16px;
    height: 11px;
  }

  .currency-text-val {
    font-size: 0.72rem;
  }

  .calc-region-bar {
    gap: 0.45rem;
    margin-bottom: 1.25rem;
  }

  .calc-region-badge,
  .calc-currency-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* Light Theme Overrides */

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .badge-dot-live {
    animation: none;
  }
}
.reduce-fx .badge-dot-live {
  animation: none;
}

/* ==========================================================================
   [MP-04] METODE PEMBAYARAN: GRID STATIS RESPONSIF & LOGO GRAFIS
   ========================================================================== */

/* Grid Statis Responsif: 4 Kolom di Desktop (>992px), Gap Seragam 0.75rem */
.pay-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
}

/* Kartu Logo Item */
.pay-logo-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: default;
  user-select: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

/* Hover: Border Emas & Glow Konsisten */
.pay-logo-item:hover {
  border-color: var(--blade-gold);
  box-shadow: 0 0 12px var(--blade-gold-subtle);
  transform: translateY(-2px);
}

/* Logo SVG, IMG, & Fallback Styling */
.pay-logo-svg,
.pay-logo-img,
.pay-logo-fallback {
  height: 1.75rem;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  color: var(--text-main);
  transition: filter var(--transition-fast);
}

.pay-logo-img {
  border-radius: var(--radius-sm);
}

.pay-logo-img,
.game-logo-img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.pay-logo-item img[alt="SeaBank"],
.pay-logo-item img[src*="seabank"] {
  height: 1.75rem;
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 576px) {
  .pay-logo-item img[alt="SeaBank"],
  .pay-logo-item img[src*="seabank"] {
    height: 1.5rem;
  }
}

/* COD Custom Item (Truk SVG + COD Teks) */
.pay-logo-cod {
  padding: 0.5rem 0.85rem;
}

.cod-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.cod-truck-svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--blade-gold);
  flex-shrink: 0;
}

.cod-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.cod-main-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.cod-area-pill {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Responsif: Tablet (<=992px) -> 3 Kolom */
@media (max-width: 992px) {
  .pay-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsif: Mobile (<=576px) -> 2 Kolom */
@media (max-width: 576px) {
  .pay-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pay-logo-item {
    height: 3.25rem;
    padding: 0.5rem 0.75rem;
  }

  .pay-logo-svg,
  .pay-logo-img {
    height: 1.5rem;
  }

  .cod-truck-svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .cod-main-text {
    font-size: 1rem;
  }

  .cod-area-pill {
    font-size: 0.6rem;
  }
}

/* [MP-05] Light Mode Overrides */

/* ==========================================================================
   [VB-01] BANNER VIDEO UTAMA (16:9 FULL & ROUNDED - NO BACKGROUND)
   ========================================================================== */
.video-banner-section {
  position: relative;
  width: calc(100% - 2.5rem);
  max-width: var(--container-max);
  margin: 1.5rem auto 0.75rem;
  border-radius: 20px !important;
  clip-path: inset(0 round 20px) !important;
  -webkit-clip-path: inset(0 round 20px) !important;
  overflow: hidden !important;
  isolation: isolate;
  transform: translateZ(0) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block;
}

.video-banner-section video,
.video-banner-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 20px !important;
  clip-path: inset(0 round 20px) !important;
  -webkit-clip-path: inset(0 round 20px) !important;
  transform: translateZ(0) !important;
  border: none !important;
  outline: none !important;
}

/* ==========================================================================
   [MB-01] BANNER PROMOSI BERJALAN (FLOATING MARQUEE TICKER CARD)
   ========================================================================== */
.marquee-banner-section {
  width: calc(100% - 2.5rem);
  max-width: var(--container-max);
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  clip-path: inset(0 round 20px);
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  background: var(--blade-gold);
  background-color: var(--blade-gold);
  color: var(--bg-body);
  position: relative;
  padding: 0.8rem 0;
  display: flex;
  user-select: none;
  z-index: 2;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 45s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg-body);
}

.marquee-item {
  display: inline-block;
  padding: 0 0.45rem;
}

.marquee-bullet {
  display: inline-block;
  padding: 0 0.8rem;
  font-weight: 900;
  opacity: 0.55;
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .video-banner-section {
    width: calc(100% - 2rem);
    margin: 1.25rem auto 0.65rem;
    border-radius: 14px !important;
    clip-path: inset(0 round 14px) !important;
    -webkit-clip-path: inset(0 round 14px) !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
  }

  .video-banner-section video,
  .video-banner-media {
    border-radius: 14px !important;
    clip-path: inset(0 round 14px) !important;
    -webkit-clip-path: inset(0 round 14px) !important;
    transform: translateZ(0) !important;
  }

  .marquee-banner-section {
    width: calc(100% - 2rem);
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    clip-path: inset(0 round 14px);
    transform: translateZ(0);
    padding: 0.6rem 0;
  }

  .marquee-group {
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
  }

  .marquee-bullet {
    padding: 0 0.6rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .video-banner-section {
    width: calc(100% - 1.7rem);
    margin: 1rem auto 0.5rem;
    border-radius: 12px !important;
    clip-path: inset(0 round 12px) !important;
    -webkit-clip-path: inset(0 round 12px) !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
  }

  .video-banner-section video,
  .video-banner-media {
    border-radius: 12px !important;
    clip-path: inset(0 round 12px) !important;
    -webkit-clip-path: inset(0 round 12px) !important;
    transform: translateZ(0) !important;
  }

  .marquee-banner-section {
    width: calc(100% - 1.7rem);
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    clip-path: inset(0 round 12px);
    transform: translateZ(0);
  }
}

@media (max-width: 380px) {
  .video-banner-section {
    width: calc(100% - 1.4rem) !important;
    margin: 0.85rem auto 0.5rem !important;
    border-radius: 10px !important;
    clip-path: inset(0 round 10px) !important;
    -webkit-clip-path: inset(0 round 10px) !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
  }

  .video-banner-section video,
  .video-banner-media {
    border-radius: 10px !important;
    clip-path: inset(0 round 10px) !important;
    -webkit-clip-path: inset(0 round 10px) !important;
    transform: translateZ(0) !important;
  }

  .marquee-banner-section {
    width: calc(100% - 1.4rem) !important;
    margin: 0 auto 1rem !important;
    border-radius: 10px !important;
    clip-path: inset(0 round 10px) !important;
    transform: translateZ(0) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 60s;
  }
}

.reduce-fx .marquee-track {
  animation: none;
}

/* Light Mode Overrides for Marquee */

/* ========================================================================== */
/* [V31-01] MOBILE POLISH — KONTAK ADMIN & TOMBOL WHATSAPP CTA (<=768px)      */
/* ========================================================================== */
@media (max-width: 768px) {
  /* [V31-01a] Kontak Admin — label di atas, nilai di bawah (rapi, tidak berebut ruang) */
  .admin-meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .meta-value {
    text-align: left;
  }

  /* [V31-01b] Tombol WhatsApp halaman Tata Cara Pembayaran (Cash / Cicil / COD)
     — override global `.btn-wa-nav span { display: none; }` agar teks tampil penuh */
  .pay-cta-wrapper .btn-wa-nav,
  .pay-cta-btn {
    width: 100% !important;
    height: auto !important;
    padding: 0.85rem 1.5rem !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.6rem !important;
  }

  .pay-cta-wrapper .btn-wa-nav span,
  .pay-cta-btn span {
    display: inline-block !important;
    font-size: 0.9rem !important;
    white-space: normal !important;
  }

  /* [V31-01c] Tombol "Lanjut ke WhatsApp" pada step S&K modal checkout
     — full-width, center, dan teks tetap terlihat */
  /* Satu kolom agar tombol WA benar-benar full-width (selaras dengan aturan ≤480px) */
  .modal-footer-actions {
    grid-template-columns: 1fr !important;
  }

  .modal-footer-actions .btn-wa-nav,
  #termsSubmitWABtn {
    width: 100% !important;
    height: auto !important;
    padding: 0.75rem 1rem !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .modal-footer-actions .btn-wa-nav span,
  #termsSubmitWABtn span {
    display: inline-block !important;
    font-size: 0.875rem !important;
    white-space: normal !important;
  }
}

/* ========================================================================== */
/* [V31-02] LIGHT MODE — BERSIHKAN WARNA MERAH DI TEPI VIEWPORT              */
/* ========================================================================== */
/* Border bawah + glow navbar scrolled — ganti merah jadi emas */

/* Sheen navbar — hilangkan komponen merah di tepi atas viewport */

/* ========================================================================== */
/* [V32-01] LIGHT MODE — BACKGROUND RATA DARI ATAS KE BAWAH                   */
/* ========================================================================== */
/* Hero banner — hilangkan gradient dan overlay agar background menyatu rata */

/* Section flash sale — transparan tanpa gradient vertikal */

/* ========================================================================== */
/* [NEW] Ham6 Animated Hamburger Menu (FreeFrontend)                          */
/* ========================================================================== */
.hamburger-btn-svg {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-main);
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham6 .top {
  stroke-dasharray: 40 172;
}
.ham6 .middle {
  stroke-dasharray: 40 111;
}
.ham6 .bottom {
  stroke-dasharray: 40 172;
}
.ham6.active .top {
  stroke-dashoffset: -132px;
}
.ham6.active .middle {
  stroke-dashoffset: -71px;
}
.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

/* Tampilkan tombol ini di mobile & tablet (<=991px) */
@media (max-width: 991px) {
  .hamburger-btn-svg {
    display: inline-flex;
  }
}

/* Light Mode Override */

/* ========================================================================== */
/* [V40-01] YELLOW DOTS BACKGROUND EFFECT (DARK & LIGHT THEMES)              */
/* ========================================================================== */
.yellow-dots-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* Multiple radial gradients untuk membuat pola titik-titik kuning */
  background-image:
    radial-gradient(circle at 15% 25%, rgba(245, 158, 11, 0.55) 1.5px, transparent 2px),
    radial-gradient(circle at 42% 68%, rgba(253, 224, 71, 0.45) 1px, transparent 1.8px),
    radial-gradient(circle at 78% 12%, rgba(245, 158, 11, 0.5) 2px, transparent 2.5px),
    radial-gradient(circle at 88% 82%, rgba(253, 224, 71, 0.35) 1.2px, transparent 2px),
    radial-gradient(circle at 25% 88%, rgba(245, 158, 11, 0.4) 1.8px, transparent 2.3px),
    radial-gradient(circle at 62% 42%, rgba(253, 224, 71, 0.5) 1.3px, transparent 2px),
    radial-gradient(circle at 8% 65%, rgba(245, 158, 11, 0.35) 1px, transparent 1.7px),
    radial-gradient(circle at 52% 5%, rgba(253, 224, 71, 0.45) 1.5px, transparent 2.2px);
  background-size: 100% 100%;
  animation: yellowDotsPulse 8s ease-in-out infinite alternate;
  opacity: 0.85;
}

/* Subtle "shimmer" animation — titik-titik berkedip pelan bergantian */
@keyframes yellowDotsPulse {
  0% { opacity: 0.55; filter: brightness(0.9); }
  50% { opacity: 0.95; filter: brightness(1.15); }
  100% { opacity: 0.7;  filter: brightness(1); }
}

/* Light mode — warna kuning keemasan cerah */

/* Pause animation saat tab inactive */
body.tab-hidden .yellow-dots-bg {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .yellow-dots-bg { animation: none; }
}
.reduce-fx .yellow-dots-bg { animation: none; }

/* ========================================================================== */
/* [V41-01] HALAMAN GARANSI RESMI (#page-garansi)                             */
/* ========================================================================== */

/* 8a. Hero Section Garansi */
.guarantee-hero {
  position: relative;
  padding: 3rem 2rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  overflow: hidden;
  text-align: center;
}

.guarantee-hero-content {
  position: relative;
  z-index: 1;
}

.guarantee-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.guarantee-shield-badge {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.5),
              0 0 0 4px rgba(245, 158, 11, 0.15);
  animation: guaranteeShieldPulse 3s ease-in-out infinite;
}

.guarantee-shield-badge svg {
  width: 2.5rem;
  height: 2.5rem;
}

@keyframes guaranteeShieldPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.5), 0 0 0 4px rgba(245, 158, 11, 0.15); }
  50% { box-shadow: 0 0 60px rgba(245, 158, 11, 0.75), 0 0 0 8px rgba(245, 158, 11, 0.1); }
}

.guarantee-hero-title {
  font-family: var(--font-gaming);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-main);
  margin: 1rem 0 0.75rem;
}

.guarantee-hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.guarantee-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blade-gold);
}

.guarantee-pill strong {
  font-family: var(--font-gaming);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blade-gold-light);
}

/* 8b. Cakupan Proteksi (Scope Cards) */
.guarantee-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guarantee-scope-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.guarantee-scope-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blade-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guarantee-scope-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.guarantee-scope-card:hover::before { opacity: 1; }

.guarantee-scope-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
}

.guarantee-scope-icon svg { width: 1.85rem; height: 1.85rem; }

.guarantee-icon-emerald { background: rgba(16, 185, 129, 0.12); color: #34d399; border-color: rgba(16, 185, 129, 0.35); }
.guarantee-icon-gold { background: rgba(245, 158, 11, 0.12); color: var(--blade-gold); border-color: rgba(245, 158, 11, 0.35); }
.guarantee-icon-cyan { background: rgba(6, 182, 212, 0.12); color: var(--accent-cyan); border-color: rgba(6, 182, 212, 0.35); }

.guarantee-scope-card h3 {
  font-family: var(--font-gaming);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.guarantee-scope-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8c. Prosedur Klaim (Claim Steps Timeline) */
.guarantee-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  counter-reset: step;
}

.guarantee-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blade-gold), var(--blade-gold), transparent);
  opacity: 0.35;
  z-index: 0;
}

.guarantee-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.guarantee-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  color: #ffffff;
  font-family: var(--font-gaming);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.4),
              0 0 0 4px var(--bg-body),
              0 0 0 5px rgba(245, 158, 11, 0.25);
  margin-bottom: 1.25rem;
}

.guarantee-step-content h4 {
  font-family: var(--font-gaming);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.guarantee-step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 8d. Syarat & Ketentuan (Terms Card) */
.guarantee-terms-card {
  position: relative;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, var(--bg-card) 60%);
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.guarantee-terms-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--blade-gold) 100%);
}

.guarantee-terms-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guarantee-terms-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b81;
  flex-shrink: 0;
}

.guarantee-terms-title {
  font-family: var(--font-gaming);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.guarantee-terms-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
}

.guarantee-terms-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.guarantee-terms-list li::before {
  content: '📝';
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.9rem;
  line-height: 1;
}

.guarantee-terms-list strong {
  color: var(--text-main);
  font-weight: 700;
}

/* 8e. CTA Section (Bantuan Langsung) */
.guarantee-cta-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-body) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}

.guarantee-cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(211, 47, 47, 0.25) 0%, rgba(245, 158, 11, 0.15) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.guarantee-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-cta-title {
  font-family: var(--font-gaming);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.03em;
  margin: 0.5rem 0;
}

.guarantee-cta-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.guarantee-cta-btn.btn-wa-nav {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

/* 8f. Light Mode Overrides */

/* 8g. Responsive Mobile */
@media (max-width: 992px) {
  .guarantee-scope-grid { grid-template-columns: 1fr; gap: 1rem; }
  .guarantee-steps { grid-template-columns: 1fr; gap: 0.5rem; }
  .guarantee-steps::before { display: none; }
  .guarantee-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 1rem; padding: 0.5rem 0; }
  .guarantee-step-num { width: 3rem; height: 3rem; font-size: 1.1rem; margin-bottom: 0; flex-shrink: 0; }
  .guarantee-step-content { padding-top: 0.25rem; }
}

@media (max-width: 768px) {
  .guarantee-hero { padding: 2rem 1.25rem; margin-bottom: 1rem; }
  .guarantee-shield-badge { width: 4rem; height: 4rem; margin-bottom: 1rem; }
  .guarantee-shield-badge svg { width: 2rem; height: 2rem; }
  .guarantee-hero-badges { flex-direction: column; align-items: center; }
  .guarantee-pill { width: 100%; max-width: 260px; justify-content: center; }
  .guarantee-scope-card { padding: 1.5rem 1.25rem; }
  .guarantee-scope-icon { width: 3rem; height: 3rem; }
  .guarantee-scope-card h3 { font-size: 1.15rem; }
  .guarantee-terms-card { padding: 1.5rem 1.25rem; }
  .guarantee-terms-title { font-size: 1.25rem; }
  .guarantee-cta-card { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
  .guarantee-hero { padding: 1.75rem 1rem; }
  .guarantee-pill { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
  .guarantee-step-num { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
  .guarantee-terms-list li { font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
  .guarantee-shield-badge { animation: none; }
}
.reduce-fx .guarantee-shield-badge { animation: none; }




/* ============================================ */
/* DEMO CARD — GAP, ROUNDED, NO ZOOM            */
/* ============================================ */

/* Card header demo — padding + centered */
.product-card.product-card-demo .card-header-visual {
  background: var(--bg-surface);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gambar demo — contain + rounded + no zoom */
.product-card.product-card-demo .card-banner-img,
.product-card.product-card-demo .custom-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  border-radius: var(--radius-md);
  background: #0f1118;
  transition: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Fix: no zoom saat hover */
.product-card.product-card-demo:hover .card-banner-img,
.product-card.product-card-demo:hover .custom-banner-img {
  transform: none !important;
}

/* Fix: hover demo card sendiri lebih subtle */
.product-card.product-card-demo:hover {
  transform: translateY(-3px);
  border-color: var(--blade-gold);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

/* Desktop: batasi tinggi demo card */
@media (min-width: 769px) {
  .product-card.product-card-demo .card-header-visual {
    max-height: 280px;
  }
}

/* ============================================ */
/* MODAL BANNER DEMO — GAP, ROUNDED, NO PULSE   */
/* ============================================ */

.modal-header-visual .custom-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #0f1118;
  transition: none !important;
  animation: none !important;
}

.modal-header-visual .modal-banner-art-wrap.demo-mode {
  animation: none !important;
}


/* Text overflow ellipsis */
.card-title,
.card-ign-code,
.game-hub-title,
.news-title {
  overflow: hidden;
  text-overflow: ellipsis;
}


@media (max-width: 480px) {
  .container,
  .nav-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}


/* ============================================ */
/* ANIMATED CLOSE BUTTON                        */
/* ============================================ */

:root {
  --close-btn-size: 40px;
  --close-btn-bar-w: 4px;
  --close-btn-bar-h: 25px;
}

.animated-close-btn {
  display: block;
  width: var(--close-btn-size);
  height: var(--close-btn-size);
  position: relative;
  overflow: hidden;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  z-index: 20;
  transition: background 0.25s ease;
}

.animated-close-btn > div {
  position: relative;
}

.animated-close-btn .close-button-block {
  width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.animated-close-btn .close-button-block::before,
.animated-close-btn .close-button-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(55% - 4px);
  display: block;
  width: var(--close-btn-bar-w);
  height: var(--close-btn-bar-h);
  transform-origin: bottom center;
  background: #ffffff;
  transition: all ease-out 280ms;
  border-radius: 2px;
}

.animated-close-btn .close-button-block:last-of-type {
  transform: rotate(180deg);
}

.animated-close-btn .in .close-button-block::before {
  transition-delay: 280ms;
  transform: translateX(20px) translateY(-20px) rotate(45deg);
}

.animated-close-btn .in .close-button-block::after {
  transition-delay: 280ms;
  transform: translateX(-22px) translateY(-22px) rotate(-45deg);
}

.animated-close-btn .out {
  position: absolute;
  top: 0;
  left: 0;
}

.animated-close-btn .out .close-button-block::before {
  transform: translateX(-5px) translateY(5px) rotate(45deg);
}

.animated-close-btn .out .close-button-block::after {
  transform: translateX(5px) translateY(5px) rotate(-45deg);
}

.animated-close-btn:hover {
  background: rgba(211, 47, 47, 0.9);
}

.animated-close-btn:hover .in .close-button-block::before {
  transform: translateX(-5px) translateY(5px) rotate(45deg);
}

.animated-close-btn:hover .in .close-button-block::after {
  transform: translateX(5px) translateY(5px) rotate(-45deg);
}

.animated-close-btn:hover .out .close-button-block::before {
  transform: translateX(-20px) translateY(20px) rotate(45deg);
}

.animated-close-btn:hover .out .close-button-block::after {
  transform: translateX(20px) translateY(20px) rotate(-45deg);
}

/* Posisi di dalam modal */
.modal-card-dialog .animated-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .animated-close-btn {
    --close-btn-size: 36px;
    --close-btn-bar-w: 3.5px;
    --close-btn-bar-h: 22px;
  }

  .animated-close-btn .close-button-block {
    width: 36px;
    height: 18px;
  }

  .modal-card-dialog .animated-close-btn {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animated-close-btn .close-button-block::before,
  .animated-close-btn .close-button-block::after {
    transition: none !important;
  }
}


/* ============================================ */
/* GUARANTEE TABS — 3 JENIS GARANSI             */
/* ============================================ */

.guarantee-types-section {
  padding: 3.5rem 0;
}

/* Tab Nav */
.guarantee-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.guarantee-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  backdrop-filter: blur(8px);
}

.guarantee-tab-btn:hover:not(.active) {
  border-color: var(--border-gold-hover);
  color: var(--text-main);
  background: var(--bg-elevated);
  transform: translateY(-1px);
}

.guarantee-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--blade-gold) 100%);
  border-color: var(--blade-gold-light);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

.guarantee-tab-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.guarantee-tab-label {
  line-height: 1.2;
}

/* Tab Content */
.guarantee-tabs-content {
  position: relative;
}

.guarantee-tab-panel {
  display: none;
  animation: guaranteeFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee-tab-panel.active {
  display: block;
}

@keyframes guaranteeFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lead paragraph */
.guarantee-lead {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid var(--blade-gold);
  border-radius: var(--radius-sm);
}

.guarantee-lead strong {
  color: var(--text-main);
}

/* Sublist (nested ul) */
.guarantee-sublist {
  list-style: none;
  padding-left: 1.5rem;
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.guarantee-sublist li {
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.guarantee-sublist li::before {
  content: '›';
  position: absolute;
  left: -1rem;
  color: var(--blade-gold);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.guarantee-sublist li strong {
  color: var(--text-main);
}

/* Warning box */
.guarantee-warning-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.35);
  border-radius: var(--radius-md);
  position: relative;
}

.guarantee-warning-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-red);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.guarantee-warning-box strong {
  display: block;
  font-family: var(--font-gaming);
  font-size: 1rem;
  font-weight: 800;
  color: #ff6b81;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.guarantee-warning-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.guarantee-warning-box p strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  color: var(--text-main);
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .guarantee-types-section {
    padding: 2.25rem 0;
  }

  .guarantee-tabs-nav {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }

  .guarantee-tab-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .guarantee-tab-icon {
    font-size: 1rem;
  }

  .guarantee-lead {
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
  }

  .guarantee-sublist {
    padding-left: 1.25rem;
  }

  .guarantee-sublist li {
    font-size: 0.8125rem;
  }

  .guarantee-warning-box {
    padding: 1rem 1.15rem;
    margin-top: 1.5rem;
  }
}


/* ============================================ */
/* STOCK GAME MAGNET GLOW — WHITE SUBTLE        */
/* ============================================ */

@keyframes stockMagnetGlowWhite {
  0%, 100% {
    box-shadow: 
      0 0 0 1px rgba(255, 255, 255, 0.25),
      0 0 10px 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 
      0 0 0 1px rgba(255, 255, 255, 0.45),
      0 0 16px 1px rgba(255, 255, 255, 0.25);
  }
}

@keyframes stockMagnetShimmerWhite {
  0% {
    background-position: -150% 50%;
  }
  100% {
    background-position: 250% 50%;
  }
}

/* ---------- DESKTOP NAVBAR ---------- */
.nav-links .nav-link[data-page-target="stock"] {
  position: relative;
  color: #ffffff !important;
  font-weight: 800;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.16) 25%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.16) 75%,
    rgba(255, 255, 255, 0.06) 100%
  );
  background-size: 250% 100%;
  border-radius: var(--radius-sm);
  animation: 
    stockMagnetGlowWhite 4s ease-in-out infinite,
    stockMagnetShimmerWhite 6s linear infinite;
  transition: color 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.nav-links .nav-link[data-page-target="stock"]:hover {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.nav-links .nav-link[data-page-target="stock"].active {
  color: #ffffff !important;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.22) 25%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.22) 75%,
    rgba(255, 255, 255, 0.12) 100%
  );
  background-size: 250% 100%;
}

/* Sembunyikan underline merah default dari .nav-link.active::after */
.nav-links .nav-link[data-page-target="stock"].active::after {
  display: none !important;
}

/* ---------- MOBILE DRAWER ---------- */
.mobile-nav-drawer .mobile-nav-link[data-page-target="stock"] {
  position: relative;
  color: #ffffff !important;
  font-weight: 800;
  padding-left: 1rem !important;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.16) 25%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.16) 75%,
    rgba(255, 255, 255, 0.06) 100%
  );
  background-size: 250% 100%;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 0 12px rgba(255, 255, 255, 0.12),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
  animation: stockMagnetShimmerWhite 6s linear infinite;
  transition: color 0.3s ease, padding-left 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.mobile-nav-drawer .mobile-nav-link[data-page-target="stock"]:hover {
  color: #ffffff !important;
  padding-left: 1.25rem !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.mobile-nav-drawer .mobile-nav-link[data-page-target="stock"].active {
  color: #ffffff !important;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.22) 25%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.22) 75%,
    rgba(255, 255, 255, 0.14) 100%
  );
  background-size: 250% 100%;
  border-left-color: #ffffff;
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  .nav-links .nav-link[data-page-target="stock"],
  .mobile-nav-drawer .mobile-nav-link[data-page-target="stock"] {
    animation: none !important;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
}

.reduce-fx .nav-links .nav-link[data-page-target="stock"],
.reduce-fx .mobile-nav-drawer .mobile-nav-link[data-page-target="stock"] {
  animation: none !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
}


/* ============================================ */
/* AJUKAN NEED AKUN SECTION                     */
/* ============================================ */

.request-account-section {
  padding: 3rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.request-account-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-body) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}

.request-account-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(211, 47, 47, 0.25) 0%, rgba(245, 158, 11, 0.15) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.request-account-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.request-account-title {
  font-family: var(--font-gaming);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.03em;
  margin: 0.5rem 0;
}

.request-account-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.request-account-btn.btn-wa-nav {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .request-account-section {
    padding: 2.25rem 0;
  }

  .request-account-card {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .request-account-title {
    font-size: 1.35rem;
  }

  .request-account-desc {
    font-size: 0.875rem;
  }

  .request-account-btn.btn-wa-nav {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 380px) {
  .request-account-card {
    padding: 1.5rem 1rem;
  }

  .request-account-title {
    font-size: 1.2rem;
  }
}