/* ════════════════════════════════════════════════════
   ZAKII MODS — ROOT TOKENS
════════════════════════════════════════════════════ */
:root {
    --bg:   #030910;
    --bg-1:   #081422;
    --bg-2:   #0e2033;
    --glass:        rgba(255,255,255,0.032);
    --glass-2:      rgba(255,255,255,0.055);
    --glass-hover:  rgba(255,255,255,0.065);
    --primary:      #229ff5;
    --primary-2:    #7fc9f5;
    --primary-glow: rgba(34,159,245,0.22);
    --secondary:    #6d5bd0;
    --accent:       #22d3ee;
    --green:        #10d989;
    --amber:        #fbbf24;
    --text:   #e6f1fb;
    --text-2:   #7c93ad;
    --text-3:   #3d5266;
    --border:       rgba(255,255,255,0.055);
    --border-2:     rgba(255,255,255,0.1);
    --border-hot:   rgba(34,159,245,0.22);
    --radius:       12px;
    --radius-lg:    18px;
    --radius-xl:    26px;
    --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Syne', 'Plus Jakarta Sans', sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

    /* kategori */
    --ff:           #f97316;
    --ml:   #6d5bd0;

    /* alias untuk panel admin (admin.css memakai nama lama) */
    --card:   #0a1826;
    --card2:   #102436;
    --line:  rgba(255,255,255,0.055);
    --line2: rgba(255,255,255,0.1);
    --tx:   #e6f1fb;
    --tx2:   #7c93ad;
    --tx3:   #3d5266;
    --ac:    #229ff5;
    --ac2:   #7fc9f5;
    --ok:    #10d989;
    --warn:  #fbbf24;
    --bad:   #ff5c72;
    --r:     18px;
    --sh:    0 20px 56px rgba(0,0,0,.5);
    --bg2:   #061120;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient bg glow */
body::before {
    content: '';
    position: fixed; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at -5% -5%,   rgba(34,159,245,0.08)  0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 105% 105%, rgba(109,91,208,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 30%,   rgba(34,211,238,0.035)  0%, transparent 65%);
    pointer-events: none; z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; color: inherit; }

::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--secondary)); border-radius: 4px; }

::selection { background: rgba(34,159,245,0.3); color: #fff; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
    background: rgba(3,9,16,0.86);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    padding: 14px 28px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 900;
    display: flex; align-items: center; gap: 10px;
    color: var(--text); letter-spacing: -0.5px;
    transition: opacity 0.2s; user-select: none;
}
.nav-brand:hover { opacity: 0.82; }
.nav-brand .logo {
    width: 34px; height: 34px; border-radius: 9px; object-fit: cover;
    border: 1px solid rgba(34,159,245,0.35);
    box-shadow: 0 0 16px rgba(34,159,245,0.35);
    flex: none;
}
.footer-logo-img {
    width: 56px; height: 56px; border-radius: 14px; object-fit: cover;
    margin: 0 auto 12px; border: 1px solid rgba(34,159,245,0.3);
    box-shadow: 0 0 26px rgba(34,159,245,0.28);
}
.nav-brand span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 60%, #bfe6ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
    color: var(--text-2);
    font-size: 13px; font-weight: 600;
    padding: 7px 14px; border-radius: 10px;
    transition: all 0.18s; letter-spacing: 0.1px;
}
.nav-link:hover { color: var(--text); background: var(--glass); }
.nav-link.active { color: var(--primary-2); background: rgba(34,159,245,0.08); }

.nav-cta {
    display: flex; align-items: center; gap: 10px;
}
.nav-status {
    text-align: right; display: none;
}
@media (min-width: 860px) { .nav-status { display: block; } }
.nav-status b { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; display: block; }
.nav-status small { font-size: 10.5px; color: var(--green); display: flex; align-items: center; gap: 5px; justify-content: flex-end; }
.nav-status .dot {
    width: 6px; height: 6px; background: var(--green); border-radius: 50%;
    box-shadow: 0 0 8px rgba(16,217,137,0.7); animation: pulse-dot 2s ease-in-out infinite;
}

.mobile-menu-btn {
    display: none; font-size: 15px; cursor: pointer; color: var(--text-2);
    width: 36px; height: 36px; align-items: center; justify-content: center;
    border-radius: 10px; background: var(--glass); border: 1px solid var(--border);
    transition: 0.2s;
}
.mobile-menu-btn:hover { color: var(--text); background: var(--glass-hover); }

/* ════════════════════════════════════════════════════
   BANNER SLIDER / HERO
════════════════════════════════════════════════════ */
.global-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 20px auto 30px;
    border-radius: 24px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
}
.slider-wrapper { display: flex; height: 100%; transition: transform 0.8s ease-in-out; }
.slide {
    min-width: 100%; height: 100%;
    background-size: cover; background-position: center;
    background-color: var(--bg-1);
}
.slide.gradient {
    background-image:
        radial-gradient(ellipse 70% 100% at 20% 120%, rgba(34,159,245,0.35), transparent 65%),
        radial-gradient(ellipse 60% 90% at 85% -10%, rgba(109,91,208,0.3), transparent 60%),
        linear-gradient(135deg, #061625, #0c1030, #04121f);
}
.slider-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(3,9,16,0.88) 0%, rgba(3,9,16,0.22) 100%);
    display: flex; align-items: center;
    padding: 0 50px; pointer-events: none;
}
.slider-dots {
    position: absolute; bottom: 14px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 6px; z-index: 4;
}
.slider-dots i {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.28); transition: 0.3s; cursor: pointer;
}
.slider-dots i.on { width: 20px; border-radius: 4px; background: var(--primary); }

.hero-content { position: relative; z-index: 2; }
.hero-label {
    font-size: 9px; font-weight: 800; letter-spacing: 4px;
    color: var(--primary-2); text-transform: uppercase;
    margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
    content: ''; width: 30px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,159,245,0.6));
    display: inline-block;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: 50px; font-weight: 900;
    letter-spacing: -2px; line-height: 0.95;
    color: var(--text);
    text-shadow: 0 0 100px rgba(34,159,245,0.18);
}
.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--secondary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p {
    font-size: 12.5px; color: rgba(255,255,255,0.42);
    margin-top: 13px; letter-spacing: 0.3px; line-height: 1.7;
}
.hero-cta { margin-top: 18px; pointer-events: auto; }

/* halaman dalam: banner pendek */
.small-banner { height: 150px; margin-bottom: 24px; }
.small-banner .hero-content h1 { font-size: 30px; letter-spacing: -1px; }

