/* ==========================================================================
   InterLive site stylesheet
   ========================================================================== */
:root {
    --bg: #020807;
    --bg-alt: #04110d;
    --card: rgba(255,255,255,.03);
    --border: rgba(255,255,255,.08);
    --gold: #f4c542;
    --gold-strong: #d7a92f;
    --green: #00ff88;
    --text-weak: #a6a6a6;
    --text-muted: #94a3b8;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    width: 100%;
    background:
        radial-gradient(circle at 50% 18%, rgba(0,255,136,.08), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(244,197,66,.07), transparent 30%),
        linear-gradient(180deg, #03110d 0%, #010505 100%);
    color: var(--white);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 40px 0;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(0,255,136,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .4;
    pointer-events: none;
}

::selection {
    background: rgba(244,197,66,.25);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(244,197,66,.4);
    border-radius: 20px;
}

/* ==========================================================================
   Base cards and controls
   ========================================================================== */
.section-card,
.form-card,
.info-card,
.promo-section-card,
.network-section-card,
.member-status-card,
.main-stats-card,
.card-screen,
.info-footer-box,
.network-section,
.balance-summary {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 0 30px rgba(0,0,0,.18);
}

.logo-card {
    width: 320px;
    margin: 0 auto 45px;
    padding: 22px;
    position: relative;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 0 30px rgba(0,0,0,.18);
    animation:InterLiveFloat 5s ease-in-out infinite;
}

.logo-card img {
    width: 100%;
    display: block;
}

.logo-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,.14), rgba(244,197,66,.14), transparent);
    filter: blur(14px);
    z-index: -1;
}

.button-base,
.connect-btn,
.register-btn,
.btn-primary,
.btn-action,
.btn-copy-action,
.btn-power-logout,
.btn-close-modal {
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 700;
    transition: transform .3s, box-shadow .3s, background .3s;
}

.button-base:hover,
.connect-btn:hover,
.register-btn:hover,
.btn-primary:hover,
.btn-action:hover,
.btn-copy-action:hover,
.btn-power-logout:hover,
.btn-close-modal:hover {
    transform: translateY(-2px);
}

.btn,
.btn-primary,
.connect-btn,
.register-btn,
.btn-action,
.btn-copy-action,
.btn-copy,
.btn-deposit,
.btn-trading,
.btn-modal-deposit-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
}

/* ==========================================================================
   Page wrappers
   ========================================================================== */
.connect-wrapper,
.register-page {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
}

.connect-wrapper {
    max-width: 620px;
    padding: 30px;
    top:50%;
    left:50%;
    position:absolute;
    transform:translate(-50%,-50%);
}

.register-page {
    min-height: calc(100vh - 80px);
    padding-bottom: 40px;
}

.app-container {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding-top: 90px;
    padding-bottom: 110px;
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 20px;
}

.card-screen {
    width: 100%;
    padding: 28px;
    border-radius: 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.connect-title,
.page-title,
.title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 18px;
    text-align: center;
    justify-content: center;
}

.connect-subtitle,
.page-desc,
.subtitle,
.section-notice,
.modal-input-hint,
.modal-notice-text,
.history-empty-text,
.trading-window {
    color: var(--text-weak);
    line-height: 1.7;
}

.connect-subtitle,
.page-desc,
.subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
    justify-content: center;
}

.title {
    margin-bottom: 14px;
}

.page-title {
    font-size: 34px;
    margin-top: 8px;
}

.page-desc {
    font-size: 16px;
}

.membership,
.badge-membership {
    margin: 0 auto 20px;
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    text-align: center;
}

/* ==========================================================================
   Connect page
   ========================================================================== */
.connect-btn {
    width: 100%;
    min-height: 72px;
    margin-top: 42px;
    background: var(--gold);
    color: #111;
    font-size: 22px;
    box-shadow: 0 0 35px rgba(244,197,66,.35);
}

.secure-note,
.secure-tag {
    margin-top: 22px;
    color: var(--green);
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.line {
    width: 80px;
    height: 2px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.info-card {
    margin-top: 35px;
    padding: 28px;
    color: #a8a8a8;
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
}

.glow-top,
.glow-bottom {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.glow-top {
    width: 600px;
    height: 600px;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0,255,136,.15), transparent 70%);
}

.glow-bottom {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(244,197,66,.12), transparent 70%);
}

/* ==========================================================================
   Register page
   ========================================================================== */
.wallet-badge {
    width: max-content;
    margin: 35px auto;
    padding: 14px 25px;
    border-radius: 40px;
    border: 1px solid rgba(212,175,55,.4);
    background: rgba(212,175,55,.06);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-weak);
}

.wallet-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}
.wallet-info {
    font-size: 14px;
    color: var(--gold);
}

.form-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 40px rgba(212,175,55,.05);
}

.form-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.form-icon,
.user-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.form-subtitle {
    color: var(--text-weak);
    font-size: 14px;
    line-height: 1.6;
}

.form-label,
.input-label {
    display: block;
    margin-bottom: 12px;
    color: #c0c0c0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-input,
.input-code,
.modal-field-input {
    width: 100%;
    height: 70px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    color: white;
    font-size: 18px;
}

.form-input:focus,
.modal-field-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,.15);
}

.register-btn {
    width: 100%;
    min-height: 72px;
    margin-top: 35px;
    background: linear-gradient(180deg, #d6b34b, #b6932e);
    color: #111;
    font-size: 22px;
}

.info-grid,
.balance-grid,
.network-stats-grid,
.grid-three-col {
    display: grid;
    gap: 15px;
}
.network-stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));

}
.info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 25px;
}


