body {
    margin: 0;
    background: #020617; /* 🔥 satu warna solid */
    align-items: center;
    justify-content: center;
}

/* LAYOUT */
.asb-wrap {
    background: #0f172a;
}

/* SIDEBAR */
.asb-sidebar {
    width: 240px;
    background: linear-gradient(180deg,#020617,#0f172a);
    color: #fff;
    padding: 20px;
}

.asb-sidebar h2 {
    color: gold;
    margin-bottom: 20px;
}

.asb-sidebar a {
    display: block;
    color: #cbd5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.asb-sidebar a:hover {
    background: gold;
    color: #000;
}

/* CONTENT JANGAN FLEX LAGI */

/* WRAPPER UTAMA */
.main-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
/* HERO */
.hero-box {
    margin-bottom: 20px;
}

/* DASHBOARD GRID */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.dashboard-cards {
    margin-bottom: 25px;
}
/* REFERRAL CARD */
.ref-card {
    margin: 20px 0;
}
/* PAGE */
.asb-page {
    display: none;
}

/* CARD */
.calc-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}

/* TITLE */
.calc-box h3 {
    color: #0f172a;
    margin-bottom: 20px;
}

/* INPUT */
.calc-box input,
.calc-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* BUTTON */
.calc-box button {
    background: gold;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 5px;
}

.calc-box button:hover {
    background: #facc15;
}

/* HASIL */
#hasil {
    background: #020617;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

/* PAKET CARD */
#paket-list div {
    background: #fff;
    border-left: 5px solid gold;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* TOPBAR */
.asb-topbar {
    display: none;
}

@media(max-width:768px){

    .asb-topbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #020617;
        color: #fff;
        padding: 12px 15px;
        z-index: 1000; /* ðŸ”¥ HARUS PALING ATAS */
        align-items: center;
    }

    #menuToggle {
        font-size: 22px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

}

/* OVERLAY */

@media(max-width:768px){
    .asb-content {
        margin-top: 60px;
    }
}

/* ===== MOBILE FIX TOTAL ===== */
@media(max-width:768px){

    /* TOPBAR FIX */
    .asb-topbar {
        position: fixed;
        top: 0;
        left: 0;
        height: 55px;
        width: 100%;
        background: #020617;
        color: #fff;
        z-index: 1002;
        align-items: center;
        padding: 0 15px;
    }

    /* TOMBOL â˜° PRESISI */
    #menuToggle {
        position: absolute;
        left: 15px;
        top: 30%;
        transform: translateY(-50%);
        font-size: 22px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        z-index: 1003; /* ðŸ”¥ PALING ATAS */
    }

    /* JUDUL DI TENGAH */
    .asb-topbar h3 {
        width: 100%;
        text-align: center;
        margin: 0;
        font-size: 16px;
    }

    /* SIDEBAR */
    .asb-sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        width: 240px;
        height: 100%;
        background: #020617;
        z-index: 1001;
        transition: 0.3s;
    }

    .asb-sidebar.active {
        left: 0;
    }

  

/* kalau login (ada admin bar WP) */
body.admin-bar .asb-topbar {
    top: 32px; /* tinggi admin bar desktop */
}

/* mobile WP admin bar lebih tinggi */


    body.admin-bar .asb-sidebar {
        top: 46px;
    }
}
.asb-topbar {
    z-index: 9999;
}

/* ðŸ”¥ PAKSA SEMUA LINK BISA DIKLIK */
.asb-sidebar a {
    position: relative;
    z-index: 1005;
    pointer-events: auto !important;
}


/* ðŸ”¥ SIDEBAR DI ATAS SEMUA */
.asb-sidebar {
    z-index: 1004 !important;
}

/* ðŸ”¥ TOPBAR PALING ATAS */
.asb-topbar {
    z-index: 1006 !important;
}

/* MOBILE: turunkan isi sidebar */
@media(max-width:768px){

    .asb-sidebar {
        padding-top: 70px; /* ðŸ”¥ ini yang bikin turun */
    }

}
.btn-wa {
    background: #25D366;
    color: #fff;
    margin-top: 15px;
    width: 100%;
    border-radius: 10px;
    padding: 12px;
}