/* ════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════ */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.01);
    position: relative; z-index: 10;
}
.trust-bar-inner {
    max-width: 1200px; margin: 0 auto; padding: 11px 28px;
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; color: var(--text-3);
    letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════ */
.stats-row {
    max-width: 1200px; margin: 26px auto 0;
    padding: 0 28px;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
    position: relative; z-index: 10;
}
.stat-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px; text-align: center;
    transition: all 0.3s; position: relative; overflow: hidden;
    animation: fadeInUp 0.4s ease-out both;
}
.stat-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(34,159,245,0.05), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.stat-card:hover {
    border-color: rgba(34,159,245,0.18);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(34,159,245,0.07);
}
.stat-card:hover::after { opacity: 1; }
.stat-icon-top { font-size: 15px; margin-bottom: 7px; display: block; }
.stat-num {
    font-size: 24px; font-weight: 900; color: var(--text);
    font-family: var(--font-mono); letter-spacing: -1px;
}
.stat-label {
    font-size: 9.5px; color: var(--text-3); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-top: 5px;
}
.stat-card:nth-child(1) { animation-delay: 0.04s; }
.stat-card:nth-child(2) { animation-delay: 0.09s; }
.stat-card:nth-child(3) { animation-delay: 0.14s; }
.stat-card:nth-child(4) { animation-delay: 0.19s; }

/* ════════════════════════════════════════════════════
   CONTAINER + SECTION TITLE
════════════════════════════════════════════════════ */
.main-container {
    max-width: 1200px; margin: 0 auto;
    padding: 32px 28px 0;
    position: relative; z-index: 10;
}
.section-title {
    font-size: 9px; font-weight: 800;
    letter-spacing: 3.5px; color: var(--text-3);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
}
.section-title em { color: var(--primary); font-style: normal; font-size: 10px; }
.section-title::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(34,159,245,0.2), transparent);
}
.page-section { animation: fadeInUp 0.28s ease-out; }

/* ════════════════════════════════════════════════════
   FILTER TABS
════════════════════════════════════════════════════ */
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-3);
    padding: 6px 16px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2px; cursor: pointer;
    transition: all 0.18s;
}
.filter-tab:hover { color: var(--text-2); background: var(--glass); border-color: var(--border-2); }
.filter-tab.active { background: rgba(34,159,245,0.1); border-color: rgba(34,159,245,0.3); color: var(--primary-2); }

/* ════════════════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════════════════ */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.pcard {
    border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer; display: block;
    transition: transform 0.32s cubic-bezier(0.34, 1.35, 0.64, 1),
                border-color 0.25s, box-shadow 0.32s;
    border: 1px solid var(--border);
    background: var(--bg-1);
    position: relative;
    animation: pcardIn 0.4s ease-out both;
}
.pcard:hover {
    transform: translateY(-8px) scale(1.018);
    border-color: rgba(34,159,245,0.28);
    box-shadow: 0 20px 56px rgba(34,159,245,0.11), 0 0 0 1px rgba(34,159,245,0.05);
}
.pcard.sold-out { opacity: 0.62; filter: saturate(0.5); }
.pcard.sold-out:hover { transform: none; border-color: var(--border); box-shadow: none; }

.pcard-img-wrap { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.pcard-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pcard:hover .pcard-img { transform: scale(1.07); }
.pcard-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(3,9,16,0.05) 0%, rgba(3,9,16,0.18) 35%, rgba(3,9,16,0.88) 100%);
}
.pcard-top {
    position: absolute; top: 10px; left: 10px; right: 10px;
    display: flex; justify-content: space-between; align-items: flex-start; z-index: 2;
}
.pcard-cat {
    font-size: 8.5px; font-weight: 800; letter-spacing: 1.2px;
    padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff;
}
.pcard-cat.FF { background: rgba(249,115,22,0.85); }
.pcard-cat.ML { background: rgba(109,91,208,0.85); }
.pcard-cat.VVIP { background: linear-gradient(135deg, #f59e0b, #9333ea); box-shadow: 0 2px 10px rgba(245,158,11,0.35); }
.pcard-cat.GRATIS { background: linear-gradient(135deg, #10d989, #06b6d4); color: #022c22; font-weight: 900; box-shadow: 0 2px 10px rgba(16,217,137,0.35); }
.pcard-hot {
    font-size: 8px; font-weight: 900; letter-spacing: 1px;
    padding: 4px 9px; border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), #0b6bb5);
    color: #fff; box-shadow: 0 2px 12px rgba(34,159,245,0.4);
}
.pcard-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px 12px; z-index: 2; }
.pcard-title {
    font-size: 13.5px; font-weight: 800; color: #fff; line-height: 1.25;
    text-shadow: 0 1px 10px rgba(0,0,0,0.7);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcard-sub { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; font-weight: 500; }
.pcard-price {
    font-size: 12px; font-weight: 800; color: var(--green); margin-top: 4px;
    font-family: var(--font-mono); letter-spacing: -0.5px;
}
.pcard-price small { color: rgba(255,255,255,0.4); font-family: var(--font); font-weight: 600; }
.pcard-stock {
    position: absolute; bottom: 10px; right: 10px;
    font-size: 10px; font-weight: 700; color: #fff;
    background: rgba(0,0,0,0.6); padding: 3px 8px;
    border-radius: 6px; z-index: 3; border: 1px solid rgba(255,255,255,0.1);
}
.pcard-stock.no { background: rgba(244,63,94,0.8); border-color: rgba(255,255,255,0.16); }

.pcard:nth-child(1) { animation-delay: 0.00s; }
.pcard:nth-child(2) { animation-delay: 0.05s; }
.pcard:nth-child(3) { animation-delay: 0.10s; }
.pcard:nth-child(4) { animation-delay: 0.15s; }
.pcard:nth-child(n+5) { animation-delay: 0.20s; }
@keyframes pcardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ════════════════════════════════════════════════════
   ANNOUNCEMENTS
════════════════════════════════════════════════════ */
.notes { display: grid; gap: 10px; margin-bottom: 26px; }
.note {
    display: flex; gap: 12px; padding: 13px 16px;
    border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--glass); position: relative; overflow: hidden;
}
.note::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--secondary); }
.note.warning::before { background: var(--amber); }
.note.success::before { background: var(--green); }
.note.danger::before  { background: #f43f5e; }
.note-i { font-size: 16px; line-height: 1.5; }
.note b { display: block; font-size: 13.5px; font-weight: 800; margin-bottom: 2px; }
.note div > span { color: var(--text-2); font-size: 12.5px; line-height: 1.65; }

/* ════════════════════════════════════════════════════
   PRODUCT PAGE — HEADER + STEPS
════════════════════════════════════════════════════ */
.topup-header {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px; position: relative; overflow: hidden;
}
.topup-header::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.topup-header img {
    width: 58px; height: 58px; border-radius: 12px; object-fit: cover;
    border: 1px solid var(--border-hot); flex-shrink: 0;
}
.topup-header h3 { font-size: 17px; font-weight: 900; line-height: 1.2; }
.badge-auto { color: var(--green); font-size: 10.5px; font-weight: 700; margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.btn-change-game {
    margin-left: auto; flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); color: var(--text-2);
    padding: 8px 14px; border-radius: 10px; cursor: pointer;
    font-weight: 700; font-size: 12px; transition: 0.18s;
    display: flex; align-items: center; gap: 6px;
}
.btn-change-game:hover { background: var(--glass-hover); color: var(--text); border-color: var(--border-2); }

.topup-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 20px; align-items: start; }

.step-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px; overflow: hidden;
    transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--border-2); }