.info-item,
.sub-bal-card,
.net-mini-box,
.net-wide-box,
.balance-card,
.mini-status-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
}
.sub-bal-card{
    display:grid;
}
.info-item small,
.sub-bal-label,
.net-mini-label,
.ref-title,
.label,
.modal-input-label,
.depth-sub {
    display: block;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.info-item strong,
.sub-bal-value,
.net-mini-num,
.val,
.ref-number,
.ref-code,
.network-big-counter,
.status-main-title {
    color: white;
    font-weight: 400;
}

.info-item strong,
.sub-bal-value,
.net-mini-num,
.val,
.ref-number,
.ref-code {
    font-size: 14px;
}

.notice {
    background: rgba(255,255,255,.02);
    margin-top: 25px;
    text-align: center;
    color: var(--text-muted);
    border-radius: 18px;
    padding: 22px;
}

.InterLive-divider{
    width:120px;
    height:2px;
    justify-self:center;
    align-self:center;
    margin-top:30px;
    margin-bottom:10px;
    background:linear-gradient(
        90deg,
        transparent,
        #00ff88,
        #d4af37,
        #00ff88,
        transparent
    );
    border-radius:40px;
    animation:dividerGlow 3s ease infinite;
}

@keyframes dividerGlow{

    0%,100%{
        box-shadow:
            0 0 5px rgba(0,255,136,.3),
            0 0 15px rgba(0,255,136,.2);
    }

    50%{
        box-shadow:
            0 0 10px rgba(0,255,136,.8),
            0 0 25px rgba(0,255,136,.6),
            0 0 40px rgba(212,175,55,.3);
    }
}

/* ==========================================================================
   Dashboard page
   ========================================================================== */
/* header{
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 100;
    transform: translateY(-100%);
    margin-top: 40px;
} */
.dash-header {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 56px;
    z-index: 1000;
    background: rgba(14,29,20,.8);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.header-left,
.user-info-row,
.balance-overview-row,
.referral-container,
.action-flex-group,
.sync-info-row,
.modal-balance-row,
.input-header-labels,
.depth-header,
.depth-footer-labels,
.bottom-nav-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 100px;
    height: 25px;
    object-fit: contain;
}

.btn-power-logout {
    width: 34px;
    height: 34px;
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.3);
    color: #ef4444;
    display: grid;
    place-items: center;
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px 110px;
    scrollbar-width: none;
}

.scrollable-content::-webkit-scrollbar {
    display: none;
}

.main-stats-card {
    background: rgba(10,20,14,.7);
    border: 1px solid #14281a;
    border-radius: 20px;
    padding: 20px 16px;
    margin-top: 10px;
}

.user-info-row {
    margin-bottom: 18px;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: #14532d;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.avatar-icon {
    font-size: 20px;
}

.user-meta .greet-text {
    font-size: 11px;
    color: #848a86;
}

.user-meta .user-id {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin-top: 4px;
}

.balance-overview-row {
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.bal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.text-gold {
    color: #f3ba2f;
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
}

.sub-bal-card {
    padding: 14px;
}

.sub-bal-label {
    font-size: 8.5px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 6px;
}

.sub-bal-value {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}

.sub-bal-desc {
    font-size: 8px;
    color: #475569;
    margin-top: 6px;
    line-height: 1.2;
}

.section-notice {
    font-size: 12px;
    color: #94a3b8;
    margin: 18px 0 10px;
}

.referral-container {
    justify-content: space-between;
    gap: 12px;
    background: #060e0a;
    border: 1px solid rgba(255,255,255,.03);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.ref-title {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    display: block;
}

.ref-number {
    font-size: 15px;
    color: #f3ba2f;
    font-weight: 700;
}

.btn-copy-action {
    background: #142c1c;
    border: 1px solid #1e462c;
    color: #f3ba2f;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 12px;
}

.action-flex-group {
    gap: 12px;
    margin-bottom: 14px;
}

.btn-action {
    flex: 1;
    padding: 14px;
    border-radius: 24px;
    font-size: 13px;
}

.btn-green-glow {
    background: #022c16;
    border: 1px solid #22c55e;
    color: #4ade80;
}

.btn-disabled-dark {
    background: #171d19;
    border: 1px solid rgba(255,255,255,.05);
    color: #64748b;
    cursor: not-allowed;
}

.sync-info-row {
    justify-content: space-between;
    font-size: 11px;
    color: #475569;
}

.timezone-window {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
    margin-top: 6px;
}

.promo-section-card {
    background: rgba(10,20,14,.7);
    border: 1px solid #14281a;
    padding: 16px;
    margin-top: 14px;
}

.promo-header-row,
.network-header-row {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.promo-badge-title,
.promo-slide-index,
.net-title,
.net-level-badge,
.status-small-title,
.status-main-title,
.status-desc,
.depth-footer-labels,
.btn-input-max {
    font-weight: 700;
}

.promo-badge-title,
.status-main-title,
.net-title {
    color: #f3ba2f;
}

.promo-slide-index,
.net-level-badge {
    color: #64748b;
    font-size: 11px;
}

.promo-banner {
    background: rgba(10,20,14,.7);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 18px;
    margin-top: 16px;
}

.promo-banner-banner {
    background: linear-gradient(135deg, #092c16 0%, #04130a 100%);
    border: 1px solid #16522d;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.promo-banner-banner h5 {
    font-size: 14px;
    color: #fecdd3;
    margin-bottom: 8px;
}

.promo-subtext,
.promo-prize-detail,
.promo-footer-slogan,
.depth-sub,
.status-desc {
    color: #cbd5e1;
    font-size: 11px;
    line-height: 1.4;
}

.promo-prize-detail {
    background: rgba(0,0,0,.18);
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
}

.promo-footer-slogan {
    font-size: 9px;
    color: #fcd34d;
}

.dots-indicator-container {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #1e293b;
    border-radius: 999px;
}

.dot.active {
    width: 18px;
    background: #fecdd3;
    border-radius: 6px;
}

.network-section-card {
    margin-top: 14px;
}

.net-title {
    font-size: 15px;
}

.network-big-counter {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
}

.network-bottom-label {
    font-size: 10px;
    color: #475569;
    text-align: center;
    margin-top: 8px;
}

.network-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-top: 15px;
    text-align: left;
}

.net-mini-box,
.net-wide-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #08110b;
    border: 1px solid rgba(255,255,255,.02);
    padding: 12px;
    text-align: left;
}

.net-wide-box {
    margin-top: 12px;
}

.net-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 16px;
}

.net-mini-icon.icon-green { background: rgba(34,197,94,.1); }
.net-mini-icon.icon-emerald { background: rgba(16,185,129,.1); }
.net-mini-icon.icon-gold { background: rgba(243,186,47,.1); }

.net-mini-data,
.net-wide-data {
    display: flex;
    flex-direction: column;
}

.net-mini-num {
    font-size: 16px;
}

.net-mini-label {
    font-size: 10px;
    color: #475569;
    margin-top: 2px;
}

.text-green { color: #22c55e; }
.text-emerald { color: #10b981; }
.text-gold { color: #f3ba2f; }

.depth-snapshot-container {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 16px;
}

.depth-header {
    justify-content: space-between;
    font-size: 11px;
    color: #ffffff;
}

.depth-bar-grid {
    display: flex;
    align-items: flex-end; /* Mutlak diperlukan agar grafik naik dari bawah */
    justify-content: space-between;
    height: 80px; /* Tentukan tinggi maksimal area grafik */
    padding: 10px 0;
    gap: 4px;
}

.depth-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1); /* Warna dasar saat kosong */
    height: 6px; /* Tinggi minimum awal */
    border-radius: 4px 4px 0 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

/* Berikan warna menyala (Glow) jika level tersebut terisi */
.depth-bar.has-member {
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    box-shadow: 0px 0px 8px rgba(16, 185, 129, 0.5);
}

.depth-bar.active {
    background: #15803d;
}

.depth-footer-labels {
    justify-content: space-between;
    font-size: 10px;
    color: #475569;
    margin-top: 6px;
}

.member-status-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(10,20,14,.7);
    border: 1px solid rgba(243,186,47,.2);
    margin-top: 14px;
}

.status-gold-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    display: grid;
    place-items: center;
    box-shadow: 0 0 10px rgba(245,158,11,.3);
}

.sparkle-icon {
    font-size: 18px;
    color: #000;
    padding: 4px;
    margin: auto;
    align-self: center;
    justify-self: center;
}

.status-small-title {
    font-size: 9px;
    color: #64748b;
    letter-spacing: .5px;
}

.status-main-title {
    font-size: 15px;
    color: #ffffff;
    margin-top: 2px;
}

.status-desc {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 6px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 8, 4, 0.65);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1100;
}