/* jarak tombol di mobile */
@media(max-width:768px){

    .calc-box button {
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%; /* biar full lebar HP */
    }

    /* khusus tombol WA */
    button[onclick="shareWA()"] {
        margin-top: 15px;
    }

}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 10px;
}

.card {
    background: #1e293b;
    color:#fff;
    padding:15px;
    border-radius:10px;
}
/* BACKGROUND CONTENT JADI DARK */
.asb-content {
    background: #020617 !important;
}

/* WRAPPER UTAMA */
.asb-wrap {
    background: #020617 !important;
}

/* BODY */
body {
    background: linear-gradient(180deg, #020617, #0b1220 60%, #0f172a) !important;
}

.asb-content {
    background: transparent !important;
}
.dashboard-cards {
    margin-top: 20px;
}

.card {
    background: linear-gradient(145deg, #0f172a, #020617);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.asb-topbar {
    background: transparent !important;
}
h1, h2, h3 {
    color: #ffffff !important;
}
.asb-content h2 {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.asb-content p {
    color: #cbd5f5 !important;
}
.asb-content > div:first-child {
    background: linear-gradient(135deg, #020617, #0f172a) !important;
    border: 1px solid rgba(255,255,255,0.05);
}
body {
    background: radial-gradient(circle at top, #0f172a, #020617);
}
body {
    background: radial-gradient(circle at 20% 0%, #0f172a, #020617 70%);
    position: relative;
}

/* efek glow halus */
body::before {
    content: "";
    position: fixed;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34,197,94,0.15), transparent);
    filter: blur(100px);
    z-index: 0;
}
.asb-content > div:first-child {
    background: linear-gradient(135deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

/* glow di dalam */
.asb-content > div:first-child::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(34,197,94,0.15);
    filter: blur(80px);
    top: -50px;
    right: -50px;
}
.card {
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* glow hover */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* garis glow bawah */
.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    opacity: 0;
    transition: 0.3s;
}

.card:hover::before {
    opacity: 1;
}
.card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34,197,94,0.5);
}
.asb-sidebar a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.25s;
}

.asb-sidebar a:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

/* menu aktif */
.asb-sidebar a.active {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}
.asb-page {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
button {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(34,197,94,0.4);
}
/* WRAP KHUSUS KALKULATOR */
.calc-box {
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 20px;
}

/* INPUT */
.calc-box input,
.calc-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #020617;
    color: #fff;
}

/* LABEL */
.calc-box label {
    color: #cbd5f5;
    font-size: 13px;
}

/* HASIL */
#hasil {
    margin-top: 15px;
    background: #020617;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
#paket-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.paket-card {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

/* hover biar hidup */
.paket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.paket-action button {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:8px;
    font-size:13px;
}

.paket-action button:last-child {
    background: #dc2626;
}
/* PAKSA SEMUA CARD PAKET JADI DARK */
#paket-list .paket-card {
    background: linear-gradient(145deg, #0f172a, #020617) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}

/* PAKSA SEMUA DIV DALAMNYA */
#paket-list .paket-card * {
    color: #ffffff !important;
}

/* HILANGKAN BACKGROUND PUTIH DARI THEME */
#paket-list div {
    background: transparent !important;
}
.asb-login-form {
    max-width: 400px;
    margin: 80px auto;
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.asb-login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #020617;
    color: #fff;
}

.asb-login-form {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

body, html {
    margin: 0 !important;
    padding: 0 !important;
}

#page, .site, .container {
    margin: 0 !important;
    padding: 0 !important;
}
.asb-login-form {
    position: relative;
    top: -20px; /* opsional adjust dikit */
}
.asb-login-form {
    box-shadow: 0 0 60px rgba(34,197,94,0.1);
}
#refLink {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    background: #020617;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.asb-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.ref-card {
    max-width: 800px;
    margin: 20px auto;
}
#refLink {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #020617;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}
.ref-actions {
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.ref-actions button {
    flex: 1;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.card {
    text-align: center;
}
.asb-content h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.card {
    backdrop-filter: blur(6px);
}


/* DALAMNYA */
.main-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.asb-page {
    width: 100%;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.asb-content {
    display: block !important;
    padding: 30px;
}
.main-wrap {
    max-width: 1200px; /* 🔥 lebih lebar */
    margin: 0 auto;
    padding: 0 20px; /* biar gak nempel pinggir */
}
.asb-content {
    padding-top: 40px; /* 🔥 turun sedikit */
}
.hero-box {
    margin-bottom: 25px;
}
#page-dashboard {
    margin-top: 10px;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 🔥 4 kolom */
    gap: 10px;
}
/* ROOT */
html, body {
    height: 100%;
    margin: 0;
}

/* WRAPPER UTAMA */

.main-wrap {
    width: 100%;
    max-width: 1300px; /* 🔥 lebih luas */
    margin: 0 auto;
    padding: 0 20px;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.hero-box {
    margin-bottom: 30px;
}
.ref-card {
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.asb-sidebar {
    flex-shrink: 0;
}
/* ================= FINAL FIX LAYOUT ================= */

/* RESET */
.asb-content {
    display: block !important;
    padding: 40px 20px !important;
    margin: 0 !important;
}

/* WRAPPER UTAMA */
.main-wrap {
    width: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* HERO */
.hero-box {
    margin-bottom: 30px !important;
}

/* DASHBOARD GRID RESPONSIVE */
.dashboard-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 20px !important;
}

/* CARD */
.card {
    width: 100% !important;
    text-align: center;
}

/* REFERRAL */
.ref-card {
    max-width: 800px !important;
    margin: 0 auto 30px auto !important;
}

/* SIDEBAR JANGAN NGEPUSH */
.asb-sidebar {
    flex-shrink: 0;
}

/* HILANGKAN EFEK NARIK */
.asb-content > * {
    max-width: 100% !important;
}
/* CONTENT */
.asb-content {
    display: block !important;
    padding: 40px 20px !important;
}

/* WRAPPER */
.main-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.hero-box {
    background: linear-gradient(135deg,#0f172a,#020617);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* GRID */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

/* REF */
.ref-card {
    max-width: 800px;
    margin: 0 auto 30px auto;
}
/* CONTENT FULL & SEIMBANG */
.asb-content {
    flex: 1;
    padding: 40px 30px !important;
}

/* WRAPPER JADI LEBIH LEBAR & TENGAH */
.main-wrap {
    width: 100%;
    max-width: 1400px; /* 🔥 diperlebar */
    margin: 0 auto;
}


/* ini penting biar konten gak "lari kanan" */
.asb-content {
    margin-left: 0;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.ref-card {
    max-width: 800px;
    margin: 0 auto 30px auto;
}
/* HAPUS STRETCH */
html, body {
    height: auto !important;
}

/* WRAPPER JANGAN FULL PAKSA */

.hero-box {
    margin-bottom: 25px;
}

.dashboard-cards {
    margin-top: 20px;
}
/* WRAPPER UTAMA */
.main-wrap {
    width: 100%;
    max-width: 100%; /* 🔥 full lebar */
}
/* SIDEBAR FIX WIDTH */
.asb-sidebar {
    width: 220px;
    flex-shrink: 0;
}

/* CONTENT WAJIB FULL */
.asb-content {
    flex: 1; /* 🔥 ini kunci */
    padding: 40px;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.hero-box {
    width: 100%;
}
/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(circle at 20% 0%, #0f172a, #020617 70%);
    font-family: sans-serif;
    color: #fff;
}

/* ================= LAYOUT ================= */
.asb-wrap {
    display: flex;
    min-height: 100vh;
}

/* ================= SIDEBAR ================= */
.asb-sidebar {
    width: 220px;
    background: linear-gradient(180deg,#020617,#0f172a);
    padding: 20px;
    flex-shrink: 0;
}

.asb-sidebar h2 {
    color: gold;
    margin-bottom: 20px;
}

.asb-sidebar a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.2s;
}

.asb-sidebar a:hover,
.asb-sidebar a.active {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

/* ================= CONTENT ================= */
.asb-content {
    flex: 1;
    padding: 40px 30px;
}

/* ================= WRAPPER ================= */
.main-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ================= HERO ================= */
.hero-box {
    background: linear-gradient(135deg,#0f172a,#020617);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

/* ================= DASHBOARD ================= */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* ================= REF ================= */
.ref-card {
    max-width: 700px;
    margin: 30px auto;
}

/* ================= KALKULATOR ================= */
.calc-box {
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 20px;
    border-radius: 14px;
    margin-top: 20px;
}

.calc-box input,
.calc-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #020617;
    color: #fff;
}

/* ================= BUTTON ================= */
button {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    transform: scale(1.05);
}

/* ================= HASIL ================= */
#hasil {
    margin-top: 15px;
    background: #020617;
    padding: 15px;
    border-radius: 10px;
}

/* ================= PAKET ================= */
#paket-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.paket-card {
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 15px;
    border-radius: 12px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .asb-sidebar {
        position: fixed;
        top: 0;
        left: -240px;
        width: 240px;
        height: 100%;
        background: #020617;
        z-index: 999;
        transition: 0.3s;
    }

    .asb-sidebar.active {
        left: 0;
    }

}

/* ===== FIX LAYOUT NGOSONG KANAN ===== */

/* WRAPPER HARUS FLEX */
.asb-wrap {
    display: flex !important;
}

/* SIDEBAR FIX */
.asb-sidebar {
    width: 240px;
    flex-shrink: 0;
}

/* CONTENT WAJIB NGISI SISA */
.asb-content {
    flex: 1 !important;
    width: 100% !important;
    max-width: none !important;
}

/* HAPUS BATASAN DALAM */
.main-wrap {
    max-width: 100% !important;
}

/* HERO & CARD FULL */
.hero-box,
.dashboard-cards,
.ref-card {
    width: 100%;
}
.hero-box {
    max-width: 900px;
    margin: 0 auto 30px auto;
}
/* CENTER HERO */
.hero-box {
    text-align: center;
}

/* Biar konten di dalamnya ikut center */
.hero-box h1,
.hero-box p {
    text-align: center;
}
/* TOPBAR DEFAULT HILANG */
.asb-topbar {
    display: none;
}

/* MUNCUL DI MOBILE */
@media(max-width:768px){

    .asb-topbar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 55px;
        background: #020617;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    #menuToggle {
        position: absolute;
        left: 15px;
        font-size: 22px;
        background: none;
        border: none;
        color: #fff;
    }

    /* kasih jarak konten */
    .asb-content {
        margin-top: 55px;
    }
}
@media(max-width:768px){
    .asb-sidebar {
        position: fixed;
        left: -240px;
        top: 0;
        height: 100%;
        transition: 0.3s;
        z-index: 9998;
    }

    .asb-sidebar.active {
        left: 0;
    }
}
/* ================= FIX TOTAL ================= */

/* WRAPPER */
.asb-wrap {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.asb-sidebar {
    width: 240px;
    flex-shrink: 0;
    z-index: 1001;
}

/* CONTENT */
.asb-content {
    flex: 1;
    padding: 30px;
    z-index: 1;
}

/* HERO CENTER */
.hero-box {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}

/* KALKULATOR JANGAN NGAMBANG */
.calc-box {
    margin: 20px auto;
    max-width: 600px;
}

/* PAKET GRID NORMAL */
#paket-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr)) !important;
    gap: 20px;
}

/* PAKET ITEM */
.paket-card {
    width: 100%;
}

/* ===== FIX TOGGLE ===== */
.asb-topbar {
    display: none;
}

@media(max-width:768px){

    .asb-topbar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 55px;
        background: #020617;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    #menuToggle {
        position: absolute;
        left: 15px;
        font-size: 22px;
        background: none;
        border: none;
        color: #fff;
        z-index: 10000; /* 🔥 ini bikin bisa diklik */
        cursor: pointer;
    }

    .asb-sidebar {
        position: fixed;
        left: -240px;
        top: 0;
        height: 100%;
        background: #020617;
        transition: 0.3s;
        z-index: 9998;
    }

    .asb-sidebar.active {
        left: 0;
    }

    .asb-content {
        margin-top: 55px;
    }
}
.asb-page {
    display: none;
}

#heroDashboard {
    transition: 0.3s;
}
/* HERO CENTER & FIX */
.hero-box {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg,#0f172a,#020617);
}

/* JUDUL */
.hero-box h1 {
    margin-bottom: 10px;
}

/* SUBTITLE */
.hero-box p {
    color: #cbd5f5;
}
.main-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
@media(max-width:768px){
    .hero-box {
        padding: 20px;
        margin-bottom: 20px;
    }
}
.asb-sidebar a.active {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}
.hero-box {
    transition: all 0.3s ease;
}

.hero-box h1 {
    transition: 0.3s;
}

.hero-box p {
    transition: 0.3s;
}
/* HERO FULL WIDTH & CENTER */
.hero-box {
    width: 100%;
    max-width: 900px;
    margin: 20px auto 30px auto;
    text-align: center;
}

/* BUNGKUS LUAR BIAR BENAR2 TENGAH */

/* isi tetap rapi */
.main-wrap {
    width: 100%;
    max-width: 1200px;
}
/* pastikan gak ada yang narik kiri */
.asb-content > * {
    width: 100%;
}
/* CONTENT JADI FLEX COLUMN */

/* SEMUA ISI DALAMNYA IKUT CENTER */
.main-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
/* HERO */
.hero-box {
    max-width: 900px;
    margin: 20px auto 30px auto;
    text-align: center;
}

/* PAGE (dashboard, profil, dll) */
.asb-page {
    width: 100%;
}

/* DASHBOARD */
#page-dashboard,
#page-kalkulator,
#page-profil,
#page-paket {
    max-width: 1100px;
    margin: 0 auto;
}
.calc-box {
    margin: 20px auto;
    max-width: 600px;
}
/* DASHBOARD GRID */
.dashboard-cards {
    width: 100%;
}

/* REF CARD */
.ref-card {
    margin: 20px auto;
}

/* PAKET */
#paket-list {
    width: 100%;
}
/* SEMUA PAGE RAPI TENGAH */
.asb-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* KALKULATOR */
.calc-box {
    max-width: 600px;
    margin: 20px auto;
}
/* CONTENT JADI CENTER */


/* HERO FIX CENTER */
.hero-box {
    width: 100%;
    max-width: 900px;
    margin: 20px auto 30px auto;
    text-align: center;
}
/* REF CARD SAMA PERSIS DENGAN HERO */
.ref-card {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}
/* HERO TENGAH TOTAL */
.hero-box {
    width: 100%;
    max-width: 800px; /* 🔥 patokan lebar */
    margin: 30px auto; /* 🔥 auto = center */
    text-align: center;
}

/* REF CARD SAMA PERSIS */
.ref-card {
    width: 100%;
    max-width: 800px; /* 🔥 HARUS SAMA */
    margin: 20px auto;
}
/* biar wrapper gak ganggu */
.main-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
/* WRAPPER NORMAL */
.main-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

/* HERO CENTER */
.hero-box {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

/* REF CARD SAMA DENGAN HERO */
.ref-card {
    max-width: 800px;
    margin: 20px auto;
}
/* 🔥 SAMAKAN HERO & REF */
.hero-box,
.ref-card {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* jarak hero */
.hero-box {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

/* ref card rapikan */
.ref-card {
    margin-top: 0;
    margin-bottom: 20px;
}

/* 🔥 CARD SALDO NAIK */
.dashboard-cards {
    margin-top: 10px; /* sebelumnya biasanya 30px */
}
.card h2{
  color:#0f7a3b;
}
a:hover{
  opacity:0.8;
}
.asb-page {
    display: none;
}

.asb-content {
    padding: 20px;
}

.card {
    background: #0c2239;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
}
.main-wrap {
    max-width: 1100px;
    margin: auto;
}
.asb-page {
    display: none;
}
.asb-content {
    position: relative;
}


.asb-content {
    min-height: auto !important;
}
.asb-content {
    display: block !important;
}
.asb-page {
    margin-top: 0 !important;
}
.asb-page {
    display: none;
}


.hero-box {
    display: block !important;
}
.asb-page {
    width: 100%;
    margin: 0;
}
/* ===== FIX FINAL ===== */

.asb-content {
    display: block !important;
}

.asb-page {
    display: none;
    width: 100%;
    margin: 0;
}

.asb-page.active {
    display: block;
}
.main-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
#page-paket {
    border: 3px solid red;
}
/* ====== FIX FINAL STABLE ====== */

.asb-wrap {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.asb-sidebar {
    width: 240px;
    flex-shrink: 0;
}

/* CONTENT */
.asb-content {
    flex: 1;
    padding: 30px;
}

/* WRAPPER */
.main-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* PAGE CONTROL */
.asb-page {
    display: none;
}

.asb-page.active {
    display: block;
}

/* HERO */
.hero-box {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

/* GRID */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

/* PAKET FIX */
#page-paket {
    margin-top: 20px;
}
/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif;
    background: radial-gradient(circle at 20% 0%, #0f172a, #020617 70%);
    color: #fff;
}

/* ================= LAYOUT ================= */
.asb-wrap {
    display: flex;
    min-height: 100vh;
}

/* ================= SIDEBAR ================= */
.asb-sidebar {
    width: 240px;
    background: linear-gradient(180deg,#020617,#0f172a);
    padding: 20px;
    flex-shrink: 0;
}

.asb-sidebar h2 {
    color: gold;
    margin-bottom: 20px;
}

.asb-sidebar a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.2s;
}

.asb-sidebar a:hover,
.asb-sidebar a.active {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

/* ================= CONTENT ================= */
.asb-content {
    flex: 1;
    padding: 30px;
}

/* ================= WRAPPER ================= */
.main-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ================= HERO ================= */
.hero-box {
    background: linear-gradient(135deg,#0f172a,#020617);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
}

/* ================= PAGE SYSTEM ================= */
.asb-page {
    display: none;
}

.asb-page.active {
    display: block;
}

/* ================= DASHBOARD ================= */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.card h2 {
    color: #22c55e;
}

/* ================= REF ================= */
.ref-card {
    max-width: 700px;
    margin: 30px auto;
}

/* ================= KALKULATOR ================= */
.calc-box {
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 20px;
    border-radius: 14px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calc-box input,
.calc-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #020617;
    color: #fff;
}

/* ================= BUTTON ================= */
button {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    transform: scale(1.05);
}

/* ================= HASIL ================= */
#hasil {
    margin-top: 15px;
    background: #020617;
    padding: 15px;
    border-radius: 10px;
}

/* ================= PAKET ================= */
#paket-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 15px;
}

.paket-card {
    background: linear-gradient(145deg,#0f172a,#020617);
    padding: 15px;
    border-radius: 12px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .asb-wrap {
        flex-direction: column;
    }

    .asb-sidebar {
        position: fixed;
        left: -240px;
        top: 0;
        height: 100%;
        z-index: 1000;
        transition: 0.3s;
    }

    .asb-sidebar.active {
        left: 0;
    }

    .asb-content {
        padding: 20px;
    }

    .asb-topbar {
        display: flex;
        position: fixed;
        top: 0;
        width: 100%;
        height: 55px;
        background: #020617;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    #menuToggle {
        position: absolute;
        left: 15px;
        font-size: 22px;
        background: none;
        border: none;
        color: #fff;
    }

    .asb-content {
        margin-top: 55px;
    }
}
/* 🔥 FINAL OVERRIDE (WAJIB PALING BAWAH) */

.asb-page {
    display: none !important;
}

.asb-page.active {
    display: block !important;
}
.asb-content {
    position: relative;
}

.asb-page {
    width: 100%;
}
/* 🔥 FIX INPUT PIN (WAJIB) */
#jumlahPin, 
#jumlahPin:focus {
    pointer-events: auto !important;
    position: relative;
    z-index: 9999 !important;
    background: #fff !important;
    color: #000 !important;
}

/* tombol juga */
button {
    pointer-events: auto !important;
    z-index: 9999 !important;
}
.pin-admin-page {
    position: relative;
    z-index: 9999;
}

.pin-admin-page input,
.pin-admin-page button {
    pointer-events: auto !important;
}
/* SECTION */
.asb-section {
    margin-top: 30px;
}

/* TITLE */
.asb-title {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
}

/* CARD */
.asb-card {
    background: #081c2f;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* SCROLL TABLE */
.asb-table-wrap {
    overflow-x: auto;
}

/* TABLE */
.asb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* 🔥 bikin scroll di HP */
    color: #fff;
}

/* HEADER */
.asb-table th {
    background: #0f7a3b;
    padding: 12px;
    font-size: 13px;
}

/* CELL */
.asb-table td {
    padding: 10px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* HOVER */
.asb-table tr:hover {
    background: rgba(255,255,255,0.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .asb-card {
        padding: 15px;
    }

    .asb-table th,
    .asb-table td {
        font-size: 12px;
        padding: 8px;
    }
}
.asb-card {
    backdrop-filter: blur(10px);
}
/* WRAPPER */
.asb-summary {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* CARD */
.asb-summary-card {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, #0f7a3b, #0a5a2a);
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* TITLE */
.asb-summary-card h4 {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* VALUE */
.asb-summary-card h2 {
    font-size: 20px;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .asb-summary {
        flex-direction: column;
    }
}
.asb-summary-card:hover {
    transform: translateY(-3px);
    transition: 0.2s;
}
/* FORM WRAPPER */
.asb-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* GROUP */
.asb-form-group {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.asb-form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

/* INPUT */
.asb-form-group input {
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* HELPER TEXT */
.asb-form-group small {
    margin-top: 4px;
    font-size: 12px;
    color: #ccc;
}

/* ACTION (TOMBOL DI BAWAH) */
.asb-form-action {
    margin-top: 10px;
}

/* BUTTON */
.asb-btn-primary {
    width: 100%;
    background: #0f7a3b;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* HOVER */
.asb-btn-primary:hover {
    background: #0c5f2e;
}
.asb-form-group input:focus {
    outline: 2px solid #0f7a3b;
}
.asb-alert-success {
    background: #0f7a3b;
    color: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* LAYOUT */
.asb-main {
    margin-left: 250px;
    padding: 20px;
}

@media(max-width:768px){

    .asb-sidebar {
        transform: translateX(-100%) !important;
        
    }

    .asb-sidebar.active {
        transform: translateX(0) !important;
        pointer-events: auto !important;
    }

}
/* 🔥 BIKIN AREA LUAR BISA DIKLIK */

.asb-main {
    margin-left: 250px;
    padding: 20px;
}

.asb-topbar {
    margin-bottom: 20px;
}
.asb-sidebar {
    z-index: 999;
}

/* MOBILE */
@media (max-width: 768px){

    .asb-sidebar {
        transform: translateX(-100%);
        transition: 0.3s;
    }

    .asb-sidebar.active {
        transform: translateX(0);
    }

    .asb-main {
        margin-left: 0;
    }
}


.asb-sidebar {
    position: fixed;
    z-index: 999;
}

#menuToggle {
    position: relative;
    z-index: 1000;
}
/* ================= FINAL OVERRIDE MENU (ANTI RUSAK) ================= */

/* 🔥 OVERLAY FINAL */
.asb-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.5) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    z-index: 998 !important;
    
}

.asb-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


/* 🔥 SIDEBAR FINAL */
@media(max-width:768px){

    .asb-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -240px !important;

        width: 240px !important;
        height: 100% !important;

        background: #020617 !important;

        z-index: 999 !important;
        transition: 0.3s ease !important;
    }

    .asb-sidebar.active {
        left: 0 !important;
    }

}


/* 🔥 TOGGLE HARUS PALING ATAS */

#menuToggle {
    position: relative;
    z-index: 99999 !important;
}

/* 🔥 TOPBAR JANGAN KALAH */
.asb-topbar {
    z-index: 9999 !important;
}


/* 🔥 PASTIKAN LINK BISA DIKLIK */
.asb-sidebar a {
    position: relative !important;
    z-index: 1001 !important;
    pointer-events: auto !important;
}
/* ===== FORCE CLICK FIX ===== */

#menuToggle {
    pointer-events: auto !important;
    z-index: 99999 !important;
}

.asb-sidebar {
    z-index: 99998 !important;
}

.asb-overlay {
    z-index: 99997 !important;
}
/* ================= FIX KLIK FINAL ================= */

/* 🔥 sidebar tidak aktif = tidak boleh nangkap klik */


/* 🔥 saat aktif baru boleh klik */
.asb-sidebar.active {
    pointer-events: auto !important;
}
/* 🔥 pastikan konten di atas layer */
.asb-main {
    position: relative;
    z-index: 1;
}
#menuToggle {
    position: relative;
    z-index: 99999 !important;
}
#menuToggle {
    position: relative;
    z-index: 10000 !important;
}
/* ================= RESET TOTAL KLIK ================= */

/* 🔥 MATIKAN OVERLAY TOTAL */
.asb-overlay {
}

/* 🔥 PASTIKAN SEMUA ELEMEN BISA DIKLIK */
body * {
    pointer-events: auto !important;
}

/* 🔥 KECUALI OVERLAY (biar gak ganggu) */
.asb-overlay {
}

/* 🔥 TOMBOL HARUS DI ATAS */
button, a, #menuToggle {
    position: relative;
    z-index: 99999 !important;
}
/* ====== FIX TOTAL KLIK (FINAL) ====== */

/* 🔥 MATIKAN SEMUA OVERLAY */
.asb-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -1 !important;
}

/* 🔥 PASTIKAN TIDAK ADA LAYER NUTUP */
.asb-content,
.asb-main,
.main-wrap {
    position: relative !important;
    z-index: 1 !important;
}

/* 🔥 SEMUA TOMBOL WAJIB BISA DIKLIK */
button,
a,
input {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
}
/* pastikan tombol bisa diklik */
#menuToggle {
    position: relative;
    z-index: 10000 !important;
}

/* sidebar di atas */
.asb-sidebar {
    z-index: 9999 !important;
}

/* overlay di bawah sidebar */
.asb-overlay {
    z-index: 9998 !important;
}

/* saat aktif baru boleh */
.asb-sidebar.active {
    pointer-events: auto;
}

/* tombol harus di atas */
#menuToggle {
    position: relative;
    z-index: 10000;
}
#menuToggle {
    position: relative;
    z-index: 10000 !important;
}

.asb-sidebar {
    z-index: 9999 !important;
}

.asb-overlay {
    z-index: 9998 !important;
}
/* 🔥 pastikan semua bisa diklik */
.asb-main,
.asb-content,
.main-wrap {
    position: relative;
    z-index: 1;
}

/* 🔥 tombol harus paling atas */
#menuToggle {
    position: relative;
    z-index: 99999 !important;
}

/* 🔥 sidebar di atas konten */
.asb-sidebar {
    z-index: 9999 !important;
}

/* 🔥 overlay di bawah sidebar */
.asb-overlay {
    z-index: 9998 !important;
}

/* 🔥 PENTING: jangan biarkan sidebar nutup klik saat tidak aktif */

/* 🔥 KUNCI UTAMA */


/* 🔥 hanya aktif saat dibuka */
.asb-sidebar.active {
    pointer-events: auto;
}
#menuToggle {
    position: relative !important;
    z-index: 999999 !important;
}
/* ===== PAKSA TOPBAR PALING ATAS ===== */