.step-header {
    background: rgba(255,255,255,0.016);
    padding: 12px 20px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
}
.step-num {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, var(--primary), #0b6bb5);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 10px; flex-shrink: 0;
    box-shadow: 0 0 14px rgba(34,159,245,0.4);
}
.step-title { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-2); }
.step-body { padding: 16px 20px; }

/* durasi */
.durations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.duration-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 14px 10px; text-align: center;
    cursor: pointer; transition: all 0.18s; position: relative; display: block;
}
.duration-card:hover { border-color: rgba(34,159,245,0.28); background: rgba(34,159,245,0.055); transform: translateY(-2px); }
.duration-card.active {
    border-color: var(--primary);
    background: rgba(34,159,245,0.1);
    box-shadow: 0 0 0 1px rgba(34,159,245,0.14), 0 4px 16px rgba(34,159,245,0.1);
}
.duration-card.disabled { opacity: 0.38; cursor: not-allowed; }
.duration-card.disabled:hover { transform: none; border-color: rgba(255,255,255,0.06); background: rgba(255,255,255,0.022); }
.duration-card input { position: absolute; opacity: 0; pointer-events: none; }
.dur-name { font-weight: 800; font-size: 13px; margin-bottom: 5px; }
.dur-price { font-size: 11px; color: var(--green); font-weight: 700; font-family: var(--font-mono); }
.dur-price del { color: var(--text-3); font-weight: 500; margin-right: 5px; }
.dur-stock { font-size: 9.5px; color: var(--text-3); margin-top: 5px; font-weight: 700; }

/* metode bayar */
.payment-method {
    background: rgba(34,159,245,0.04);
    border: 1px solid rgba(34,159,245,0.16);
    border-radius: var(--radius); padding: 14px 18px;
    display: flex; align-items: center; gap: 14px; transition: 0.18s;
}
.payment-method:hover { background: rgba(34,159,245,0.08); }
.pm-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; box-shadow: 0 4px 14px rgba(34,159,245,0.28);
}
.pm-name { font-weight: 800; font-size: 13.5px; }
.pm-desc { font-size: 10px; color: var(--text-3); margin-top: 3px; }
.pm-check {
    margin-left: auto; width: 20px; height: 20px;
    background: var(--green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; color: #fff; box-shadow: 0 0 10px rgba(16,217,137,0.4);
}

/* ringkasan */
.summary-card {
    padding: 20px; position: sticky; top: 80px;
    border: 1px solid rgba(34,159,245,0.1);
    background: var(--glass);
    border-radius: var(--radius-lg);
}
.summary-label {
    font-size: 8.5px; font-weight: 800; letter-spacing: 3px;
    color: var(--text-3); text-transform: uppercase;
    margin-bottom: 16px; padding-bottom: 13px; border-bottom: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--text-3); margin-bottom: 10px; }