.modal-content-box {
    width: 100%;
    max-width: 520px;
    background: rgba(11, 19, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

.modal-header-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 8px;
}

.modal-title {
    font-size: 18px;
    color: #ffffff;
}

.btn-close-modal {
    background: none;
    color: #64748b;
    font-size: 16px;
}

.modal-balance-row {
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 14px;
}

.bal-label {
    color: #64748b;
    font-weight: 600;
}

.modal-crypto-tokens {
    display: flex;
    gap: 12px;
    font-weight: 600;
}

.modal-input-group {
    background: #060a07;
    border: 1px solid #14281a;
    border-radius: 14px;
    padding: 5px;
}

.input-header-labels {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.modal-input-label {
    font-size: 10px;
    color: #475569;
}

.btn-input-max {
    color: #d97706;
    font-size: 11px;
}

.modal-field-input {
    margin-top: 4px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 15px;
    width: 100%;
}

.modal-input-hint,
.history-empty-text,
.modal-notice-text {
    font-size: 11px;
    color: #475569;
    margin: 8px 0;
    line-height: 1.4;
}

.btn-modal-deposit-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 42px;
    background: var(--gold);
    color: #111;
    font-size: 22px;
    border-radius: 18px;
    box-shadow: 0 0 35px rgba(244,197,66,.35);
}

.modal-history-box {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 16px;
    margin-top: 8px;
}

.history-header-row {
    justify-content: space-between;
    font-size: 10px;
    color: #64748b;
}

.btn-refresh-history {
    color: #d97706;
    cursor: pointer;
}

.bottom-nav-container {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 0 0 16px;
    background: linear-gradient(to top, #030a05 70%, transparent 100%);
    z-index: 1000;
}

.bottom-nav-inner {
    height: 64px;
    background: rgba(8,17,11,.95);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px;
    justify-content: space-around;
    backdrop-filter: blur(10px);
    display: flex;
}

.nav-tab {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    height: 100%;
    flex: 1;
    gap: 4px;
}

.tab-icon {
    font-size: 18px;
}

.tab-text {
    font-size: 10px;
    font-weight: 500;
}

.nav-tab.active {
    color: #4ade80;
}

.nav-tab.active .tab-icon {
    background: rgba(34,197,94,.15);
    border-radius: 12px;
    padding: 4px 12px;
}

/* ==========================================================================
   Index page
   ========================================================================== */
.logo-box,
.status-connected,
.referral-share-box,
.action-buttons-group,
.bottom-nav,
.balance-card,
.grid-three-col {
    width: 100%;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    color: var(--gold);
    font-weight: 800;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
}

.btn {
    width: 100%;
    min-height: 68px;
    border-radius: 18px;
    background: var(--gold);
    color: #111;
    font-size: 16px;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-copy,
.btn-deposit,
.btn-trading {
    width: 100%;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 14px;
}

.btn-deposit {
    background: #14441e;
    color: #4ade80;
}

.btn-trading {
    background: #111;
    color: #737373;
}

.status-connected {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #a6a6a6;
    margin-bottom: 24px;
}

.dot-green {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34,197,94,.4);
}

.form-group-box {
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
}

.user-icon {
    font-size: 22px;
}

.input-code {
    letter-spacing: .4em;
    height: 60px;
    padding-left: 18px;
}

.valid-text {
    margin-top: 10px;
    color: #7ed957;
    font-size: 13px;
}

.referral-share-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
}

.action-buttons-group {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.balance-card {
    padding: 18px;
}

.dash-footer-info {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
}

.network-section {
    margin-top: 16px;
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.nav-item {
    background: rgba(255,255,255,.03);
    border-radius: 18px;
    padding: 12px 8px;
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    cursor: pointer;
}

.nav-item.active {
    background: rgba(34,197,94,.15);
    color: #22c55e;
}

@media (max-width: 768px) {
    body {
        padding: 16px 0;
    }

    .connect-wrapper,
    .register-page,
    .app-container,
    .card-screen {
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo-card {
        width: 100%;
        max-width: 280px;
    }

    .connect-title,
    .page-title,
    .title {
        font-size: 26px;
        line-height: 1.1;
    }

    .connect-subtitle,
    .page-desc,
    .subtitle {
        font-size: 14px;
    }

    .btn,
    .btn-copy,
    .btn-deposit,
    .btn-trading,
    .btn-action,
    .btn-copy-action,
    .connect-btn,
    .register-btn,
    .btn-modal-deposit-submit {
        font-size: 14px;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .btn-action {
        padding: 12px;
        border-radius: 20px;
    }

    .action-flex-group {
        gap: 10px;
    }

    .referral-container,
    .user-info-row,
    .balance-overview-row,
    .promo-header-row,
    .network-header-row,
    .depth-footer-labels,
    .history-header-row {
        gap: 6px;
    }

    .info-grid,
    .balance-grid,
    .grid-three-col,
    .bottom-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tab-icon {
        font-size: 16px;
    }

    .tab-text {
        font-size: 9px;
    }

    .connect-title,
    .page-title,
    .title {
        margin-bottom: 14px;
    }
}
    .network-stats-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bottom-nav-inner {
        padding: 12px 0;
    }
}

@keyframes InterLiveFloat {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-6px); }
    50% { transform: translateY(-10px); }
    75% { transform: translateY(-6px); }
}

@keyframes logoGlow {
    0%, 100% { opacity: .3; }
    50% { opacity: .8; }
}
/* ===================================
   InterLive IMAGE SLIDER
=================================== */

.qx-slider{

    position:relative;

    width:100%;

    overflow:hidden;

    border-radius:24px;

    background:#08110b;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);
}

/* Slide */

.qx-slide{

    display:none;

    position:relative;
}

.qx-slide.active{

    display:block;

    animation:fadeSlide .6s ease;
}

/* Image */

.qx-slide img{

    width:100%;

    height:auto;

    display:block;

    border-radius:24px;
}

/* Overlay */

.qx-slide::after{

    content:'';

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:50%;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.4),
        transparent
    );

    pointer-events:none;
}