.asb-topbar{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* tombol ☰ */
#menuToggle{
    position: relative !important;
    z-index: 9999999 !important;
    pointer-events: auto !important;
}

/* KONTEN TURUN */
.asb-main{
    position: relative !important;
    z-index: 1 !important;
    margin-top: 70px !important;
}

/* semua wrapper jangan di atas topbar */
.asb-content,
.main-wrap,
.hero-box{
    position: relative !important;
    z-index: 1 !important;
}
/* sidebar normal */
.asb-sidebar{
    pointer-events: auto !important;
    z-index: 9999 !important;
}

/* link menu harus aktif */
.asb-sidebar a{
    pointer-events: auto !important;
    position: relative;
    z-index: 10000;
}
/* page default hidden */
.asb-page{
    display:none;
}

/* page aktif tampil */
.asb-page.active{
    display:block;
}
.detail-popup{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.6);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999999;

}

.detail-box{

    background:#fff;

    width:90%;
    max-width:500px;

    padding:20px;
    border-radius:12px;

    max-height:90vh;
    overflow:auto;

}
#detailPaket{

    margin-top:20px;

}

.detail-card{

    background:#111;

    padding:20px;

    border-radius:12px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    line-height:1.8;

}
#formPinPaket{

    margin-top:20px;

}

.pin-box{

    background:#fff;

    padding:20px;

    border-radius:12px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.pin-box input{

    width:100%;
    padding:12px;

    margin:10px 0;

}
#formPinPaket button{

    position:relative;
    z-index:99999;
    pointer-events:auto !important;

}
.ppob-item{

    background:#081c2f;
    border:1px solid #123;
    padding:20px;
    border-radius:14px;
    text-align:center;
    color:#fff;
    font-weight:600;
    transition:0.3s;

}

.ppob-item:hover{

    transform:translateY(-3px);
    background:#0f172a;

}