.summary-row span:last-child { color: var(--text-2); font-weight: 700; text-align: right; }
.summary-total {
    border-top: 1px solid var(--border); padding-top: 13px;
    margin-top: 4px; margin-bottom: 16px;
    display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total span:first-child { font-size: 11px; color: var(--text-3); font-weight: 700; }
.summary-total span:last-child {
    font-size: 21px; font-weight: 900; color: var(--green);
    font-family: var(--font-mono); letter-spacing: -1px;
}

/* fitur list */
.fitur { list-style: none; display: grid; gap: 7px; }
.fitur li { padding-left: 22px; position: relative; color: var(--text-2); font-size: 12.5px; line-height: 1.6; }
.fitur li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

/* ════════════════════════════════════════════════════
   FORM
════════════════════════════════════════════════════ */
.form { display: grid; gap: 13px; }
.input-group { position: relative; }
.fld label, .input-label {
    display: block; font-size: 9.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-2); margin-bottom: 8px;
}
.inp, .form-input {
    width: 100%;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 12px 16px; border-radius: var(--radius);
    color: var(--text); font-size: 14px;
    outline: none; transition: all 0.2s;
}
.inp::placeholder, .form-input::placeholder { color: var(--text-3); }
.inp:focus, .form-input:focus {
    border-color: rgba(34,159,245,0.45);
    box-shadow: 0 0 0 3px rgba(34,159,245,0.07);
    background: rgba(0,0,0,0.38);
}
textarea.inp { min-height: 96px; resize: vertical; line-height: 1.6; }
select.inp {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.hint, .input-note {
    font-size: 11px; color: var(--text-3); margin-top: 8px;
    display: flex; align-items: flex-start; gap: 6px; line-height: 1.6;
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border: 1px solid var(--border);
    border-radius: var(--radius); font-weight: 800; font-size: 13px;
    cursor: pointer; transition: all 0.2s;
    background: rgba(255,255,255,0.04); color: var(--text-2);
}
.btn:hover { background: var(--glass-hover); color: var(--text); border-color: var(--border-2); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-w { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 11.5px; border-radius: 10px; }
.btn-g { }

.btn-p, .btn-buy {
    background: linear-gradient(135deg, var(--primary) 0%, #0b6bb5 100%);
    color: #fff; border: none;
    padding: 14px 20px; border-radius: var(--radius);
    font-size: 11px; font-weight: 900; cursor: pointer;
    text-transform: uppercase; letter-spacing: 2px;
    transition: all 0.22s; box-shadow: 0 4px 22px rgba(34,159,245,0.32);
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-p::before, .btn-buy::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent);
    opacity: 0; transition: opacity 0.18s;
}
.btn-p:hover:not([disabled])::before, .btn-buy:hover:not([disabled])::before { opacity: 1; }
.btn-p:hover:not([disabled]), .btn-buy:hover:not([disabled]) {
    transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,159,245,0.42); color: #fff;
}
.btn-p:active:not([disabled]), .btn-buy:active:not([disabled]) { transform: translateY(0); }
.btn-p[disabled], .btn-buy[disabled] {
    background: rgba(255,255,255,0.04); color: var(--text-3);
    cursor: not-allowed; box-shadow: none;
}
.btn-p.btn-sm { padding: 9px 16px; font-size: 10px; letter-spacing: 1.4px; }

.btn-ok {
    background: linear-gradient(135deg, #10d989, #059669); color: #fff; border: none;
    box-shadow: 0 4px 18px rgba(16,217,137,0.28); text-transform: uppercase;
    letter-spacing: 1.6px; font-size: 10.5px; font-weight: 900;
}
.btn-ok:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(16,217,137,0.38); }
.btn-d {
    background: rgba(244,63,94,0.1); color: #ff8fa3;
    border: 1px solid rgba(244,63,94,0.24);
}
.btn-d:hover { background: rgba(244,63,94,0.18); color: #ffc2cd; border-color: rgba(244,63,94,0.4); }

.spin, .spinner {
    border: 2px solid rgba(255,255,255,0.12);
    width: 13px; height: 13px; border-radius: 50%;
    border-left-color: currentColor;
    animation: spin 0.7s linear infinite;
    display: inline-block; vertical-align: middle;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulse-dot { 0%,100% { opacity: 1 } 50% { opacity: 0.3 } }

/* ════════════════════════════════════════════════════
   ALERTS / PILLS / BOX
════════════════════════════════════════════════════ */
.alert {
    padding: 12px 16px; border-radius: var(--radius);
    margin-bottom: 12px; font-size: 12.5px; font-weight: 600;
    display: flex; align-items: flex-start; gap: 9px; line-height: 1.6;
    border: 1px solid;
}
.alert.error, .alert.danger, .alert-error { background: rgba(244,63,94,0.09);  border-color: rgba(244,63,94,0.22);  color: #ff8fa3; }
.alert.success, .alert-success        { background: rgba(16,217,137,0.08); border-color: rgba(16,217,137,0.2); color: #34d399; }
.alert.warning                        { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.22); color: #fcd34d; }
.alert.info                           { background: rgba(109,91,208,0.09); border-color: rgba(109,91,208,0.22); color: #a9bce8; }

.pill { display: inline-block; padding: 4px 11px; border-radius: 20px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.pill.pending  { background: rgba(251,191,36,0.12); color: var(--amber); }
.pill.paid     { background: rgba(16,217,137,0.12); color: var(--green); }
.pill.expired,
.pill.canceled { background: rgba(244,63,94,0.13); color: #ff8fa3; }

.box, .center-form-box {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
}
.center-form-box { max-width: 520px; margin: 0 auto; }
.box h2, .center-form-box h2 { font-size: 19px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.3px; }
.box .sub, .center-form-box p.sub { font-size: 12.5px; color: var(--text-3); margin-bottom: 20px; line-height: 1.7; }

.rows { display: grid; margin-top: 4px; }
.row {
    display: flex; gap: 14px; padding: 11px 0;
    border-bottom: 1px solid var(--border); font-size: 12.5px;
}
.row:first-child { border-top: 1px solid var(--border); }
.row span { color: var(--text-3); font-weight: 600; }
.row b { margin-left: auto; text-align: right; font-weight: 700; color: var(--text-2); }

.empty { text-align: center; padding: 50px 20px; color: var(--text-3); }
.empty .big { font-size: 38px; margin-bottom: 10px; opacity: 0.55; }
.crumb { font-size: 11.5px; color: var(--text-3); font-weight: 600; margin-bottom: 4px; }
.crumb a { color: var(--text-2); }
.crumb a:hover { color: var(--primary-2); }
.mono { font-family: var(--font-mono); }
.muted { color: var(--text-3); }

/* ════════════════════════════════════════════════════
   INVOICE
════════════════════════════════════════════════════ */
.inv { max-width: 460px; margin: 0 auto; }
.invoice-modal {
    background: var(--bg-1);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(34,159,245,0.07);
}
.invoice-modal-header {
    padding: 15px 20px; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.invoice-modal-header h2 {
    font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--text-2);
}
.invoice-modal-body { padding: 22px 20px; }

.inv-ico {
    width: 62px; height: 62px; border-radius: 50%;
    display: grid; place-items: center; margin: 4px auto 14px; font-size: 27px;
}
.inv-ico.pending { background: rgba(251,191,36,0.1); border: 2px solid rgba(251,191,36,0.3); }
.inv-ico.paid    { background: rgba(16,217,137,0.1); border: 2px solid rgba(16,217,137,0.35); }
.inv-ico.dead    { background: rgba(244,63,94,0.1);  border: 2px solid rgba(244,63,94,0.32); }

.invoice-total {
    font-size: 26px; font-weight: 900; color: var(--green);
    text-align: center; font-family: var(--font-mono); letter-spacing: -1px;
}
.order-id {
    font-size: 10px; font-weight: 700; color: var(--text-3);
    text-align: center; display: block; letter-spacing: 2.5px;
    font-family: var(--font-mono); margin-top: 5px;
}
.countdown { font-family: var(--font-mono); font-weight: 800; color: var(--amber); font-variant-numeric: tabular-nums; }

.status-steps { display: flex; justify-content: space-between; position: relative; padding: 20px 0 6px; }
.status-steps::before { content: ''; position: absolute; top: 32px; left: 26px; right: 26px; height: 1px; background: var(--border); }
.status-progress-bar { position: absolute; top: 32px; left: 26px; height: 1px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.5s; }
.step-node { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; flex: 1; }
.step-circle {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--bg-1); border: 1.5px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 800; color: var(--text-3);
    margin-bottom: 7px; transition: all 0.3s;
}
.step-node.active .step-circle { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 12px rgba(34,159,245,0.35); }
.step-node.completed .step-circle { background: var(--green); border-color: var(--green); color: #fff; }
.step-label { font-size: 9.5px; font-weight: 700; color: var(--text-3); letter-spacing: 0.3px; }

.keybox {
    margin-top: 18px; padding: 16px;
    border-radius: var(--radius);
    border: 1px dashed rgba(16,217,137,0.4);
    background: rgba(16,217,137,0.05);
}
.keybox label {
    display: block; font-size: 8.5px; font-weight: 800;
    letter-spacing: 3px; color: var(--green);
    text-transform: uppercase; margin-bottom: 10px;
}
.keyval {
    font-family: var(--font-mono); font-size: 14px; font-weight: 700;
    word-break: break-all; background: rgba(0,0,0,0.4);
    padding: 13px 15px; border-radius: 10px;
    border: 1px solid var(--border); user-select: all; line-height: 1.5;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
footer {
    text-align: center; padding: 46px 28px 34px;
    border-top: 1px solid var(--border);
    margin-top: 76px; position: relative; z-index: 10;
}
footer::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 180px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 900; margin-bottom: 8px; color: var(--text); }
.footer-logo span {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-sub { font-size: 11.5px; color: var(--text-3); margin-bottom: 14px; line-height: 1.6; }
.footer-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.footer-link { color: #229ED9; font-size: 12px; font-weight: 700; transition: opacity 0.2s; }
.footer-link:hover { opacity: 0.75; }
.footer-copy { font-size: 11px; color: var(--text-3); opacity: 0.4; margin-top: 16px; }

.floating-chat {
    position: fixed; bottom: 24px; right: 24px;
    background: #25D366; color: #fff;
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.4);
    z-index: 999; transition: transform 0.3s, box-shadow 0.3s; font-size: 24px;
}
.floating-chat:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(37,211,102,0.6); color: #fff; }

/* ════════════════════════════════════════════════════
   FLOATING CS ADMIN WHATSAPP WIDGET
════════════════════════════════════════════════════ */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: rgba(18, 25, 43, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 211, 102, 0.5);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.floating-wa-btn:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: #25D366;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(37, 211, 102, 0.45);
    color: #fff;
}
.floating-wa-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}
.floating-wa-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.floating-wa-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.floating-wa-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #10d989;
    border: 2px solid #0f172a;
    border-radius: 50%;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 217, 137, 0.7); }
    70% { box-shadow: 0 0 0 7px rgba(16, 217, 137, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 217, 137, 0); }
}
.floating-wa-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}
.floating-wa-sub {
    font-size: 9.5px;
    font-weight: 700;
    color: #10d989;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.floating-wa-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
}

@media (max-width: 960px) {
    .floating-wa-btn {
        bottom: 84px;
        right: 16px;
        padding: 5px 14px 5px 5px;
    }
    .floating-wa-avatar-wrap {
        width: 38px;
        height: 38px;
    }
    .floating-wa-title {
        font-size: 12px;
    }
}

/* ════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .game-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
    .topup-layout { grid-template-columns: 1fr; }
    .summary-card { position: static; }
    .nav-links {
        display: none; flex-direction: column; align-items: stretch;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(3,9,16,0.98); backdrop-filter: blur(24px);
        padding: 10px; border-bottom: 1px solid var(--border);
        gap: 2px; z-index: 300;
    }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: flex; }
    .nav-status { display: none; }
    .hero-content h1 { font-size: 38px; }
    .global-slider-container { height: 240px; }
}
@media (max-width: 640px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .durations-grid { grid-template-columns: repeat(2,1fr); }
    .stats-row { grid-template-columns: repeat(2,1fr); gap: 8px; padding: 0 16px; }
    .hero-content h1 { font-size: 32px; }
    .main-container { padding: 22px 16px 0; }
    .trust-bar-inner { gap: 15px; padding: 11px 16px; }
    .nav-container { padding: 12px 16px; }
    .filter-tab { padding: 5px 12px; font-size: 10.5px; }
    .global-slider-container { border-radius: 14px; margin: 14px 16px 22px; height: 210px; }
    .slider-overlay { padding: 0 22px; background: linear-gradient(to right, rgba(3,9,16,0.9), rgba(3,9,16,0.5)); }
    .small-banner { height: 128px; }
    .small-banner .hero-content h1 { font-size: 24px; }
    .topup-header { padding: 14px; gap: 12px; }
    .topup-header img { width: 48px; height: 48px; }
    .topup-header h3 { font-size: 15px; }
    .btn-change-game { padding: 7px 11px; font-size: 11px; }
    .box, .center-form-box { padding: 20px 16px; }
    .floating-chat { width: 48px; height: 48px; font-size: 21px; bottom: 18px; right: 18px; }
}

/* ════════════════════════════════════════════════════
   ✦ LAPISAN PREMIUM
════════════════════════════════════════════════════ */

/* --- tekstur grain halus di seluruh halaman --- */
body::after {
    content: ''; position: fixed; inset: 0; z-index: 1;
    pointer-events: none; opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- bar progres scroll --- */
.scroll-bar {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    z-index: 200; transition: width .1s linear;
    box-shadow: 0 0 12px rgba(34,159,245,.7);
}

/* --- canvas jaringan saraf di hero --- */
.hero-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; opacity: .55; pointer-events: none;
}

/* --- muncul saat di-scroll --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-canvas { display: none; }
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- garis tepi gradien untuk kartu penting --- */
.glow-edge { position: relative; }
.glow-edge::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    padding: 1px; pointer-events: none;
    background: linear-gradient(135deg, rgba(34,159,245,.55), rgba(109,91,208,.35) 45%, transparent 75%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: .75; transition: opacity .3s;
}
.glow-edge:hover::before { opacity: 1; }

/* --- sapuan kilau saat hover kartu --- */
.pcard::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 45%;
    left: -60%; z-index: 3; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(190,230,255,.16), transparent);
    transition: left .65s cubic-bezier(.22,1,.36,1);
}
.pcard:hover::after { left: 115%; }
.pcard.sold-out::after { display: none; }

/* --- judul bagian versi besar --- */
.sec-head { margin-bottom: 20px; }
.sec-eyebrow {
    font-size: 9px; font-weight: 800; letter-spacing: 3.5px;
    color: var(--primary-2); text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.sec-eyebrow::before {
    content: ''; width: 24px; height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}
.sec-head h2 {
    font-family: var(--font-display); font-size: 26px; font-weight: 900;
    letter-spacing: -1px; line-height: 1.1;
}
.sec-head h2 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-2) 60%, #bfe6ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-head p { font-size: 12.5px; color: var(--text-3); margin-top: 6px; line-height: 1.65; }

/* --- baris pencarian + filter --- */
.catalog-bar {
    display: flex; gap: 10px; align-items: center;
    flex-wrap: wrap; margin-bottom: 16px;
}
.search-wrap { position: relative; flex: 1; min-width: 200px; }
.search-wrap input {
    width: 100%; background: rgba(0,0,0,.3);
    border: 1px solid var(--border); border-radius: 20px;
    padding: 9px 16px 9px 38px; color: var(--text); font-size: 12.5px;
    outline: none; transition: .2s;
}
.search-wrap input:focus { border-color: rgba(34,159,245,.45); box-shadow: 0 0 0 3px rgba(34,159,245,.08); }
.search-wrap .ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 12px; opacity: .5; }
.result-count { font-size: 11px; color: var(--text-3); font-weight: 700; }