/* Dots */

.qx-dots{

    position:absolute;

    left:50%;
    bottom:15px;

    transform:translateX(-50%);

    display:flex;

    gap:8px;

    z-index:5;
}

.qx-dots span{

    width:8px;
    height:8px;

    border-radius:50%;

    background:
    rgba(255,255,255,.35);

    transition:.3s;
}

.qx-dots span.active{

    width:28px;

    border-radius:20px;

    background:
    linear-gradient(
        90deg,
        #00ff88,
        #d4af37
    );

    box-shadow:
        0 0 10px rgba(0,255,136,.4);
}

/* Animation */

@keyframes fadeSlide{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}
/* ======================================
   InterLive POPUP V2
====================================== */

.qt-popup-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:
    rgba(0,0,0,.82);

    backdrop-filter:blur(12px);

    z-index:999999;

    opacity:0;

    visibility:hidden;

    transition:.45s ease;
}

/* =============================== */

.qt-popup-overlay.show{

    opacity:1;

    visibility:visible;
}

/* =============================== */

.qt-popup-container{

    width:92%;
    max-width:520px;

    padding:40px;

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(15,20,17,.98),
        rgba(7,12,10,.98)
    );

    border:
    1px solid rgba(255,255,255,.08);

    text-align:center;

    transform:
    translateY(50px)
    scale(.85);

    transition:.45s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,.5);
}

.qt-popup-overlay.show
.qt-popup-container{

    transform:
    translateY(0)
    scale(1);
}

/* =============================== */

.qt-popup-glow{

    position:absolute;

    width:250px;
    height:250px;

    top:-100px;
    right:-80px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,255,136,.20),
        transparent 70%
    );

    filter:blur(30px);

    pointer-events:none;
}

/* =============================== */

.qt-popup-close{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;

    cursor:pointer;

    border-radius:14px;

    color:#fff;

    font-size:16px;

    background:
    rgba(255,255,255,.05);

    transition:.3s;
}

.qt-popup-close:hover{

    transform:rotate(90deg);

    background:
    rgba(255,255,255,.10);
}

/* =============================== */

.qt-popup-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:20px;

    font-size:13px;

    letter-spacing:3px;

    font-weight:700;

    color:#00ff88;

    border:
    1px solid rgba(0,255,136,.25);

    background:
    rgba(0,255,136,.05);
}

/* =============================== */

.qt-popup-title{

    color:#fff;

    font-size:34px;

    font-weight:800;

    margin-bottom:18px;
}

/* =============================== */

.qt-popup-line{

    width:130px;
    height:2px;

    margin:0 auto 25px;

    border-radius:50px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #00ff88,
        #d4af37,
        #00ff88,
        transparent
    );

    box-shadow:
    0 0 20px rgba(0,255,136,.35);
}

