
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&display=swap');

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    /* ==================================================
       TEMA & VARIABEL (Dijaga Utuh)
       ================================================== */
    :root {
      /* LIGHT THEME */
      --bg: #f3f4f6;
      --surface: #ffffff;
      --text-main: #111827;
      --text-muted: #6b7280;
      --accent: #3b82f6;
      --border: rgba(0, 0, 0, 0.06);
      --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      --overlay: rgba(0, 0, 0, 0.55);

      /* Brand DATZON */
      --brand-dat: #111827;
      --brand-zon: #111827;

      /* Variabel Dockbar (Tetap 100% Utuh) */
      --dock-height: 118px;
      --bar-top: 58px;
      --ring-size: 86px;
      --bubble-size: 68px;
      --center-x: 0px;
      --icon-offset: 0px;
      --ease: cubic-bezier(.22, 1, .36, 1);
      
      /* Dockbar Colors - Light */
      --dock: #ffffff;
      --ring: #e5e7eb;
      --icon: #4b5563;
      --active-icon: #3b82f6;

      /* Bubble Liquid Glass - Light iOS 26 Style */
      --bubble-bg: rgba(255, 255, 255, 0.4);
      --bubble-border: rgba(255, 255, 255, 0.6);
      --bubble-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    html[data-theme="dark"] {
      /* DARK THEME */
      --bg: #0e1621;
      --surface: #182533;
      --text-main: #f3f4f6;
      --text-muted: #9ca3af;
      --accent: #40a7e3;
      --border: rgba(255, 255, 255, 0.06);
      --shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      --overlay: rgba(14, 22, 33, 0.7);

      /* Brand DATZON */
      --brand-dat: #ffffff;
      --brand-zon: #ffffff;
      
      /* Dockbar Colors - Dark */
      --dock: #182533;
      --ring: #2b3b4e;
      --icon: #9ca3af;
      --active-icon: #40a7e3;

      /* Bubble Liquid Glass - Dark iOS 26 Style */
      --bubble-bg: rgba(255, 255, 255, 0.12);
      --bubble-border: rgba(255, 255, 255, 0.25);
      --bubble-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    body {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  background: var(--bg);
  background-attachment: fixed;
  color: var(--text-main);
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

    /* Mematikan interaksi dockbar saat sidebar aktif */
    body.sidebar-open .dock {
      pointer-events: none;
    }

    body.admin-security-scroll-locked {
      overflow: hidden !important;
      overscroll-behavior: none !important;
      touch-action: none;
    }

    /* ==================================================
       HEADER LAMA (Dijaga Utuh)
       ================================================== */
    header {
      position: fixed; top: 0; width: 100%; height: calc(60px + env(safe-area-inset-top)); padding-top: env(safe-area-inset-top);
      display: flex; align-items: center; justify-content: space-between; padding-inline: 16px; z-index: 100;
      background: var(--surface); border-bottom: 1px solid var(--border); transition: background-color 0.3s ease, border-color 0.3s ease;
    }
    .header-left, .header-right { display: flex; align-items: center; gap: 12px; z-index: 2; position: relative; }
    .header-right { position: static; }
    .icon-btn {
      background: none; border: none; color: var(--text-main); width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease;
    }
    .icon-btn:active { background: var(--border); transform: scale(0.95); }
    .icon-btn svg, .icon-btn img { pointer-events: none; }
    .header-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.5px; margin-left: 4px; display: flex; align-items: center; transition: opacity 0.3s ease, transform 0.3s ease; color: var(--text-main); }
    .header-title.hide { opacity: 0; transform: translateX(-10px); pointer-events: none; }
    .brand-dat { color: var(--brand-dat); transition: color 0.3s ease; }
    .brand-zon { color: var(--brand-zon); transition: color 0.3s ease; }

    .brand-main {
      color: var(--text-main);
      transition: color 0.3s ease;
      flex-shrink: 0;
    }

    .header-page-word {
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      margin-left: 6px;
      min-width: 0;
      white-space: nowrap;
      letter-spacing: -0.5px;
    }

    .header-page-word:not(.typed)::after {
      content: "";
      display: inline-block;
      width: 2px;
      height: 1em;
      margin-left: 2px;
      border-radius: 999px;
      background: currentColor;
      animation: headerTypeCaret 0.8s steps(1) infinite;
    }

    @keyframes headerTypeCaret {
      0%, 48% { opacity: 1; }
      49%, 100% { opacity: 0; }
    }

    /* ==================================================
       SEARCH LAMA (Dijaga Utuh)
       ================================================== */
    .search-wrapper {
      position: absolute; right: 56px; top: calc(50% + (env(safe-area-inset-top) / 2)); transform: translateY(-50%);
      width: 40px; height: 40px; border-radius: 20px; background: transparent; display: flex; align-items: center; overflow: hidden;
      transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; z-index: 10;
    }
    .search-wrapper.active { width: calc(100% - 112px); background: var(--bg); border: 1px solid var(--border); box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
    .search-toggle-btn { flex-shrink: 0; }
    .search-input {
      flex: 1; border: none; background: transparent; padding: 0; color: var(--text-main); font-family: inherit; font-size: 1rem;
      outline: none; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; transition-delay: 0.1s; width: 100%;
    }
    .search-wrapper.active .search-input { opacity: 1; pointer-events: all; padding-left: 8px; }
    .search-clear { width: 40px; height: 40px; flex-shrink: 0; opacity: 0; pointer-events: none; transform: scale(0.5); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .search-wrapper.active .search-clear { opacity: 1; pointer-events: all; transform: scale(1); transition-delay: 0.2s; }
    .search-wrapper.active .search-clear svg { animation: closeXEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.2s; }
    @keyframes closeXEnter { 0% { transform: scale(0.5) rotate(-180deg); opacity: 0; } 70% { transform: scale(1.1) rotate(15deg); opacity: 1; } 100% { transform: scale(1) rotate(0deg); opacity: 1; } }
    .search-clear.closing { animation: closeXLeave 0.35s cubic-bezier(0.4, 0, 1, 1) forwards; }
    @keyframes closeXLeave { 0% { opacity: 1; transform: scale(1) rotate(0deg); } 30% { opacity: 1; transform: scale(1.2); } 100% { opacity: 0; transform: scale(0.3) rotate(90deg); } }

    /* ==================================================
       THEME TOGGLE SYSTEM (Dijaga Utuh)
       ================================================== */
    .theme-toggle { position: relative; flex-shrink: 0; }
    .theme-icon-container { position: relative; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
    .theme-icon-slot { position: absolute; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.5); pointer-events: none; transition: transform 0.3s ease, opacity 0.3s ease; }
    .theme-icon-slot svg { width: 20px; height: 20px; stroke-width: 2; }
    .icon-out { animation: animIconOut 0.25s ease forwards; }
    .icon-in { animation: animIconIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    @keyframes animIconOut { 0% { transform: scale(1); opacity: 1; } 40% { transform: scale(0.7); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }
    @keyframes animIconIn { 0% { transform: scale(0.3); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
    .anim-sun { animation: sunSpin 10s linear infinite; transform-origin: center; }
    @keyframes sunSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    .anim-moon { animation: moonSwing 4s ease-in-out infinite; transform-origin: center; }
    @keyframes moonSwing { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

    /* ==================================================
       SIDEBAR & OVERLAY UPDATE
       ================================================== */
    .overlay { position: fixed; inset: 0; background: var(--overlay); z-index: 30000; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
    .overlay.active { opacity: 1; pointer-events: all; }
    .sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 280px; max-width: 80vw; background: var(--surface); z-index: 30001; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 2px 0 20px rgba(0,0,0,0.1); padding: 0; display: flex; flex-direction: column; border-right: 1px solid var(--border); overflow-y: auto; overflow-x: hidden; }
    .sidebar.active { transform: translateX(0); }
    .sidebar-header { height: calc(60px + env(safe-area-inset-top)); padding-top: env(safe-area-inset-top); display: flex; justify-content: space-between; align-items: center; padding-inline: 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
    .sidebar-header h2, .sidebar-header .header-title { color: var(--text-main) !important; }
    .sidebar-nav { display: flex; flex-direction: column; flex: 1; padding: 16px 0; }
    .side-link { display: flex; align-items: center; gap: 16px; padding: 14px 20px; color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 1rem; transition: background-color 0.2s; }
    .side-link:active { background: var(--bg); }
    .side-link svg { width: 22px; height: 22px; color: var(--text-muted); stroke-width: 2; flex-shrink: 0; }
    .sidebar-divider { height: 1px; background: var(--border); margin: 8px 20px; }
    .sidebar-admin-divider { margin-top: auto; }
    .side-link-admin { color: var(--accent); font-weight: 800; }
    .side-link-admin svg { color: var(--accent); }
    .side-link-admin:active { background: rgba(59, 130, 246, 0.10); }

    /* ==================================================
       SISTEM HASH ROUTING DAN ANIMASI TRANSISE HALAMAN
       ================================================== */
 .page {
  padding-top: calc(75px + env(safe-area-inset-top));
  padding-bottom: calc(var(--dock-height) + env(safe-area-inset-bottom) + 32px);
  padding-inline: 16px; width: 100%; max-width: 600px; margin: 0 auto;
  display: none; opacity: 0; transform: translateY(14px) scale(0.98);
  position: relative; z-index: 1;
  background: transparent;
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
    .page.active { display: block; animation: pageEnter 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .page.leaving { animation: pageLeave 0.25s cubic-bezier(0.4, 0, 1, 1) forwards; }
    @keyframes pageEnter { 0% { opacity: 0; transform: translateY(14px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
    @keyframes pageLeave { 0% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-10px) scale(0.99); } }

    /* ==================================================
       PAGES CONTAINER FIX (Cegah background overflow) */
    #pages-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

    /* ==================================================
       SISTEM CARD KONTEN (MODERN & PREMIUM)
       ================================================== */
    .section-title { font-size: 1.15rem; font-weight: 800; color: var(--text-main); margin-top: 28px; margin-bottom: 14px; padding-left: 2px; display: flex; align-items: center; gap: 10px; letter-spacing: -0.3px; }
    .section-title svg { width: 18px; height: 18px; color: var(--accent); stroke-width: 2.5; }
    .cards-grid { display: flex; flex-direction: column; gap: 14px; width: 100%; }

    .card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 18px; position: relative; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease; opacity: 0; }
    .page.active .card { animation: cardFadeUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: calc(var(--i, 1) * 0.06s); }
    
    .updated-app-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 18px; position: relative; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease; }
    .updated-app-card:active { transform: scale(0.97); }

    @keyframes cardFadeUp { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
    .card:active { transform: scale(0.97); }

    .card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; }
    .card-icon-wrapper { width: 44px; height: 44px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; transition: background-color 0.3s ease, color 0.3s ease; }
    .card-icon { width: 22px; height: 22px; stroke-width: 2; }
    .card-title-container { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
    .card-title { font-size: 1.05rem; font-weight: 700; color: var(--text-main); letter-spacing: -0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; }
    .card-desc { font-size: 0.9rem; line-height: 1.55; color: var(--text-muted); }

    .card-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; background: var(--accent); color: #ffffff; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; width: 100%; transition: transform 0.2s ease, opacity 0.2s ease; }
    .card-btn svg { width: 16px; height: 16px; stroke-width: 2.5; }
    .card-btn:active { transform: scale(0.96); }
    .card-btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-main); }
    .card-btn-outline:active { background: var(--bg); }
    .card-badge { position: absolute; top: 16px; right: 16px; padding: 4px 8px; border-radius: 8px; font-size: 0.72rem; font-weight: 700; background: var(--bg); color: var(--text-muted); letter-spacing: 0.2px; }

    .hero-banner { background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%); border: 1px solid var(--border); border-radius: 24px; padding: 34px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 10px; width: 100%; box-shadow: var(--shadow); }
    .hero-title { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; color: var(--text-main); display: flex; align-items: center; gap: 2px; }
    .hero-title span { background: linear-gradient(135deg, var(--accent) 0%, #10b981 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-desc { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); max-width: 500px; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 320px; margin-top: 8px; }
    .hero-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 12px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .hero-btn svg { width: 16px; height: 16px; stroke-width: 2.5; }
    .hero-btn:active { transform: scale(0.95); }
    .hero-btn-primary { background: var(--accent); color: #ffffff; }
    .hero-btn-secondary { background: var(--surface); border: 1.5px solid var(--border); color: var(--text-main); }

    .hero-quick-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      width: 100%;
      max-width: 420px;
      margin-top: -2px;
    }

    .hero-quick-btn {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1.5px solid var(--border);
      background: var(--surface);
      color: var(--text-main);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 750;
      line-height: 1.15;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.035);
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, background-color 0.2s ease;
    }

    .hero-quick-btn svg {
      width: 16px;
      height: 16px;
      stroke-width: 2.35;
      color: var(--accent);
      flex-shrink: 0;
    }

    .hero-quick-btn:active {
      transform: scale(0.96);
      background: var(--bg);
    }

    .hero-quick-btn-wide {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(16, 185, 129, 0.10));
      border-color: rgba(59, 130, 246, 0.20);
    }

    @media (min-width: 520px) {
      .hero-quick-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 500px;
      }

      .hero-quick-btn-wide {
        grid-column: span 2;
      }
    }

    .accent-green { color: #10b981 !important; }
    .accent-red { color: #ef4444 !important; }
    .accent-purple { color: #a855f7 !important; }
    .accent-gold { color: #f59e0b !important; }

    /* CTA Banner */
    .cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%); border-radius: 20px; padding: 26px 20px; color: #ffffff; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 30px; margin-bottom: 20px; width: 100%; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25); }
    .cta-banner h2 { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.3px; }
    .cta-banner p { font-size: 0.9rem; opacity: 0.92; line-height: 1.55; }
    .cta-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; max-width: 280px; margin-top: 6px; }
    .cta-btn { padding: 11px; border-radius: 11px; font-size: 0.85rem; font-weight: 700; text-decoration: none; background: #ffffff; color: #1e1b4b; display: flex; align-items: center; justify-content: center; gap: 6px; transition: transform 0.2s ease; }
    .cta-btn svg { width: 15px; height: 15px; stroke-width: 2.5; }
    .cta-btn:active { transform: scale(0.95); }
    .cta-btn-outline { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); color: #ffffff; }

    /* ==================================================
       FITUR: COLLAPSIBLE INFO BOX
       ================================================== */
    .info-card { padding: 0; overflow: hidden; display: block; }
    .info-header { padding: 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; }
    .info-header-content { display: flex; align-items: center; gap: 12px; flex: 1; }
    .info-toggle-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background-color 0.2s; border: none; flex-shrink: 0; }
    .info-toggle-btn svg { width: 18px; height: 18px; stroke-width: 2.5; transition: transform 0.3s ease; pointer-events: none; }
    .info-body { padding: 0 18px 18px 18px; max-height: 1000px; opacity: 1; transform: translateY(0); transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, padding 0.4s ease; overflow: hidden; }
    .info-card.collapsed .info-body { max-height: 0; opacity: 0; transform: translateY(-6px); padding-top: 0; padding-bottom: 0; pointer-events: none; }
    .info-card.collapsed .info-toggle-btn svg { transform: rotate(180deg); }

    /* ==================================================
       FITUR: PROFILE ANIMATION & LINKS LIST
       ================================================== */
    .profile-container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px 10px 10px 10px; text-align: center; }
    .profile-logo-wrapper { position: relative; width: 110px; height: 110px; margin-bottom: 24px; animation: floatLogo 4s ease-in-out infinite; }
    .profile-logo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid var(--surface); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3); background: var(--bg); }
    .profile-glow { position: absolute; inset: -10px; background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 70%); border-radius: 50%; z-index: -1; animation: pulseGlow 3s ease-in-out infinite alternate; }
    .profile-name { font-size: 1.6rem; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; margin-bottom: 10px; }
    .profile-bio { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; max-width: 480px; margin: 0 auto; }
    @keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    @keyframes pulseGlow { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.1); opacity: 1; } }

    .profile-links-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; width: 100%; }
    .profile-link-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; text-decoration: none; color: inherit; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; opacity: 0; animation: cardFadeUp 0.5s forwards; }
    .profile-link-card:active:not(.disabled) { transform: scale(0.96); }
    .profile-link-card.disabled { opacity: 0.6; cursor: not-allowed; }
    .profile-link-img-wrap { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
    .profile-link-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .profile-link-info { flex: 1; display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
    .profile-link-info h3 { font-size: 1.05rem; font-weight: 800; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .profile-link-info p { font-size: 0.85rem; color: var(--text-muted); }
    .profile-link-action { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
    .profile-link-action svg { width: 18px; height: 18px; stroke-width: 2.5; }

    /* ==================================================
       FITUR: LIST ITEM & SKELETON
       ================================================== */
    .product-list-card { display: flex; flex-direction: row; align-items: center; gap: 14px; padding: 14px; text-decoration: none; color: inherit; cursor: pointer; }
    .product-list-img { width: 68px; height: 68px; border-radius: 14px; object-fit: cover; background: var(--bg); flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .product-list-info { display: flex; flex-direction: column; gap: 4px; flex: 1; overflow: hidden; }
    .product-list-name { font-size: 1.05rem; font-weight: 700; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; }
    .product-list-price { font-size: 0.85rem; font-weight: 700; color: #10b981; display: flex; align-items: center; gap: 4px; }
    .product-list-meta { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .product-list-action { width: 36px; height: 36px; border-radius: 12px; background: rgba(59, 130, 246, 0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .product-list-action svg { width: 18px; height: 18px; stroke-width: 2.5; }
    .skeleton { background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%); background-size: 200% 100%; animation: loadingSkeleton 1.5s infinite; border-radius: 8px; }
    @keyframes loadingSkeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    .empty-state { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: 0.95rem; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .empty-state svg { width: 48px; height: 48px; color: var(--border); }
    
    /* BADGE TERLARIS STORE */
    .badge-terlaris { font-size: 0.65rem; font-weight: 800; padding: 2px 8px; background: linear-gradient(135deg, #f59e0b, #ea580c); color: #ffffff; border-radius: 8px; margin-left: 8px; vertical-align: middle; display: inline-flex; align-items: center; justify-content: center; letter-spacing: 0.3px; box-shadow: 0 2px 5px rgba(245, 158, 11, 0.3); }
    .detail-badge-row { display: flex; justify-content: center; align-items: center; margin-top: -4px; margin-bottom: 10px; }
    .detail-badge-terlaris { margin-left: 0 !important; }

    /* ==================================================
       FITUR: APPS UI (Slider & Category)
       ================================================== */
    .apps-slider-container { width: 100%; overflow: hidden; margin-bottom: 18px; }
    .apps-slider-scroll { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
    .apps-slider-scroll::-webkit-scrollbar { display: none; }
    .apps-slider-item { flex: 0 0 calc(100% - 40px); max-width: 320px; scroll-snap-align: center; }
    
    .slider-indicator { width: 60px; height: 4px; background: var(--border); border-radius: 999px; overflow: hidden; position: relative; flex-shrink: 0; }
    .slider-thumb { width: 16px; height: 100%; background: var(--accent); border-radius: inherit; position: absolute; left: 0; top: 0; transition: transform 0.12s ease-out, width 0.18s ease; }
    .slider-indicator.is-static .slider-thumb { width: 16px; }

    .slider-controls { display: flex; align-items: center; justify-content: center; gap: 10px; width: fit-content; margin: -2px auto 0; }
    .apps-slider-controls { margin-top: -4px; margin-bottom: 0; }
    .slider-nav-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.06); transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease; }
    .slider-nav-btn svg { width: 18px; height: 18px; pointer-events: none; }
    .slider-nav-btn:active { transform: scale(0.9); }
    .slider-nav-btn:disabled { opacity: 0.35; pointer-events: none; }

    .category-filter-scroll { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 12px; margin-bottom: 12px; scrollbar-width: none; }
    .category-filter-scroll::-webkit-scrollbar { display: none; }
    .cat-chip { padding: 8px 16px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); font-size: 0.85rem; font-weight: 700; color: var(--text-muted); cursor: pointer; white-space: nowrap; transition: all 0.2s ease; }
    .cat-chip.active { background: var(--text-main); color: var(--bg); border-color: var(--text-main); }
    
    .updated-empty-note { width: 100%; text-align: center; color: var(--text-muted); font-weight: 600; font-size: 0.95rem; line-height: 1.5; padding: 24px 16px 28px; margin: 0 auto; flex: 0 0 100%; }
    .updated-empty-note strong { color: var(--text-main); }

    /* ==================================================
       FITUR: DETAIL HALAMAN STORE & APPS
       ================================================== */
    .detail-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .detail-back-btn, .detail-share-btn { width: 44px; height: 44px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); color: var(--text-main); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s, background 0.2s; box-shadow: var(--shadow); }
    .detail-back-btn:active, .detail-share-btn:active { transform: scale(0.92); background: var(--bg); }
    .detail-back-btn svg, .detail-share-btn svg { width: 22px; height: 22px; stroke-width: 2.5; }
    .detail-bar-title { font-size: 1.1rem; font-weight: 800; color: var(--text-main); text-align: center; flex: 1; }

    .detail-hero { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 24px; }
    .detail-img { width: 140px; height: 140px; border-radius: 28px; object-fit: cover; margin-bottom: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); background: var(--surface); border: 1px solid var(--border); }
    .detail-title { font-size: 1.6rem; font-weight: 800; color: var(--text-main); line-height: 1.3; letter-spacing: -0.5px; display: block; text-align: center; justify-content: center; }
    
    .app-detail-hero { display: flex; flex-direction: row; align-items: flex-start; gap: 16px; margin-bottom: 24px; text-align: left; }
    .app-detail-img { width: 100px; height: 100px; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow); background: var(--surface); border: 1px solid var(--border); flex-shrink: 0; }
    .app-detail-info { display: flex; flex-direction: column; gap: 6px; flex: 1; }
    .app-detail-title { font-size: 1.35rem; font-weight: 800; color: var(--text-main); line-height: 1.2; letter-spacing: -0.5px; }
    .app-detail-meta { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
    
    .detail-section-label { font-size: 0.95rem; font-weight: 800; color: var(--text-main); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
    .detail-section-label svg { width: 18px; height: 18px; color: var(--accent); stroke-width: 2.5; }
    
    .detail-price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .detail-price-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); font-weight: 700; font-size: 0.95rem; color: var(--text-main); }
    .detail-price-item svg { color: #10b981; width: 20px; height: 20px; flex-shrink: 0; stroke-width: 2.5; }

    .detail-desc-box { background: var(--surface); padding: 20px; border-radius: 18px; border: 1px solid var(--border); box-shadow: var(--shadow); font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); white-space: pre-wrap; word-break: break-word; margin-bottom: 24px; }
    .features-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-muted); }
    .feature-item svg { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; margin-top: 2px; }

    .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
    .payment-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; box-shadow: var(--shadow); }
    .payment-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--accent); }
    .payment-icon svg { width: 20px; height: 20px; stroke-width: 2; }
    .payment-name { font-weight: 700; font-size: 0.9rem; color: var(--text-main); }

    .btn-large-action { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px; background: var(--accent); color: white; border: none; border-radius: 16px; font-size: 1.05rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s; box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); margin-bottom: 24px; }
    .btn-large-action:active { transform: scale(0.96); }
    .btn-large-action.green { background: #10b981; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }

    /* Fix WA Order Icon Explicitly */
    .wa-order-icon { width: 24px !important; height: 24px !important; min-width: 24px !important; max-width: 24px !important; flex: 0 0 24px !important; display: block; }
    #btn-order-wa svg, .btn-large-action.green svg { width: 24px !important; height: 24px !important; min-width: 24px !important; max-width: 24px !important; flex: 0 0 24px !important; }

    .preview-gallery-scroll { display: flex; overflow-x: auto; gap: 12px; scrollbar-width: none; padding-bottom: 12px; margin-bottom: 12px; }
    .preview-gallery-scroll::-webkit-scrollbar { display: none; }
    .preview-img-item { height: 160px; border-radius: 14px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow); cursor: zoom-in; }

    /* ==================================================
       FITUR: UNLOCK YOUR LINK (Fixed Colors & Fonts)
       ================================================== */
    .unlock-container, .mission-btn, .btn-verify, .unlock-title, .unlock-desc, .unlock-progress-wrapper, .mission-label { font-family: 'Urbanist', sans-serif !important; }
    .unlock-container { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 24px 20px; box-shadow: var(--shadow); margin-bottom: 24px; display: none; flex-direction: column; gap: 16px; text-align: center; }
    .unlock-title { font-size: 1.25rem; font-weight: 800; color: var(--text-main); }
    .unlock-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
    
    .mission-list { display: flex; flex-direction: column; gap: 12px; }
    .mission-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 20px; border-radius: 999px; border: none; font-size: 0.95rem; font-weight: 700; cursor: pointer; position: relative; top: 0; transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.3s ease; }
    .mission-btn:active:not(:disabled) { top: 4px; box-shadow: none !important; }
    .mission-btn:disabled { opacity: 0.6; cursor: not-allowed; }
    
    /* Fixed Colors Regardless of Theme */
    .mission-btn.yt { background: #ef4444 !important; color: #ffffff !important; box-shadow: 0 4px 0 #b91c1c !important; }
    .mission-btn.wa { background: #10b981 !important; color: #ffffff !important; box-shadow: 0 4px 0 #059669 !important; }
    .mission-btn.wab { background: #059669 !important; color: #ffffff !important; box-shadow: 0 4px 0 #065f46 !important; }
    .mission-btn.tt { background: #050505 !important; color: #ffffff !important; box-shadow: 0 4px 0 #000000 !important; }
    
    .mission-icon { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; overflow: hidden; }
    .mission-icon img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
    .mission-icon svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
    .mission-label { display: block; color: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: left; }
    
    .unlock-progress-wrapper { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; font-weight: 700; font-size: 0.9rem; color: var(--text-main); }
    .unlock-progress-bar { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; margin: 0 12px; overflow: hidden; position: relative; border: 1px solid var(--border); }
    .unlock-progress-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: #10b981; transition: width 0.4s ease; }
    
    .btn-verify { padding: 14px; border-radius: 14px; font-weight: 800; font-size: 1rem; border: none; cursor: pointer; transition: all 0.2s ease; background: var(--bg); color: var(--text-muted); margin-top: 8px; }
    .btn-verify.ready { background: #10b981; color: white; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); }

    @keyframes spin { 100% { transform: rotate(360deg); } }
    .spinner { animation: spin 1s linear infinite; }

    /* ==================================================
       FITUR: FULLSCREEN IMAGE GALLERY OVERLAY
       ================================================== */
    .gallery-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.95); display: none; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
    .gallery-overlay.active { display: flex; }
    .gallery-img-container { position: relative; max-width: 90vw; max-height: 80vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .gallery-img { max-width: 100%; max-height: 100%; border-radius: 8px; object-fit: contain; }
    
    /* Animasi Slide Image Gallery */
    .gallery-img.slide-out-left { animation: slideOutLeft 0.25s ease forwards; }
    .gallery-img.slide-out-right { animation: slideOutRight 0.25s ease forwards; }
    .gallery-img.slide-in-left { animation: slideInLeft 0.25s ease forwards; }
    .gallery-img.slide-in-right { animation: slideInRight 0.25s ease forwards; }
    @keyframes slideOutLeft { to { transform: translateX(-50px); opacity: 0; } }
    @keyframes slideOutRight { to { transform: translateX(50px); opacity: 0; } }
    @keyframes slideInRight { from { transform: translateX(50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
    @keyframes slideInLeft { from { transform: translateX(-50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
    
    /* Liquid Glass Buttons for Preview Image Gallery Overlay */
    .gallery-close, .gallery-nav {
      background: rgba(255, 255, 255, 0.18) !important;
      border: 1px solid rgba(255, 255, 255, 0.35) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 28px rgba(0, 0, 0, 0.28) !important;
      backdrop-filter: blur(14px) saturate(160%) !important;
      -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
      color: #ffffff !important;
      display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%;
    }
    .gallery-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; z-index: 10001; }
    .gallery-close:active { transform: scale(0.92) !important; }
    .gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; z-index: 10001; }
    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }
    .gallery-nav:active { transform: translateY(-50%) scale(0.92) !important; }
    
    .gallery-close svg, .gallery-nav svg { width: 24px; height: 24px; stroke-width: 2.6; }
    
    .shake { animation: shake 0.3s cubic-bezier(.36,.07,.19,.97) both; }
    @keyframes shake { 10%, 90% { transform: translate3d(-2px, 0, 0); } 20%, 80% { transform: translate3d(4px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-6px, 0, 0); } 40%, 60% { transform: translate3d(6px, 0, 0); } }

    /* ==================================================
       FITUR: SCROLL BUTTON & SHARE SHEET
       ================================================== */
    .fab-scroll { position: fixed; right: 20px; width: 50px; height: 50px; border-radius: 25px; background: var(--surface); border: 1px solid var(--border); box-shadow: 0 6px 20px rgba(0,0,0,0.15); color: var(--text-main); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 650; opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; bottom: calc(var(--dock-height) + env(safe-area-inset-bottom) + 16px); }
    .fab-scroll.visible { opacity: 1; pointer-events: all; }
    .fab-scroll:active { transform: scale(0.9); }
    .fab-scroll svg { width: 24px; height: 24px; stroke-width: 2.5; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .fab-scroll.up svg { transform: rotate(180deg); }

    .share-sheet { position: fixed; inset: 0; z-index: 10000; display: flex; flex-direction: column; justify-content: flex-end; pointer-events: none; }
    .share-overlay { position: absolute; inset: 0; background: var(--overlay); opacity: 0; transition: opacity 0.3s ease; }
    .share-content { position: relative; background: var(--surface); padding: 24px 20px calc(24px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .share-sheet.active { pointer-events: all; }
    .share-sheet.active .share-overlay { opacity: 1; }
    .share-sheet.active .share-content { transform: translateY(0); }
    .share-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .share-title { font-size: 1.1rem; font-weight: 800; color: var(--text-main); }
    .share-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; }
    .share-close svg { width: 24px; height: 24px; stroke-width: 2.5; }
    .share-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
    .share-item { display: flex; flex-direction: column; align-items: center; gap: 8px; border: none; background: transparent; cursor: pointer; }
    .share-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
    .share-icon svg { width: 24px; height: 24px; stroke-width: 2; }
    .share-item span { font-size: 0.75rem; font-weight: 700; color: var(--text-main); }
    .share-item.wa .share-icon { background: #25D366; color: white; }
    .share-item.tg .share-icon { background: #0088cc; color: white; }
    .share-item.fb .share-icon { background: #1877F2; color: white; }
    .share-item.tw .share-icon { background: #000000; color: white; }
    html[data-theme="dark"] .share-item.tw .share-icon { background: #ffffff; color: #000000; }
    .copy-link-btn { width: 100%; display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 16px; background: var(--bg); border: 1px solid var(--border); color: var(--text-main); font-weight: 700; font-size: 0.95rem; cursor: pointer; }
    .copy-link-btn svg { width: 20px; height: 20px; stroke-width: 2.5; color: var(--text-muted); }



    /* ==================================================
       ADMIN SECURITY POPUP
       ================================================== */
    .admin-security-overlay {
      position: fixed;
      inset: 0;
      z-index: 40000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(17, 24, 39, 0.58);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      overscroll-behavior: contain;
    }

    .admin-security-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .admin-security-modal {
      width: 100%;
      max-width: 390px;
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      background: var(--surface);
      color: var(--text-main);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 18px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
      transform: translateY(18px) scale(0.96);
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    }

    .admin-security-overlay.active .admin-security-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .admin-security-modal.shake {
      animation: adminSecurityShake 0.38s ease both;
    }

    @keyframes adminSecurityShake {
      0%, 100% { transform: translateX(0) scale(1); }
      20% { transform: translateX(-9px) scale(1); }
      40% { transform: translateX(8px) scale(1); }
      60% { transform: translateX(-6px) scale(1); }
      80% { transform: translateX(4px) scale(1); }
    }

    .admin-security-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .admin-security-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: rgba(59, 130, 246, 0.10);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .admin-security-icon svg {
      width: 24px;
      height: 24px;
      stroke-width: 2.4;
    }

    .admin-security-title-wrap {
      flex: 1;
      min-width: 0;
    }

    .admin-security-title-wrap h2 {
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: -0.3px;
      margin-bottom: 3px;
    }

    .admin-security-title-wrap p,
    .admin-security-note {
      color: var(--text-muted);
      font-size: 0.78rem;
      line-height: 1.45;
      font-weight: 600;
    }

    .admin-security-note.is-error {
      color: #ef4444;
      font-weight: 800;
    }

    .admin-security-close {
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 14px;
      background: var(--bg);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.18s ease, background-color 0.18s ease;
    }

    .admin-security-close:active {
      transform: scale(0.92);
    }

    .admin-security-close svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.4;
    }

    .admin-security-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 5px;
      border-radius: 16px;
      background: var(--bg);
      margin-bottom: 16px;
    }

    .admin-security-tab {
      border: none;
      border-radius: 12px;
      padding: 10px 12px;
      background: transparent;
      color: var(--text-muted);
      font-family: inherit;
      font-weight: 800;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.18s ease;
    }

    .admin-security-tab.active {
      background: var(--surface);
      color: var(--accent);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .admin-security-tab:active {
      transform: scale(0.96);
    }

    .admin-security-panel {
      display: none;
      flex-direction: column;
      gap: 10px;
    }

    .admin-security-panel.active {
      display: flex;
      animation: adminPanelIn 0.22s ease both;
    }

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

    .admin-field-label {
      color: var(--text-main);
      font-size: 0.78rem;
      font-weight: 850;
      padding-left: 2px;
      margin-top: 2px;
    }

    .admin-input-box {
      min-height: 48px;
      border: 1.5px solid var(--border);
      background: var(--bg);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 12px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .admin-input-box:focus-within {
      border-color: rgba(59, 130, 246, 0.65);
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
    }

    .admin-input-icon {
      width: 19px;
      height: 19px;
      color: var(--text-muted);
      stroke-width: 2.2;
      flex-shrink: 0;
    }

    .admin-input-box input {
      flex: 1;
      min-width: 0;
      height: 46px;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text-main);
      font-family: inherit;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .admin-input-box input::placeholder {
      color: var(--text-muted);
      opacity: 0.76;
    }

    .admin-password-toggle {
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 12px;
      background: transparent;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
    }

    .admin-password-toggle svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.2;
    }

    .admin-password-toggle .eye-closed,
    .admin-password-toggle.is-visible .eye-open {
      display: none;
    }

    .admin-password-toggle.is-visible .eye-closed {
      display: block;
    }

    .admin-submit-btn {
      min-height: 48px;
      width: 100%;
      border: none;
      border-radius: 16px;
      background: var(--accent);
      color: #ffffff;
      font-family: inherit;
      font-weight: 900;
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(59, 130, 246, 0.24);
      transition: transform 0.18s ease, opacity 0.18s ease;
      margin-top: 4px;
    }

    .admin-submit-btn:active {
      transform: scale(0.96);
    }

    .admin-submit-btn svg {
      width: 19px;
      height: 19px;
      stroke-width: 2.5;
    }

    .admin-pin-display {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      margin: 2px 0 8px;
    }

    .admin-pin-display span {
      height: 46px;
      border-radius: 14px;
      border: 1.5px solid var(--border);
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .admin-pin-display span.filled::after {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
    }

    .admin-pin-pad {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .admin-pin-pad button {
      min-height: 46px;
      border: 1.5px solid var(--border);
      border-radius: 16px;
      background: var(--surface);
      color: var(--text-main);
      font-family: inherit;
      font-size: 1rem;
      font-weight: 900;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.16s ease, background-color 0.16s ease;
    }

    .admin-pin-pad button:active {
      transform: scale(0.94);
      background: var(--bg);
    }

    .admin-pin-pad svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.4;
    }

    .admin-pin-note {
      text-align: center;
      margin-top: 4px;
    }

    .admin-security-modal.is-authorized .admin-security-tabs {
      display: none;
    }

    .admin-authorized-panel {
      gap: 14px;
    }

    .admin-authorized-card {
      border: 1.5px solid rgba(59, 130, 246, 0.18);
      background: rgba(59, 130, 246, 0.08);
      border-radius: 18px;
      padding: 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .admin-authorized-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--accent);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.22);
    }

    .admin-authorized-icon svg {
      width: 24px;
      height: 24px;
      stroke-width: 3;
    }

    .admin-authorized-card h3 {
      font-size: 0.98rem;
      font-weight: 900;
      letter-spacing: -0.2px;
      color: var(--text-main);
    }

    .admin-authorized-card p {
      color: var(--text-muted);
      font-size: 0.8rem;
      line-height: 1.45;
      font-weight: 650;
    }

    .toast { position: fixed; top: 80px; left: 50%; transform: translate(-50%, -20px); background: var(--text-main); color: var(--bg); padding: 12px 24px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; z-index: 10001; opacity: 0; pointer-events: none; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); white-space: nowrap; }
    .toast.show { opacity: 1; transform: translate(-50%, 0); }

    /* ==================================================
       STYLE REVIEW & MARQUEE TAMBAHAN
       ================================================== */
    .summary-container { display: flex; align-items: center; gap: 20px; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); margin-top: 24px; margin-bottom: 24px; }
    .summary-score-box { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-right: 20px; border-right: 1px solid var(--border); min-width: 100px; }
    .summary-score { font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 6px; color: var(--text-main); }
    .summary-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 4px; letter-spacing: 2px; }
    .summary-count { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; }
    .summary-bars-box { flex: 1; display: flex; flex-direction: column; gap: 6px; }
    .bar-row { display: flex; align-items: center; gap: 10px; }
    .bar-label { font-size: 0.8rem; font-weight: 800; color: var(--text-muted); width: 12px; text-align: right; }
    .bar-track { flex: 1; height: 6px; background: var(--bg); border-radius: 99px; overflow: hidden; border: 1px solid var(--border); }
    .bar-fill { height: 100%; background: var(--accent); border-radius: 99px; transition: width 1s ease-out; }

    .review-marquee-container { height: 220px; overflow: hidden; position: relative; margin-bottom: 24px; border-radius: 18px; }
    .review-marquee-container::before, .review-marquee-container::after { content: ''; position: absolute; left: 0; right: 0; height: 35px; z-index: 2; pointer-events: none; }
    .review-marquee-container::before { top: 0; background: linear-gradient(to bottom, var(--bg), transparent); }
    .review-marquee-container::after { bottom: 0; background: linear-gradient(to top, var(--bg), transparent); }
    
    .review-marquee-track { display: flex; flex-direction: column; animation: marqueeUp var(--review-marquee-duration, 45s) linear infinite; animation-play-state: paused; }
    .review-visible .review-marquee-track, .review-marquee-container.marquee-start .review-marquee-track { animation-play-state: running; }
    .review-marquee-track:hover, .review-marquee-container.is-paused .review-marquee-track { animation-play-state: paused !important; }
    .marquee-content { display: flex; flex-direction: column; gap: 12px; padding-bottom: 12px; }
    @keyframes marqueeUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

    .review-card-mini { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow); }
    .rc-mini-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
    .rc-mini-name { font-weight: 700; font-size: 0.9rem; color: var(--text-main); display: flex; align-items: center; gap: 6px; }
    .rc-mini-verified { background: rgba(16, 185, 129, 0.1); color: #10b981; padding: 2px 6px; border-radius: 6px; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; }
    .rc-mini-stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 1px; }
    .rc-mini-msg { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
    
    .review-more-btn { width: 100%; margin-top: 16px; margin-bottom: 24px; height: 54px; border-radius: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: 0.95rem; text-decoration: none; background: var(--accent); color: #ffffff; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25); transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease; }
    .review-more-btn:active { transform: scale(0.96); box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15); }
    .review-more-btn svg { width: 20px; height: 20px; stroke-width: 2.5; }

    /* ==================================================
       DOCKBAR FINAL CLEAN V2
       - Dock tetap fixed dan tidak ikut scroll.
       - Konten bisa scroll normal.
       - SVG dock tetap kelihatan seperti desain lama.
       - Area root dock tidak memblokir scroll halaman.
       ================================================== */
    html {
      background: var(--bg) !important;
      overflow-x: hidden !important;
      overscroll-behavior-x: none;
    }

    body {
      background: var(--bg) !important;
      background-attachment: scroll !important;
      overflow-x: hidden !important;
      min-height: 100vh;
      min-height: 100dvh;
      overscroll-behavior-x: none;
    }

    #pages-container {
      position: relative;
      z-index: 1;
      width: 100%;
      overflow: visible !important;
      background: transparent !important;
    }

    .page {
      background: transparent !important;
      padding-bottom: calc(var(--dock-height) + env(safe-area-inset-bottom) + 56px) !important;
    }

    .dock {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      height: calc(var(--dock-height) + env(safe-area-inset-bottom));
      z-index: 12000;
      isolation: isolate;
      overflow: visible;
      background: transparent !important;
      pointer-events: none;
      touch-action: auto;
      transform: translate3d(0,0,0);
      -webkit-transform: translate3d(0,0,0);
      contain: none;
      will-change: auto;
    }

    .dock-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: visible;
      z-index: 1;
      pointer-events: none;
      background: transparent !important;
      filter: drop-shadow(0 -16px 32px rgba(0, 0, 0, .08));
      transform: translate3d(0,0,0);
      -webkit-transform: translate3d(0,0,0);
    }

    html[data-theme="dark"] .dock-svg {
      filter: drop-shadow(0 -16px 32px rgba(0, 0, 0, .45)) drop-shadow(0 -1px 1px rgba(255, 255, 255, 0.08));
    }

    .dock-path {
      transition: d .46s var(--ease), fill .25s ease;
      fill: var(--dock);
      pointer-events: none;
    }

    .dock-ring,
    .dock-bubble {
      position: absolute;
      border-radius: 999px;
      will-change: left, transform;
      transition: left .46s var(--ease), transform .18s ease;
    }

    .dock-ring {
      width: var(--ring-size);
      height: var(--ring-size);
      left: calc(var(--center-x) - (var(--ring-size) / 2));
      top: calc(var(--bar-top) - (var(--ring-size) / 2));
      background: transparent !important;
      box-shadow: none !important;
      border: none !important;
      opacity: 0 !important;
      z-index: 6;
      pointer-events: none;
    }

    .dock-bubble {
      width: var(--bubble-size);
      height: var(--bubble-size);
      left: calc(var(--center-x) - (var(--bubble-size) / 2));
      top: calc(var(--bar-top) - (var(--bubble-size) / 2));
      background: var(--bubble-bg) !important;
      box-shadow: var(--bubble-shadow) !important;
      border: 1px solid var(--bubble-border) !important;
      backdrop-filter: blur(14px) saturate(160%) !important;
      -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
      z-index: 25;
      pointer-events: auto;
      touch-action: none;
      -webkit-user-select: none;
      user-select: none;
    }

    .dock-items {
      position: absolute;
      left: 0;
      right: 0;
      top: var(--bar-top);
      bottom: env(safe-area-inset-bottom);
      z-index: 30;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      pointer-events: none;
      background: transparent !important;
    }

    .dock-item {
      width: 100%;
      height: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      display: grid;
      place-items: center;
      color: var(--icon);
      cursor: pointer;
      position: relative;
      z-index: 31;
      pointer-events: auto;
      touch-action: manipulation;
      -webkit-user-select: none;
      user-select: none;
    }

    .dock-item.active {
      color: var(--active-icon);
      touch-action: none;
    }

    .dock-item svg {
      width: 31px;
      height: 31px;
      stroke-width: 2.3;
      position: relative;
      z-index: 32;
      opacity: .98;
      transform: translate(0, 0) scale(1);
      transform-origin: center;
      will-change: transform, opacity;
      transition: transform .46s var(--ease), opacity .22s ease, color .22s ease;
      pointer-events: none;
    }

    .dock-item.active svg { transform: translate(var(--icon-offset), -30px) scale(1.08); opacity: 1; }
    .dock-item:not(.active):active svg { transform: translateY(0) scale(.86); }
    .dock:has(.dock-item:active:not(.dragging)) .dock-bubble { transform: scale(.97); }
    .dock.dragging .dock-path { transition: none; }
    .dock.dragging .dock-ring, .dock.dragging .dock-bubble { transition: transform .2s ease; }
    .dock.dragging .dock-item.active svg { transition: none; }
    .dock.dragging .dock-bubble { transform: scale(0.88); }
    .dock.dragging .dock-ring { transform: scale(0.92); opacity: 0.35 !important; }
    .dock.dragging .dock-item.active svg { transform: translate(var(--icon-offset), -28px) scale(0.95); }
    .dock.instant-resize * { transition: none !important; }

    @media (max-width: 380px) {
      :root { --dock-height: 114px; --bar-top: 56px; --ring-size: 82px; --bubble-size: 64px; }
      .dock-item svg { width: 29px; height: 29px; }
      .dock-item.active svg { transform: translate(var(--icon-offset), -29px) scale(1.07); }
      .dock.dragging .dock-item.active svg { transform: translate(var(--icon-offset), -27px) scale(0.94); }
    }

    body.sidebar-open .dock {
      pointer-events: none !important;
      z-index: 1 !important;
    }

    /* Jangan ada pseudo dock/page yang bikin layer palsu. */
    .dock::before, .dock::after,
    .dock-svg::before, .dock-svg::after,
    .dock-items::before, .dock-items::after,
    .dock-bubble::before, .dock-bubble::after,
    .dock-ring::before, .dock-ring::after,
    #pages-container::before, #pages-container::after,
    .page::before, .page::after {
      content: none !important;
      display: none !important;
      background: transparent !important;
      box-shadow: none !important;
      pointer-events: none !important;
    }


    .apps-new-loading {
      min-height: 88px;
      flex: 0 0 calc(100% - 40px);
      max-width: 320px;
      border: none !important;
      box-shadow: none !important;
      opacity: 1 !important;
    }

    .apps-all-loading {
      height: 96px;
      border: none !important;
      box-shadow: none !important;
      opacity: 1 !important;
      padding: 0 !important;
    }


/* ==================================================
   DETAIL: FAQ PRODUK + PRODUK/APLIKASI SERUPA
   ================================================== */
.detail-extra-section {
  width: 100%;
  margin-bottom: 24px;
}

.related-section-title {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.related-slider-shell {
  width: 100%;
  overflow: hidden;
}

.related-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 8px;
  -webkit-overflow-scrolling: touch;
}

.related-slider-track::-webkit-scrollbar {
  display: none;
}

.related-media-card {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  animation: relatedCardIn 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--i, 1) * 0.04s);
}

.related-media-card:active {
  transform: scale(0.94);
}

.related-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-slider-controls { margin: -3px auto 0; }

.related-slider-indicator {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.related-slider-indicator span {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform: translateX(0);
  transition: transform 0.12s ease-out, width 0.18s ease;
}

.related-slider-indicator.is-static span {
  width: 16px;
}

@keyframes relatedCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.detail-faq-box {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 24px;
}

.detail-faq-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.detail-faq-title svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.detail-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.detail-faq-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-faq-item summary::-webkit-details-marker {
  display: none;
}

.detail-faq-item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.7;
  flex-shrink: 0;
}

.detail-faq-item[open] summary::after {
  transform: rotate(225deg);
}

.detail-faq-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 0 16px 15px;
}

.detail-faq-item strong {
  color: var(--text-main);
}

html[data-theme="dark"] .related-media-card,
html[data-theme="dark"] .detail-faq-box {
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}