/* --- badge di kartu produk --- */
.pcard-ribbon {
    position: absolute; top: 0; right: 0; z-index: 4;
    background: linear-gradient(135deg, var(--amber), #f59e0b);
    color: #1a1200; font-size: 8px; font-weight: 900; letter-spacing: 1px;
    padding: 4px 10px; border-bottom-left-radius: 10px;
    box-shadow: 0 3px 12px rgba(251,191,36,.35);
}
/* --- langkah "cara order" --- */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.how-card {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 22px 20px;
    position: relative; overflow: hidden; transition: .28s;
}
.how-card:hover { transform: translateY(-4px); border-color: rgba(34,159,245,.24); box-shadow: 0 16px 40px rgba(34,159,245,.08); }
.how-n {
    font-family: var(--font-display); font-size: 46px; font-weight: 900;
    line-height: 1; letter-spacing: -3px;
    background: linear-gradient(180deg, rgba(34,159,245,.5), rgba(34,159,245,.04));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    position: absolute; top: 12px; right: 16px;
}
.how-ico { font-size: 22px; margin-bottom: 12px; }
.how-card h3 { font-size: 14.5px; font-weight: 800; margin-bottom: 6px; }
.how-card p { font-size: 12px; color: var(--text-3); line-height: 1.7; }

/* --- toast --- */
.toast-wrap {
    position: fixed; z-index: 900; left: 50%; bottom: 22px;
    transform: translateX(-50%); display: grid; gap: 8px; width: min(92vw, 380px);
}
.toast {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(10,22,36,.96); backdrop-filter: blur(18px);
    border: 1px solid var(--border-2); border-radius: 14px;
    padding: 12px 15px; font-size: 12.5px; font-weight: 600; line-height: 1.55;
    box-shadow: 0 18px 45px rgba(0,0,0,.55);
    animation: toast-in .35s cubic-bezier(.22,1,.36,1);
}
.toast.success { border-color: rgba(16,217,137,.3); }
.toast.error, .toast.danger { border-color: rgba(244,63,94,.3); }
.toast.warning { border-color: rgba(251,191,36,.3); }
.toast.info { border-color: rgba(109,91,208,.3); }
.toast.out { animation: toast-out .3s forwards; }
@keyframes toast-in  { from { opacity: 0; transform: translateY(14px) scale(.97); } }
@keyframes toast-out { to   { opacity: 0; transform: translateY(10px) scale(.98); } }

/* --- riak pada tombol utama --- */
.btn-buy, .btn-p { isolation: isolate; }
.ripple {
    position: absolute; border-radius: 50%; transform: scale(0);
    background: rgba(255,255,255,.35); pointer-events: none;
    animation: ripple .6s ease-out forwards; z-index: 0;
}
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* --- kartu durasi: tanda centang --- */
.duration-card { padding-top: 18px; }
.duration-card .tick {
    position: absolute; top: 7px; right: 7px;
    width: 17px; height: 17px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.14);
    display: grid; place-items: center; font-size: 8px;
    color: transparent; transition: .2s;
}
.duration-card.active .tick {
    background: var(--primary); border-color: var(--primary); color: #fff;
    box-shadow: 0 0 12px rgba(34,159,245,.55);
}
.dur-per { font-size: 9px; color: var(--text-3); margin-top: 3px; }