/* =============================== */

.qt-popup-description{

    color:#a8b0ae;

    font-size:15px;

    line-height:1.9;

    margin-bottom:30px;
}

/* =============================== */

.qt-btn-primary{

    width:100%;

    height:58px;

    border:none;

    cursor:pointer;

    border-radius:18px;

    font-size:15px;

    font-weight:700;

    color:#07110b;

    background:
    linear-gradient(
        135deg,
        #00ff88,
        #d4af37
    );

    transition:.3s;
}

.qt-btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 25px rgba(0,255,136,.25);
}

/* =============================== */

@media(max-width:768px){

    .qt-popup-container{

        padding:30px 25px;
    }

    .qt-popup-title{

        font-size:26px;
    }

}
.wallet-page{

    max-width:700px;

    margin:auto;

    padding:20px;
}

/* HEADER */

.wallet-label{

    font-size:11px;

    letter-spacing:2px;

    color:#7c8a83;
}

.wallet-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;
}

.wallet-header h1{

    font-size:34px;

    margin-top:4px;
}

.refresh-btn{

    width:48px;
    height:48px;

    border-radius:16px;

    border:1px solid var(--border);

    background:
    rgba(255,255,255,.03);

    color:white;

    cursor:pointer;
}

/* TABS */

.wallet-tabs{

    display:flex;

    gap:10px;

    margin-bottom:20px;
}

.tab{

    flex:1;

    height:52px;

    border:none;

    border-radius:16px;

    color:#7b8581;

    background:#06100b;

    cursor:pointer;

    font-weight:600;
}

.tab.active{

    color:white;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
    );
}

/* CARD */

.wallet-card{

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
    );

    border:1px solid var(--border);

    border-radius:24px;

    padding:20px;

    margin-bottom:16px;

    backdrop-filter:blur(12px);
}

/* BALANCE */

.card-title{

    font-size:12px;

    color:#7c8a83;

    letter-spacing:2px;
}

.balance-value{

    font-size:48px;

    font-weight:800;

    margin-top:10px;
}

.claimable{

    margin-top:8px;

    color:var(--green);

    font-weight:700;
}

.claimable span{

    color:#7b8581;
}

.divider{

    height:1px;

    background:
    rgba(255,255,255,.08);

    margin:20px 0;
}

.wallet-address{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.copy-btn{

    padding:10px 16px;

    border-radius:12px;

    border:1px solid var(--border);

    background:
    rgba(255,255,255,.04);

    color:white;

    cursor:pointer;
}

.wallet-actions{

    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    margin-bottom: 20px;
}

.deposit-btn{

    flex:1;

    height:60px;

    border:none;

    border-radius:16px;

    font-weight:700;

    font-size:16px;

    cursor:pointer;

    color:#000;

    background:
    linear-gradient(
    135deg,
    #43ff96,
    #18c85d
    );
}

.withdraw-btn{

    flex:1;

    height:60px;

    border-radius:16px;

    border:1px solid var(--border);

    background:transparent;

    color:#666;

    font-weight:700;
}

/* GRID */

.wallet-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    margin-bottom:20px;
}

.stat-card{

    background:
    rgba(255,255,255,.02);

    border:1px solid var(--border);

    border-radius:20px;

    padding:18px;
}

.stat-label{

    font-size:12px;

    color:#7c8a83;

    margin-bottom:10px;
}

.stat-value{

    font-size:28px;

    font-weight:800;
}

/* DETAILS */

.section-title{

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:2px;

    color:#7c8a83;

    margin-bottom:20px;
}

.accordion-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:20px;

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.accordion-content{

    padding-top:20px;
}

.detail-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;
}

.detail-row span{

    color:#95a19a;
}

.detail-row strong{

    color:white;
}

/* FOOTER */

.coming-soon{

    text-align:center;

    color:#7c8a83;

    margin-top:30px;
}

.back-link{

    display:inline-block;

    margin-top:30px;

    color:var(--green);

    text-decoration:none;

    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .wallet-page{

        padding:15px;
    }

    .balance-value{

        font-size:38px;
    }

    .wallet-actions{

       grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}
/* ===================================
   WALLET DETAILS
=================================== */

.wallet-details-card{

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.02),
    rgba(255,255,255,.01)
    );

    border:
    1px solid rgba(255,255,255,.05);

    border-radius:24px;

    overflow:hidden;

    margin-top:20px;
}

.wallet-details-title{

    padding:18px 18px 10px;

    font-size:12px;

    letter-spacing:2px;

    font-weight:700;

    color:#7b8581;
}

/* ======================= */

.wallet-accordion{

    border-top:
    1px solid rgba(255,255,255,.04);
}

/* ======================= */

.wallet-accordion-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

    cursor:pointer;
}

/* ======================= */

.wallet-accordion-left{

    display:flex;

    align-items:center;

    gap:12px;
}

.wallet-accordion-left span{

    font-size:18px;

    font-weight:600;

    color:white;
}

/* ======================= */

.wallet-icon{

    width:38px;
    height:38px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:
    rgba(255,255,255,.04);

    font-size:16px;
}

/* ======================= */

.wallet-arrow{

    color:#8d9893;

    transition:.3s;
}

/* ======================= */

.wallet-accordion.active .wallet-arrow{

    transform:rotate(180deg);
}

/* ======================= */

.wallet-accordion-content{

    max-height:0;

    overflow:hidden;

    transition:.4s ease;
}

.wallet-accordion.active
.wallet-accordion-content{

    max-height:1000px;
}

/* ======================= */

.wallet-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 18px;

    font-size:14px;
}

.wallet-row span{

    color:#94a09a;
}

.wallet-row strong{

    color:white;

    font-weight:700;
}