/* --- cincin hitung mundur invoice --- */
.ring-wrap { display: grid; place-items: center; margin: 4px auto 14px; width: 84px; height: 84px; position: relative; }
.ring-wrap svg { transform: rotate(-90deg); }
.ring-bg   { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 4; }
.ring-fg   { fill: none; stroke: url(#ringGrad); stroke-width: 4; stroke-linecap: round; transition: stroke-dashoffset 1s linear; }
.ring-txt  { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.ring-txt b { font-family: var(--font-mono); font-size: 15px; font-weight: 800; display: block; letter-spacing: -.5px; }
.ring-txt small { font-size: 8px; color: var(--text-3); letter-spacing: 1.5px; font-weight: 800; }

/* --- footer 3 kolom --- */
.footer-grid {
    max-width: 1200px; margin: 0 auto 30px; padding: 0 28px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 26px; text-align: left;
}
.footer-col h4 {
    font-size: 9px; font-weight: 800; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--text-2); margin-bottom: 12px;
}
.footer-col a, .footer-col p { display: block; font-size: 12.5px; color: var(--text-3); margin-bottom: 8px; line-height: 1.6; }
.footer-col a:hover { color: var(--primary-2); }
.footer-about { font-size: 12.5px; color: var(--text-3); line-height: 1.75; }

/* ── responsif tambahan ── */
@media (max-width: 860px) {
    .how-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; padding: 0 20px; }
    .sec-head h2 { font-size: 21px; }
}
@media (max-width: 640px) {
    .catalog-bar { gap: 8px; }
    .toast-wrap { bottom: 84px; }
}

/* ════════════════════════════════════════════════════
   ✦✦ LAPISAN LANJUTAN
════════════════════════════════════════════════════ */

/* --- sorotan mengikuti kursor --- */
.spot { position: relative; }
.spot::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    pointer-events: none; z-index: 5; opacity: 0; transition: opacity .35s;
    background: radial-gradient(340px circle at var(--mx,50%) var(--my,50%),
                rgba(120,205,255,.14), transparent 62%);
}
.spot:hover::after { opacity: 1; }

/* --- kemiringan 3D kartu produk --- */
.game-grid { perspective: 1400px; }
.pcard { transform-style: preserve-3d; will-change: transform; }
.pcard.tilt { transition: transform .12s ease-out, border-color .25s, box-shadow .32s; }

/* --- navbar menyusut saat di-scroll --- */
.navbar { transition: padding .28s cubic-bezier(.22,1,.36,1), background .28s, box-shadow .28s; }
.navbar.shrink { box-shadow: 0 8px 34px rgba(0,0,0,.5); background: rgba(3,9,16,.94); }
.navbar.shrink .nav-container { padding-top: 8px; padding-bottom: 8px; }
.navbar.shrink .nav-brand { font-size: 17px; }
.navbar.shrink .nav-brand .logo { width: 28px; height: 28px; }

/* --- kartu jaminan --- */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.why-card {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px 18px; transition: .28s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(34,159,245,.22); }
.why-ico {
    width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
    font-size: 18px; margin-bottom: 13px;
    background: linear-gradient(135deg, rgba(34,159,245,.18), rgba(109,91,208,.12));
    border: 1px solid rgba(34,159,245,.2);
}
.why-card h3 { font-size: 13.5px; font-weight: 800; margin-bottom: 5px; }
.why-card p { font-size: 11.5px; color: var(--text-3); line-height: 1.7; }

/* --- FAQ --- */
.faq { display: grid; gap: 9px; }
.faq-item {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(34,159,245,.25); }
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    padding: 15px 18px; display: flex; align-items: center; gap: 12px;
    font-size: 13.5px; font-weight: 700; color: var(--text); transition: color .18s;
}
.faq-q:hover { color: var(--primary-2); }
.faq-q .chev {
    margin-left: auto; flex: none; font-size: 11px; color: var(--text-3);
    transition: transform .28s cubic-bezier(.22,1,.36,1); 
}
.faq-item.open .chev { transform: rotate(180deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s cubic-bezier(.22,1,.36,1); }
.faq-a p { padding: 0 18px 16px 46px; font-size: 12.5px; color: var(--text-3); line-height: 1.75; }

/* --- bar beli melayang (HP) --- */
.buy-dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 600;
    display: none; align-items: center; gap: 12px;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: rgba(6,14,24,.96); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-2);
    box-shadow: 0 -10px 34px rgba(0,0,0,.5);
    transform: translateY(110%); transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.buy-dock.show { transform: none; }
.buy-dock .harga { flex: 1; min-width: 0; }
.buy-dock .harga small { display: block; font-size: 9px; letter-spacing: 2px; color: var(--text-3); font-weight: 800; text-transform: uppercase; }
.buy-dock .harga b { font-family: var(--font-mono); font-size: 18px; font-weight: 900; color: var(--green); letter-spacing: -.5px; }
.buy-dock .btn-buy { width: auto; padding: 13px 26px; flex: none; }
@media (max-width: 960px) { .buy-dock { display: flex; } .floating-chat { bottom: 84px; } }

/* --- tombol kembali ke atas --- */
.to-top {
    position: fixed; right: 24px; bottom: 88px; z-index: 640;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(10,22,36,.9); backdrop-filter: blur(14px);
    border: 1px solid var(--border-2); color: var(--text-2);
    display: grid; place-items: center; font-size: 15px; cursor: pointer;
    opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: opacity .28s, transform .28s, color .2s, border-color .2s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { color: var(--primary-2); border-color: rgba(34,159,245,.4); }
@media (max-width: 960px) { .to-top { bottom: 150px; right: 18px; } }

/* --- pemisah sirkuit antar seksi --- */
.divider {
    height: 1px; margin: 46px 0; position: relative;
    background: linear-gradient(90deg, transparent, var(--border-2) 20%, var(--border-2) 80%, transparent);
}
.divider::after {
    content: ''; position: absolute; left: 50%; top: 50%;
    width: 6px; height: 6px; border-radius: 50%; transform: translate(-50%,-50%);
    background: var(--primary); box-shadow: 0 0 14px rgba(34,159,245,.8);
}

/* --- label stok tipis --- */
.pcard-stock.low { background: rgba(251,191,36,.82); color: #241a00; border-color: rgba(255,255,255,.18); }

/* --- pemilih urutan --- */
.sort-wrap { position: relative; }
.sort-wrap select {
    appearance: none; background: rgba(0,0,0,.3); border: 1px solid var(--border);
    border-radius: 20px; padding: 9px 32px 9px 15px; color: var(--text-2);
    font-size: 11.5px; font-weight: 700; cursor: pointer; outline: none; transition: .2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%233d5266' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center;
}
.sort-wrap select:hover { color: var(--text); border-color: var(--border-2); }

/* --- jumlah di tab filter --- */
.filter-tab .n {
    display: inline-block; margin-left: 6px; padding: 1px 6px; border-radius: 10px;
    background: rgba(255,255,255,.07); font-size: 9.5px; font-weight: 800;
}
.filter-tab.active .n { background: rgba(34,159,245,.24); }

/* --- konfeti saat lunas --- */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 800; overflow: hidden; }
.confetti i {
    position: absolute; top: -12px; width: 7px; height: 12px; border-radius: 1px;
    animation: fall linear forwards;
}
@keyframes fall {
    to { transform: translateY(105vh) rotate(760deg); opacity: 0; }
}

/* --- masuk halaman --- */
@keyframes page-in { from { opacity: 0; transform: translateY(8px); } }
.page-section { animation: page-in .4s cubic-bezier(.22,1,.36,1); }

/* --- pintasan keyboard di pencarian --- */
.kbd {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    color: var(--text-3); background: rgba(255,255,255,.06);
    border: 1px solid var(--border); border-radius: 5px; padding: 2px 6px;
    pointer-events: none;
}

@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } .kbd { display: none; } }

/* ════════════════════════════════════════════════════
   IKON — Material Symbols (Google)
════════════════════════════════════════════════════ */
.ms {
    font-family: 'Material Symbols Rounded';
    font-weight: normal; font-style: normal;
    font-size: 20px; line-height: 1;
    letter-spacing: normal; text-transform: none;
    display: inline-block; white-space: nowrap;
    word-wrap: normal; direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    user-select: none;
}
.ms.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.ms.s14  { font-size: 14px; }
.ms.s16  { font-size: 16px; }
.ms.s18  { font-size: 18px; }
.ms.s22  { font-size: 22px; }
.ms.s28  { font-size: 28px; }
.ms.s40  { font-size: 40px; }