/* ======================= */

.wallet-note{

    padding:0 18px 15px;

    color:#6f7974;

    line-height:1.8;

    font-size:13px;
}
/* ==========================
   TABS
========================== */

.wallet-tabs{

    display:flex;

    gap:8px;

    margin-bottom:20px;

    padding:6px;

    border-radius:18px;

    background:
    rgba(0,0,0,.25);

    border:
    1px solid rgba(255,255,255,.04);
}

.wallet-tab{

    flex:1;

    height:48px;

    border:none;

    cursor:pointer;

    border-radius:14px;

    font-size:14px;

    font-weight:600;

    color:#74817a;

    background:transparent;

    transition:.25s;
}

.wallet-tab.active{

    color:white;

    background:
    rgba(255,255,255,.08);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06);
}
.wallet-tab-content{

    display:none;
}

.wallet-tab-content.active{

    display:block;

    animation:
    fadeTab .3s ease;
}

@keyframes fadeTab{

    from{

        opacity:0;

        transform:
        translateY(10px);
    }

    to{

        opacity:1;

        transform:
        translateY(0);
    }
}
.activity-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

.activity-header h3{

    font-size:20px;

    font-weight:700;
}

.activity-header a{

    color:#00ff88;

    text-decoration:none;

    font-weight:600;
}

.empty-state{

    min-height:120px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#6f7d76;

    font-size:20px;
}
.reward-card{

    padding:20px;

    border-radius:22px;

    margin-bottom:16px;

    border:
    1px solid rgba(212,175,55,.25);

    background:
    linear-gradient(
    180deg,
    rgba(0,255,136,.04),
    rgba(0,0,0,.1)
    );
}

.reward-title{

    font-size:12px;

    letter-spacing:2px;

    color:#9ea89f;

    margin-bottom:12px;
}

.reward-value{

    font-size:42px;

    font-weight:800;

    margin-bottom:10px;
}

.reward-note{

    color:#7c8780;

    line-height:1.8;

    font-size:13px;
}

.reward-row{

    display:flex;

    justify-content:space-between;

    padding:16px 0;

    border-bottom:
    1px solid rgba(255,255,255,.04);
}

.reward-row:last-child{

    border:none;
}

.withdraw-disabled{

    width:100%;

    height:58px;

    margin-top:15px;

    border:none;

    border-radius:18px;

    cursor:not-allowed;

    color:#666;

    font-weight:700;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.04);
}

.reward-footer{

    margin-top:20px;

    text-align:center;

    color:#7c8780;

    font-size:13px;
}
/* NETWORK PAGE */
/* TOP LINE HEADERS */
.x-toprow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.x-smallheading {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 0.5px;
}

.x-mainheading {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 2px;
}