/* penyesuaian tempat-tempat yang tadinya emoji */
.trust-item .ms { font-size: 15px; color: var(--primary-2); }
.stat-icon-top .ms { font-size: 20px; color: var(--primary-2); }
.note-i .ms { font-size: 19px; }
.note.info    .note-i .ms { color: var(--secondary); }
.note.warning .note-i .ms { color: var(--amber); }
.note.success .note-i .ms { color: var(--green); }
.note.danger  .note-i .ms { color: #f43f5e; }
.filter-tab .ms { font-size: 15px; margin-right: 3px; }
.pcard-hot .ms  { font-size: 12px; margin-right: 2px; }
.search-wrap .ico .ms { font-size: 16px; }
.why-ico .ms { font-size: 21px; color: var(--primary-2); }
.how-ico .ms { font-size: 24px; color: var(--primary-2); }
.empty .big .ms { font-size: 46px; }
.alert .ms { font-size: 17px; flex: none; margin-top: 1px; }
.input-note .ms { font-size: 14px; flex: none; margin-top: 1px; color: var(--accent); }
.faq-q .chev .ms { font-size: 18px; }
.badge-auto .ms { font-size: 14px; }
.btn-change-game .ms { font-size: 15px; }
.pm-icon .ms { font-size: 19px; color: #fff; }
.pm-check .ms { font-size: 13px; color: #fff; }
.duration-card .tick .ms { font-size: 11px; }
.step-circle .ms { font-size: 13px; }
.inv-ico .ms { font-size: 28px; }
.inv-ico.pending .ms { color: var(--amber); }
.inv-ico.paid .ms    { color: var(--green); }
.inv-ico.dead .ms    { color: #f43f5e; }
.to-top .ms { font-size: 19px; }
.mobile-menu-btn .ms { font-size: 19px; }
.floating-chat .ms { font-size: 25px; color: #fff; }
.toast .ms { font-size: 17px; flex: none; margin-top: 1px; }
.toast.success .ms { color: var(--green); }
.toast.error .ms, .toast.danger .ms { color: #ff8fa3; }
.toast.warning .ms { color: var(--amber); }
.toast.info .ms { color: var(--secondary); }
.side .mi .ic .ms { font-size: 18px; }
.step-num .ms { font-size: 12px; }

/* centang di daftar fitur ikut pakai ikon Google */
.fitur li::before {
    content: "check";
    font-family: 'Material Symbols Rounded';
    font-size: 15px; font-weight: normal;
    line-height: 1.35;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}

/* ════════════════════════════════════════════════════
   VOUCHER + TOMBOL DOWNLOAD
════════════════════════════════════════════════════ */
.voucher-row { display: flex; gap: 8px; }
.voucher-row .inp { text-transform: uppercase; letter-spacing: 1px; }
.voucher-row .btn { flex: none; padding: 12px 20px; }
.voucher-row .inp:disabled { opacity: .6; cursor: not-allowed; }

.vc-msg {
    margin-top: 10px; padding: 10px 13px; border-radius: 10px;
    font-size: 12px; font-weight: 600; line-height: 1.55;
    display: flex; align-items: flex-start; gap: 8px; border: 1px solid;
}
.vc-msg.ok   { background: rgba(16,217,137,.08); border-color: rgba(16,217,137,.24); color: #34d399; }
.vc-msg.bad  { background: rgba(244,63,94,.08);  border-color: rgba(244,63,94,.22);  color: #ff8fa3; }
.vc-msg .ms  { font-size: 15px; flex: none; margin-top: 1px; }

.dl-btn {
    width: 100%; margin-top: 10px;
    background: linear-gradient(135deg, #10d989 0%, #059669 100%);
    box-shadow: 0 4px 22px rgba(16,217,137,.3);
    text-transform: uppercase; letter-spacing: 1.6px; font-size: 10.5px;
}
.dl-btn:hover { box-shadow: 0 8px 30px rgba(16,217,137,.42); }
.dl-btn .ms { font-size: 16px; }
.dl-note {
    display: flex; gap: 7px; align-items: flex-start;
    margin-top: 9px; font-size: 11px; color: var(--text-3); line-height: 1.6;
}
.dl-note .ms { font-size: 13px; flex: none; margin-top: 1px; color: var(--accent); }

/* ringkasan: baris potongan */
#rowPotongan span:last-child { color: var(--green); font-weight: 800; }

/* ════════════════════════════════════════════════════
   MODAL POPUP JOIN SALURAN (Sesuai Referensi Gambar)
════════════════════════════════════════════════════ */
.popup-overlay {
    position: fixed; inset: 0;
    background: rgba(2, 6, 12, 0.78);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}
.popup-overlay.show {
    opacity: 1; visibility: visible;
}
.popup-modal {
    width: 100%; max-width: 420px;
    background: #0d1b2a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.75), 0 0 0 1px rgba(34,159,245,0.22);
    transform: scale(0.92) translateY(16px);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    color: #e6f1fb;
}
.popup-overlay.show .popup-modal {
    transform: scale(1) translateY(0);
}
.popup-head-bar {
    background: linear-gradient(135deg, #1d6bf3 0%, #2563eb 100%);
    padding: 14px 20px;
    text-align: center;
    position: relative;
}
.popup-head-title {
    font-size: 13px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: #ffffff;
}
.popup-btn-close-x {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none;
    color: #fff; width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.18s;
}
.popup-btn-close-x:hover { background: rgba(255,255,255,0.3); }

.popup-inner {
    padding: 24px 22px 20px;
    text-align: center;
}
.popup-avatar-box {
    position: relative;
    width: 100px; height: 100px;
    margin: 0 auto 16px;
}
.popup-avatar-img {
    width: 100%; height: 100%;
    border-radius: 50%; object-fit: cover;
    border: 3px solid #2563eb;
    box-shadow: 0 0 24px rgba(37,99,235,0.45);
}
.popup-channel-name {
    font-size: 18px; font-weight: 800;
    color: #ffffff; letter-spacing: 0.3px;
    margin-bottom: 4px; line-height: 1.3;
}
.popup-channel-sub {
    font-size: 12.5px; color: #7c93ad;
    font-weight: 500; margin-bottom: 18px;
}
.popup-quick-actions {
    display: flex; gap: 10px; justify-content: center;
    margin-bottom: 20px;
}
.popup-pill-btn {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12.5px; font-weight: 600;
    color: #e6f1fb; cursor: pointer;
    transition: all 0.2s ease;
}
.popup-pill-btn:hover {
    background: rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.4);
    color: #7fc9f5;
}
.popup-pill-btn .ms { font-size: 17px; }

.popup-info-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: left;
    margin-bottom: 20px;
}
.popup-info-card-title {
    font-size: 12px; font-weight: 800;
    color: #ffffff; text-transform: uppercase;
    letter-spacing: 0.8px; margin-bottom: 4px;
}
.popup-info-card-date {
    font-size: 11px; color: #7c93ad; margin-bottom: 10px;
}
.popup-info-card-text {
    font-size: 12.5px; color: #d0e1f3;
    line-height: 1.55; white-space: pre-line;
}

.popup-join-btn {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none; border-radius: 14px;
    padding: 14px 20px;
    color: #ffffff; font-size: 14.5px; font-weight: 800;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,99,235,0.42);
    transition: transform 0.2s, box-shadow 0.2s;
}
.popup-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.58);
}
.popup-join-btn .ms { font-size: 20px; }

.popup-footer-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: #7c93ad;
}
.popup-hide-check {
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; user-select: none;
}
.popup-hide-check input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: #2563eb;
    cursor: pointer;
}
.popup-btn-dismiss {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e6f1fb; padding: 7px 18px; border-radius: 10px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    transition: background 0.18s;
}
.popup-btn-dismiss:hover { background: rgba(255,255,255,0.14); }

/* ════════════════════════════════════════════════════
   FREE PRODUCT DETAIL HUB (4 ACTION CARDS)
════════════════════════════════════════════════════ */
.free-hub-box {
    max-width: 900px;
    margin: 0 auto;
}
.free-badge-banner {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16,217,137,0.12);
    border: 1px solid rgba(16,217,137,0.3);
    color: #10d989; font-weight: 800; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px;
    margin-bottom: 14px;
}
.free-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}
@media (max-width: 680px) {
    .free-actions-grid { grid-template-columns: 1fr; }
}
.free-action-card {
    background: #081422;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 22px 20px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.28s;
    position: relative; overflow: hidden;
}
.free-action-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at top right, var(--card-glow, rgba(34,159,245,0.08)), transparent 60%);
    pointer-events: none;
}
.free-action-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border, rgba(34,159,245,0.35));
    box-shadow: 0 16px 40px var(--card-shadow, rgba(0,0,0,0.5));
}
.free-card-header {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 16px;
}
.free-card-ico {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--ico-bg, rgba(34,159,245,0.12));
    color: var(--ico-color, #7fc9f5);
    border: 1px solid var(--ico-border, rgba(34,159,245,0.25));
    flex: none;
}
.free-card-ico .ms { font-size: 24px; }
.free-card-title {
    font-size: 16px; font-weight: 800;
    color: #ffffff; margin-bottom: 4px;
}
.free-card-desc {
    font-size: 12px; color: #7c93ad; line-height: 1.5;
}
.free-card-btn {
    width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 18px; border-radius: 12px;
    font-size: 13px; font-weight: 800;
    color: #ffffff; text-decoration: none;
    background: var(--btn-bg, linear-gradient(135deg, #229ff5, #1068c2));
    box-shadow: 0 6px 20px var(--btn-shadow, rgba(34,159,245,0.3));
    transition: all 0.2s ease;
    border: none; cursor: pointer;
}
.free-card-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}
.free-card-btn.disabled {
    background: rgba(255,255,255,0.06);
    color: #4a5d72; box-shadow: none; cursor: not-allowed;
}

/* Warna-warna kartu gratis */
.card-tutorial-dl {
    --card-glow: rgba(34,159,245,0.1);
    --card-border: rgba(34,159,245,0.4);
    --card-shadow: rgba(34,159,245,0.12);
    --ico-bg: rgba(34,159,245,0.12);
    --ico-color: #38bdf8;
    --ico-border: rgba(34,159,245,0.3);
    --btn-bg: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --btn-shadow: rgba(2,132,199,0.35);
}
.card-tutorial-pasang {
    --card-glow: rgba(168,85,247,0.1);
    --card-border: rgba(168,85,247,0.4);
    --card-shadow: rgba(168,85,247,0.12);
    --ico-bg: rgba(168,85,247,0.12);
    --ico-color: #c084fc;
    --ico-border: rgba(168,85,247,0.3);
    --btn-bg: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    --btn-shadow: rgba(147,51,234,0.35);
}
.card-download-apk {
    --card-glow: rgba(16,217,137,0.1);
    --card-border: rgba(16,217,137,0.4);
    --card-shadow: rgba(16,217,137,0.12);
    --ico-bg: rgba(16,217,137,0.12);
    --ico-color: #34d399;
    --ico-border: rgba(16,217,137,0.3);
    --btn-bg: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --btn-shadow: rgba(16,185,129,0.35);
}
.card-get-key {
    --card-glow: rgba(245,158,11,0.1);
    --card-border: rgba(245,158,11,0.4);
    --card-shadow: rgba(245,158,11,0.12);
    --ico-bg: rgba(245,158,11,0.12);
    --ico-color: #fbbf24;
    --ico-border: rgba(245,158,11,0.3);
    --btn-bg: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    --btn-shadow: rgba(217,119,6,0.35);
}

.free-alert-box {
    background: rgba(234,179,8,0.08);
    border: 1px solid rgba(234,179,8,0.25);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: flex-start; gap: 12px;
    margin: 20px 0; font-size: 13px; color: #fde047;
    line-height: 1.55;
}
.free-alert-box .ms { font-size: 20px; flex: none; color: #facc15; margin-top: 1px; }