.x-syncbutton {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.x-descparagraph {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 24px;
}

/* ==========================================================================
   BLOCK CARD COMPONENT (V-SERIES)
   ========================================================================== */
.v-blockbox {
    background: rgba(10, 20, 14, 0.6);
    border: 1px solid #112216;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.v-blockbox.border-gold {
    border: 1px solid rgba(243, 186, 47, 0.25);
}

.v-boxsubtitle {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.5px;
    display: block;
}

.v-bignumber {
    font-size: 26px;
    font-weight: 700;
    margin: 6px 0;
}

.v-boxdesc {
    font-size: 11px;
    color: #475569;
    font-weight: 500;
}

.v-flexsplit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v-actioncopy {
    background: #1c1917;
    border: 1px solid #451a03;
    color: #f59e0b;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* LABEL UTAMA TIAP BAGIAN */
.u-sectionlabel {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.5px;
    margin-top: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ==========================================================================
   OVERVIEW ELEMENTS (U-SERIES)
   ========================================================================== */
.u-twogrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.u-minibox, .u-widebox {
    background: rgba(10, 20, 14, 0.6);
    border: 1px solid #112216;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.u-widebox {
    width: 100%;
}

.u-iconwrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bg-dim-green { background: rgba(34, 197, 94, 0.08); color: #22c55e; }
.bg-dim-emerald { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.bg-dim-gold { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }

.u-boxval {
    font-size: 16px;
    font-weight: 700;
}

.u-boxlbl {
    font-size: 10.5px;
    color: #475569;
    margin-top: 2px;
    font-weight: 500;
}

/* ==========================================================================
   LEVELS BADGE STRIP ROW (T-SERIES)
   ========================================================================== */
.t-splitlabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-rlabel {
    font-size: 10px;
    color: #475569;
    font-weight: 600;
    margin-top: 12px;
}

.t-ten-rowgrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Membentuk 5 kolom di atas, sisanya otomatis ke baris baru bawahnya */
    gap: 6px;
    margin-bottom: 20px;
}

.t-levelbadge {
    background: rgba(10, 20, 14, 0.6);
    border: 1px solid #112216;
    border-radius: 8px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.t-lvlnm {
    font-size: 9px;
    color: #475569;
    font-weight: 600;
}

.t-lvlval {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
}

/* ==========================================================================
   DATA TABLE LIST (S-SERIES)
   ========================================================================== */
.s-tablecard {
    background: rgba(10, 20, 14, 0.6);
    border: 1px solid #112216;
    border-radius: 14px;
    padding: 16px 0; /* padding atas bawah saja, bagian baris menempel penuh ke pinggir kiri kanan */
}

.s-tablecaption {
    font-size: 11.5px;
    color: #475569;
    padding: 0 16px 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.s-tablerow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.s-tablerow:last-child {
    border-bottom: none; /* Garis pembatas paling bawah dihapus */
    padding-bottom: 4px;
}

.s-rowkey {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.s-rowval {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.s-rowval strong {
    font-size: 10px;
    color: #ffffff;
    margin-left: 3px;
    font-weight: 700;
}

/* Utility Color Map */
.text-white { color: #ffffff; }
.text-gold { color: #f3ba2f; }
.text-emerald { color: #10b981; }
.tracking-wide { letter-spacing: 0.8px; }

/* ==========================================================================
   PROFILE PAGE
   ========================================================================== */
.m-pagetitle {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    padding-left: 2px;
}

.m-sectionlabel {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.8px;
    margin: 24px 0 10px 4px;
}

/* ==========================================================================
   KARTU UTAMA MODUL (P-SERIES COMPONENT)
   ========================================================================== */
.p-cardcontainer {
    background: rgba(10, 18, 13, 0.65);
    border: 1px solid #102215;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
}

.p-cardcontainer.no-padding-box {
    padding: 0;
}

.p-cardcontainer.bg-dark-card {
    background: rgba(6, 12, 9, 0.9);
}

.p-cardcontainer.border-dim-green {
    border: 1px solid rgba(34, 197, 94, 0.15);
}

/* USER INFO ROW BLOCK */
.p-userflex {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.p-avatarbox {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #10b981;
}

.p-greeting {
    font-size: 11px;
    display: block;
}

.p-usernumber {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin: 2px 0;
}

.p-userlevel {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.p-referralcount {
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

/* INTERNAL RANK BOX AREA */
.p-rankbox {
    background: rgba(3, 7, 5, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 14px;
}

.p-rankheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.p-ranktitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.p-badgealert {
    font-size: 11px;
    font-weight: 700;
}

.p-rankstats-row {
    font-size: 12px;
    margin-bottom: 10px;
}

.p-ranknotice {
    font-size: 11px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.p-ranktarget {
    font-size: 11px;
    line-height: 1.3;
}

/* ==========================================================================
   MODUL SALIN LINK REFERRAL (INVITE & EARN SECTOR)
   ========================================================================== */
.p-invitehead {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.p-gifticon {
    font-size: 15px;
}

.p-invitetitle {
    font-size: 14px;
    font-weight: 700;
}

.p-invitesub {
    font-size: 12px;
    margin-bottom: 16px;
}

/* Baris Salin Data Dupleks */
.p-copyrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
}

.p-copyrow:nth-of-type(2) {
    border-bottom: none;
    padding-bottom: 16px;
}

.p-copyvalue {
    font-size: 13.5px;
}

.p-copybtn {
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Blok Grid Tombol Utama Akses Share */
.p-actiongrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.p-btnshare {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: 1px solid #22c55e;
    color: #ffffff;
    font-weight: 600;
    padding: 12px;
    border-radius: 20px;
    font-size: 13.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.p-btncopyall {
    background: #181c19;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-weight: 600;
    padding: 12px;
    border-radius: 20px;
    font-size: 13.5px;
    cursor: pointer;
}

/* Icon Sosial Kecil Di Bawah */
.p-socialrow {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 14px 0 8px 0;
}

.p-socitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.p-socicon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.p-soctext {
    font-size: 9px;
    color: #475569;
    font-weight: 600;
    margin-top: 4px;
}

.p-earningsoon {
    font-size: 11px;
    text-align: center;
    margin-top: 14px;
}

/* ==========================================================================
   TABEL DETAIL DATA AKUN (ACCOUNT ROW LIST)
   ========================================================================== */
.p-listrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.p-listrow.no-border {
    border-bottom: none;
}

.p-listkey {
    font-size: 12.5px;
    font-weight: 500;
}

.p-listval-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-listval {
    font-size: 13px;
    font-weight: 600;
}

.p-listcopy {
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

/* ==========================================================================
   MINI PREVIEW BAR STRIP SEGMENTED (NETWORK INTERNAL BOX)
   ========================================================================== */
.p-mini-nethead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.p-neticon-frame {
    width: 34px;
    height: 34px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 15px;
}

.p-netbox-title {
    font-size: 14px;
    font-weight: 700;
}

.p-netbox-sub {
    font-size: 11px;
    display: block;
}

/* Segmented 10 Grid Block Mini */
.p-segbar-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 3px;
    margin-bottom: 16px;
}

.p-segbar {
    height: 12px;
    background: #0d1510;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.01);
}

.p-segbar span {
    font-size: 7.5px;
    color: #334155;
    font-weight: 700;
}

.p-segbar.active {
    background: #166534; /* Kondisi level aktif berwarna hijau gelap */
}
.p-segbar.active span {
    color: #4ade80;
}

/* Footer Flex Jaringan internal */
.p-netfoot-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.p-netbigcount {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.p-nettodayscount {
    font-size: 10.5px;
    margin-top: 4px;
}

.p-netright-invite {
    font-size: 11px;
    text-align: right;
    line-height: 1.4;
    max-width: 180px;
}

/* Tombol Akses Pintu Gerbang Utama Jaringan */
.p-btnviewnetwork {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 11px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s;
}

.p-btnviewnetwork:hover {
    background: rgba(34, 197, 94, 0.03);
}

.p-arrow-indicator {
    font-size: 12px;
}

/* ==========================================================================
   UTILITY MAP PRESETS
   ========================================================================== */
.text-white { color: #ffffff; }
.text-muted { color: #475569; }
.text-emerald { color: #10b981; }
.text-gold { color: #f3ba2f; }
.text-gold-amber { color: #d97706; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-align-right { text-align: right; }
/* ==========================================================================
   LOADER
   ========================================================================== */

/* ==========================================================================
   InterLive PREMIUM CUSTOM LOADER FULLSCREEN
   ========================================================================== */
.qxl-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030704;
    background-image: radial-gradient(circle at 50% 50%, #06180c 0%, #010402 100%);
    z-index: 9999; /* Memastikan loader berada di lapisan paling atas */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* KOTAK TENTGAH BINDER */
.qxl-center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

/* ==========================================================================
   ANIMASI EMBLEM SPINNING WHEEL (100% InterLive STYLE)
   ========================================================================== */
.qxl-emblem-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ring Emas-Hijau Berputar Berlawanan Arah Jarum Jam */
.qxl-ring-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(
        #d4af37 0deg, #15803d 60deg, 
        #022c16 120deg, #d4af37 180deg, 
        #22c55e 240deg, #a16207 300deg, 
        #d4af37 360deg
    );
    animation: qxlSpinCcw 2s linear infinite;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* Garis Putus Mekanis Berputar Searah Jarum Jam */
.qxl-gear-dashed {
    width: 100%;
    height: 100%;
    background: #040d06;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(212, 175, 55, 0.7);
    animation: qxlSpinCw 3s linear infinite;
}

/* Inti Hijau yang Berdenyut (Pulse Glow) */
.qxl-core-glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #22c55e 10%, #15803d 60%, #022c16 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    animation: qxlPulseGlow 1.5s ease-in-out infinite alternate;
}

/* Huruf Q di Tengah */
.qxl-letter {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 6px #000000, 2px 2px 0px #d4af37;
    font-style: italic;
    transform: translateX(-1px);
    animation: qxlTextFix 3s linear infinite; /* Menahan huruf tetap tegak saat lingkaran berputar */
}

/* ==========================================================================
   TYPOGRAPHY & BRANDING PROGRESS
   ========================================================================== */
.qxl-brand-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to bottom, #eab308 0%, #ca8a04 35%, #22c55e 55%, #15803d 75%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.8));
    margin-bottom: 24px;
}

/* Jalur Indikator Progress */
.qxl-bar-track {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Isi Indikator Progress Emas */
.qxl-bar-fill {
    height: 100%;
    width: 0%; /* Diatur dinamis lewat JS */
    background: linear-gradient(90deg, #ca8a04, #eab308, #22c55e);
    box-shadow: 0 0 8px #eab308;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.qxl-status-text {
    font-size: 11px;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   SISTEM ANIMASI KEYFRAMES
   ========================================================================== */
@keyframes qxlSpinCw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes qxlSpinCcw {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes qxlPulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; box-shadow: inset 0 0 15px rgba(34,197,94,0.6), 0 0 15px rgba(34,197,94,0.4); }
}

@keyframes qxlTextFix {
    0% { transform: rotate(0deg) translateX(-1px); }
    100% { transform: rotate(-360deg) translateX(-1px); }
}
/* ==========================================================================
   InterLive PAGE TRANSITION PRELOADER (BURAM OVERLAY)
   ========================================================================== */
.qxp-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 3, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* MODIFIKASI DIMULAI DI SINI */
    opacity: 1; /* Set ke 1 sejak awal agar langsung menutupi layar saat HTML dibaca */
    pointer-events: auto; 
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    visibility: visible;
}

/* KONDISI KETIKA SELESAI DIMUAT (DILEPAS OLEH JS) */
.qxp-blur-overlay {
    /* Ketika class .qxp-active TIDAK ADA, maka dia akan memudar lalu menghilang */
}

/* Ubah selector active-nya menjadi kebalikannya jika menggunakan struktur bawaan */
.qxp-blur-overlay:not(.qxp-active) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; /* Mencegah elemen memblokir klik meskipun transparan */
}

/* KOTAK KONTEN DI TENGAH */
.qxp-loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* LINGKARAN INDIKATOR PUTARAN (THEME MATCHED) */
.qxp-spinning-core {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 3px;
    
    /* Gradasi lingkaran logam emas-hijau khas logo */
    background: conic-gradient(
        #d4af37 0deg, 
        #15803d 120deg, 
        #22c55e 240deg, 
        #d4af37 360deg
    );
    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    animation: qxpRotation 0.9s linear infinite;
}

/* Inti Gelap Di Dalam Lingkaran Putar */
.qxp-inner-glow {
    width: 100%;
    height: 100%;
    background: #030805;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* TEKS MINIMALIS */
.qxp-loading-text {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* KEYFRAMES ANIMASI PUTARAN SPEEDY */
@keyframes qxpRotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trading-container {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, #091713 0%, #050d0b 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #122b24;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.chart-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000000;
    border: 1px solid #122b24;
    margin-bottom: 20px;
    position: relative;
}
.account-summary-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .summary-row:last-child {
            margin-bottom: 0;
        }

        .summary-row .label {
            color: #333333;
            font-weight: 600;
        }

        .summary-row .dots {
            flex-grow: 1;
            border-bottom: 1px dotted #cccccc;
            margin: 0 10px;
            position: relative;
            top: -4px;
        }

        .summary-row .value {
            color: #2563eb; /* Warna Biru Sesuai Gambar */
            font-weight: 700;
            text-align: right;
        }

        /* Grid Bagian Bawah untuk Bot Stat */
        .bot-status-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            background-color: rgba(9, 23, 19, 0.6);
            border-radius: 16px;
            padding: 15px;
            border: 1px solid #122b24;
        }

        .stat-box {
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stat-box .title {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            color: #a3a3a3;
        }

        /* Box Trading Balance (Sisi Kiri) */
        .box-balance {
            border: 2px solid #22c55e;
            background-color: rgba(6, 13, 11, 0.8);
        }

        .box-balance .value {
            color: #f59e0b; /* Warna Oranye Emas */
            font-size: 26px;
            font-weight: 700;
        }

        /* Box Profit Berjalan (Sisi Kanan) */
        .box-profit {
            background-color: #ffffff;
            border: 2px solid #e5e7eb;
        }

        .box-profit .title {
            color: #666666;
        }

        .box-profit .value {
            color: #16a34a; /* Warna Hijau Profit */
            font-size: 26px;
            font-weight: 700;
        }