:root {
    --bg-dark: #05000a;
    --bg-main: rgba(0, 0, 0);
    --bg-side: #05000a;
    --surface: #0f001a;
    --ds-glass-bg: rgba(10, 0, 20, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-blur: blur(15px);
    --gold-1: #6b21a8;
    --gold-2: #f5d0fe;
    --gold-3: #4c1d95;
    --gold-metallic: #d946ef;
    --ds-gold: #a855f7;
    --ds-gold-main: #8b5cf6;
    --primary: #7c3aed;
    --text-gold: #e9d5ff;
    --gold-linear: linear-gradient(180deg, #d946ef 0%, #7c3aed 50%, #4c1d95 100%);
    --gold-text: linear-gradient(180deg, #ffffff 35%, #d946ef 60%, #7c3aed 100%);
    --gold-gradient: linear-gradient(to right, #4c1d95 0%, #a855f7 25%, #f5d0fe 50%, #a855f7 75%, #4c1d95 100%);
    --glass-jp: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
    --bgluxury: linear-gradient(105deg, transparent 30%, rgba(217, 70, 239, 0.2) 45%, rgba(255, 255, 255, 0.5) 50%, rgba(217, 70, 239, 0.2) 55%, transparent 71%);
    --glass-border: rgba(168, 85, 247, 0.3);
    --ds-glass-border: rgba(168, 85, 247, 0.4);
    --border: rgba(255, 255, 255, 0.03);
    --gold-soft: rgba(168, 85, 247, 0.1);
    --primary-glow: rgba(124, 58, 237, 0.5);
    --ds-gold-glow: rgba(217, 70, 239, 0.6);
    --ds-shadow-gold: rgba(139, 92, 246, 0.4);
    --ds-shadow-pulse-low: rgba(124, 58, 237, 0.2);
    --ds-shadow-pulse-high: rgba(168, 85, 247, 0.8);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --ds-text-dim: #818cf8;
    --radius-lg: 24px;
    --radius-md: 12px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --rtp-green: #00ffcc;
    --gem-primary: #d946ef;
    --gem-surface: rgba(15, 5, 25, 0.85);
    --gem-text-main: #ffffff;
    --gem-text-dim: #a855f7;
    --gem-text-success: #00ffcc;
    --gem-text-danger: #ff0055;
    --gem-bg-dark: #000000;
    --shadow: #000 0px 4px 12px;
    --main: #fff;
    --gold: #a855f7;
    --line: rgba(168, 85, 247, 0.2);
    --grad: linear-gradient(135deg, #0a0015 0%, #000000 100%);
    --daftar: linear-gradient(180deg, #f5d0fe 0%, #a855f7 100%);
    --shadow-daftar: 0 4px 0px #581c87;
    --login: linear-gradient(180deg, #1e1b4b 0%, #000 100%);
    --shadow-login: 0 4px 0px #7c3aed;
    --dark-slate: #05000a;
    --glow-deep-red: #1a0033;   
    --glow-royal-blue: #020617; 
    --glow-purple: #1e1b4b;      
    --glow-dark-gold: #110022; 
    --anim-speed: 5s;
    --clear: transparent;
    --rainbow: linear-gradient(45deg, #a855f7, #f5d0fe, #d946ef, #3b82f6, #a855f7);
    --gem-3d-glow: rgba(168, 85, 247, 0.5);
    --gem-3d-shadow: rgba(0, 0, 0, 0.9);
    --gem-gold-grad: linear-gradient(145deg, #a855f7, #4c1d95);
    --gem-dark-glass: rgba(5, 0, 10, 0.95);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none !important;
    user-select: none;
    -webkit-user-drag: none;
}
::-webkit-scrollbar { display: none; }
html { 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    background-color: var(--bg-main);
}
.thunder-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}
.lightning {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: #fff;
    box-shadow: 0 0 20px 5px var(--primary), 0 0 40px 10px #fff;
    opacity: 0;
    filter: blur(1px);
}
.lightning-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
@keyframes lightningStrike {
    0% { opacity: 0; transform: translateX(0) scaleX(1); }
    1% { opacity: 1; transform: translateX(-5px) scaleX(1.5); }
    2% { opacity: 0; }
    3% { opacity: 1; transform: translateX(5px) scaleX(1); }
    5% { opacity: 0; }
    7% { opacity: 1; transform: translateX(0); }
    10% { opacity: 0; }
}
@keyframes flashEffect {
    0% { opacity: 0; }
    1% { opacity: 0.15; }
    2% { opacity: 0; }
    3% { opacity: 0.1; }
    5% { opacity: 0; }
}
.lightning:nth-child(1) { left: 20%; animation: lightningStrike 5s infinite; animation-delay: 1s; }
.lightning:nth-child(2) { left: 50%; animation: lightningStrike 7s infinite; animation-delay: 3s; }
.lightning:nth-child(3) { left: 80%; animation: lightningStrike 6s infinite; animation-delay: 5s; }
.lightning-flash {
    animation: flashEffect 5s infinite;
    animation-delay: 1s;
}
body {
    background: var(--bg-main);
    background-color: var(--bg-main);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-color: var(--bg-dark);
    background: var(--bg-main);
    background-image: linear-gradient(32deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)),linear-gradient(150deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)),linear-gradient(32deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)),linear-gradient(150deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)),linear-gradient(60deg, var(--gold-soft) 25%, transparent 25.5%, transparent 75%, var(--gold-soft) 75%, var(--gold-soft)),linear-gradient(60deg, var(--gold-soft) 25%, transparent 25.5%, transparent 75%, var(--gold-soft) 75%, var(--gold-soft));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.2; 
}
@media (max-width: 768px) {
    body::before {
        background-size: 40px 70px;
        background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
        opacity: 0.12;
    }
}
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/*START MAINTENANCE & LARANG IN JS*/
.maintenance-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    z-index: 10;
    position: relative;
}
.maintenance {
    position: relative;
    z-index: 2;
    padding: 10px;
    width: calc(100% - 40px);
    max-width: 450px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
    margin: auto;
    box-sizing: border-box;
}
.error-icon {
    font-size: 50px;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--clear);
    filter: drop-shadow(0 0 10px rgba(191, 149, 63, 0.3));
}
.error-code {
    font-size: 11px;
    color: var(--gem-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}
h1 {
    font-size: 22px;
    color: var(--gem-primary);
    font-weight: 800;
    margin-bottom: 15px;
}
p {
    color: var(--gem-text-main);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.btn-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    background: var(--rainbow);
    color: var(--surface);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 12px;
    width: auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 10px;
    color: var(--gem-text-success);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.status-dot {
    width: 7px;
    height: 7px;
    background: var(--gem-text-success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gem-text-success);
    animation: pulse 1.5s infinite;
}
.larang-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    z-index: 10;
    position: relative;
}
.larang {
    position: relative;
    z-index: 2;
    padding: 10px;
    width: calc(100% - 40px);
    max-width: 450px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
    margin: auto;
    box-sizing: border-box;
}
.info-box {
    padding: 5px;
    border-radius: 25px;
    margin-bottom: 15px;
    border-left: 3px solid var(--ds-glass-border);
    box-shadow: var(--shadow);
    background: var(--glass-bg);
}
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: var(--rainbow);
    color: var(--surface);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 12px;
    width: auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}
/*END MAINTENANCE & LARANG IN JS*/

/*START NOTIFICATION*/
#notif-container { position: fixed; top: 50px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.glass-notif {
    min-width: 250px; padding: 15px 20px; border-radius: 12px;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    color: white; display: flex; align-items: center; gap: 12px;
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
    transform: translateX(120%); transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.glass-notif.show { transform: translateX(0); }
.notif-success { background: var(--gem-text-success); border-left: 5px solid #22c55e; }
.notif-error { background: var(--gem-text-danger); border-left: 5px solid #ef4444; }
.notif-warning { background: var(--ds-gold-glow); border-left: 5px solid var(--gem-primary); }
.glass-notif i { font-size: 18px; }
/*END NOTIFICATION*/

/*START ALERT TR DEPO&WD*/
.snack-box {
    position: fixed;
    left: -400px;
    width: 200px;
    bottom: 55px;
    z-index: 999999;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgb(15 23 42 / 44%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: #000 0px 4px 8px;
}
.snack-box.active { left: 20px; }
.snack-img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.snack-info { line-height: 1.3; overflow: hidden; }
.snack-user { display: block; font-weight: 700; font-size: 12px; color: #fff; white-space: nowrap; }
.snack-meta { display: block; font-size: 10px; color: rgba(255,255,255,0.7); }
.snack-val { display: block; font-size: 11px; font-weight: 800; }
.snack-bonus { font-size: 9px; color: var(--ds-gold); font-style: italic; display: block; margin-top: 2px; }
.snack-wd-mode { border-left: 3px solid #10b981; }
.snack-wd-mode .snack-img { background: #10b981; color: #fff; box-shadow: #000 0px 4px 8px; }
.snack-wd-mode .snack-val { color: var(--gem-text-success); }
.snack-dp-mode { border-left: 3px solid var(--gem-primary); }
.snack-dp-mode .snack-img { background: var(--gem-primary); color: #fff; box-shadow: #000 0px 4px 8px; }
.snack-dp-mode .snack-val { color: var(--gem-primary); }
/*END ALERT TR DEPO&WD*/

/*START HEADER LOGO&DOWNLOAD*/
.main-header {
    position: sticky;
    top: 0;
    height: 70px;
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}
.logo-box .brand-img {
    height: 50px;
    width: auto;
}
.header-btns {
    display: flex;
    /*gap: 10px;*/ gap: 5px;
}
.btn-top {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
}
.btn-top.login {
    background: var(--bgluxury);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.btn-top.reg {
    background: var(--gold-linear);
    color: var(--surface);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.gem-banner-apk {
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.gem-content-area {
    padding: 0px 5%;
    margin: 5px;
}
.gem-apk-left { display: flex; align-items: center; gap: 10px; }
.gem-apk-close {
    background: #ff4d4d; border: none; color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.gem-apk-icon { color: #3ddc84; font-size: 22px; }
.gem-apk-center { flex-grow: 1; padding-left: 12px; }
.gem-apk-title { font-weight: 800; font-size: 13px; color: #fff; text-transform: uppercase; }
.gem-apk-subtitle { font-size: 10px; color: var(--gem-text-dim); }
.gem-btn-download { 
    background: var(--gem-primary); 
    color: #000; 
    width: 35px; height: 35px; 
    border-radius: 10px; 
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}
.gem-dl-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #1e293b;
    padding: 20px;
    border-radius: 20px;
    width: 80%; max-width: 300px;
    text-align: center;
    z-index: 1000002;
    border: 1px solid var(--gem-primary);
    display: none; opacity: 0;
    transition: 0.3s;
}
.gem-dl-popup.show { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gem-progress-container {
    background: rgba(255,255,255,0.1);
    height: 10px; border-radius: 10px; margin: 15px 0;
    overflow: hidden;
}
.gem-progress-bar {
    background: var(--gem-primary);
    width: 0%; height: 100%; transition: width 0.1s;
}
.gem-dl-status { font-size: 12px; font-weight: bold; color: var(--gem-primary); }
.gem-overlay-dl {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 1000001; display: none;
}
.user-header-info {
    display: flex;
    align-items: center;
    /*gap: 12px;*/ gap: 5px;
}
.glass-3d {
    background: var(--glass-jp);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--ds-glass-border);
    border-radius: 10px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.slim-wallet {
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.wallet-icon i {
    font-size: 18px;
    color: var(--primary);
    vertical-align: middle;
}
.wallet-amount {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    /*letter-spacing: 0.5px;*/
}
.wallet-add i {
    font-size: 16px;
    color: var(--primary);
}
.slim-profile {
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.slim-profile i {
    font-size: 18px;
    color: var(--primary);
}
.btn-logout-sleek {
    background: rgba(255, 77, 77, 0.05);
    border: 1px solid rgba(255, 77, 77, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #ff4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: var(--shadow);
}
.btn-logout-sleek i { font-size: 18px; }
.gem-pop-dana {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--ds-glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gem-pop-dana.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.gem-dana-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #eee;
    transition: all 0.2s ease;
}
.gem-dana-link span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.gem-dana-link:hover {
    background: var(--gem-gold-grad);
    color: var(--surface);
    box-shadow: var(--shadow);
}
@media (max-width: 768px) {
    .username-text { display: none; }
    .glass-3d { padding: 6px 10px; }
    .main-header { /*padding: 10px 15px;*/ padding: 5px; }
    .gem-pop-dana {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }
    .gem-pop-dana.show {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    .wallet-amount {
        font-size: 10px;
    }
    .wallet-icon i {
        font-size: 13px;
    }
    .wallet-add i {
        font-size: 13px;
    }
}
/*END HEADER LOGO&DOWNLOAD*/

/*START LOGIN,REGISTER,FORGET,OTP*/
body.modal-open { overflow: hidden !important; }
.ds-auth-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px); z-index: 9999;
    display: none; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; transition: 0.3s;
}
.ds-auth-overlay.active { display: flex; opacity: 1; }
.ds-auth-card {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    border: 1px solid var(--ds-glass-border);
    position: relative;
    padding: 30px;
    box-shadow: var(--shadow);
    transform: translateY(30px);
    transition: 0.4s;
}
.ds-auth-overlay.active .ds-auth-card { transform: translateY(0); }
.ds-auth-close {
    position: absolute; top: -5px; right: -5px; background: none;
    border: none; color: var(--ds-gold); font-size: 32px; cursor: pointer;
    transition: 0.3s; z-index: 10;
}
.ds-auth-close:hover { transform: rotate(90deg) scale(1.1); }
.ds-auth-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: var(--ds-glass-bg);
    padding: 5px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.ds-nav-item {
    flex: 1; padding: 12px; border: none; background: none;
    color: var(--ds-text-dim); font-weight: 700; cursor: pointer;
    border-radius: 8px; transition: 0.3s; font-size: 13px;
}
.ds-nav-item.active {
    background: var(--gold-linear);
    color: #000;
    box-shadow: var(--shadow);
}
.ds-auth-form { display: none; }
.ds-auth-form.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ds-form-header { text-align: center; margin-bottom: 20px; }
.ds-form-header h3 {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    will-change: transform, filter;
    animation: shineGold 3s linear infinite, smoothPulse 2s ease-in-out infinite alternate;
}
.ds-form-header p { 
    color: var(--ds-text-dim); 
    font-size: 12px; 
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInSimple 0.8s ease-out forwards;
}
@keyframes shineGold {
    to { background-position: 200% center; }
}
@keyframes smoothPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px var(--ds-shadow-pulse-low));
    }
    100% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 8px var(--ds-shadow-pulse-high));
    }
}
@keyframes fadeInSimple {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.ds-input-box { position: relative; margin-bottom: 15px; }
.ds-input-box i:not(.ds-toggle-pass) {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: var(--ds-gold); font-size: 18px;
}
.ds-input-box input {
    width: 100%; 
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--ds-glass-border);
    border-radius: 12px; 
    color: #fff; 
    outline: none; 
    transition: 0.3s;
    background: #00000000;
    box-shadow: var(--shadow);
}
.ds-input-box input:focus { 
    border-color: var(--ds-gold);
    box-shadow: none;
}
.ds-input-box input:-webkit-autofill,
.ds-input-box input:-webkit-autofill:hover, 
.ds-input-box input:-webkit-autofill:focus, 
.ds-input-box input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px rgba(0,0,0,0) !important;
}
.ds-toggle-pass { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); cursor: pointer; color: #555; }
.ds-captcha-flex { display: flex; gap: 10px; margin-bottom: 20px; }
.ds-cap-input input { padding-left: 15px !important; text-align: center; font-weight: 800; letter-spacing: 2px; background: rgba(255,255,255,0) !important; }
.ds-cap-input {
    margin-bottom: 0;
    flex: 1;
}
.ds-captcha-img {
    background: rgba(255, 255, 255, 0) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    padding: 0 15px;
    align-items: center;
    letter-spacing: 3px;
    border: 1px dashed var(--ds-glass-border);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
    display: flex;
    box-shadow: var(--shadow);
}
.ds-btn-refresh {
    background: rgba(255, 255, 255, 0);
    border: 1px solid var(--ds-glass-border);
    border-radius: 12px;
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.ds-form-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
}
.ds-form-scroll::-webkit-scrollbar { width: 4px; }
.ds-form-scroll::-webkit-scrollbar-thumb { background: var(--ds-gold); border-radius: 10px; }
.ds-select-container { position: relative; margin-bottom: 15px; }
.ds-select-trigger {
    background: rgba(255, 255, 255, 0);
    border: 1px solid var(--ds-glass-border);
    padding: 14px 15px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ds-text-dim);
    box-shadow: var(--shadow);
}
.ds-select-trigger i:not(.ds-toggle-pass) {
    color: var(--ds-gold);
}
.ds-select-menu {
    position: absolute; top: 110%; left: 0; width: 100%; background: #1a1a1a;
    border: 1px solid var(--ds-gold); border-radius: 12px; z-index: 100;
    max-height: 200px; overflow-y: auto; display: none;
}
.ds-select-menu.active { display: block; }
.ds-opt-group { padding: 8px 15px; background: #222; font-size: 10px; color: var(--ds-gold); font-weight: 800; }
.ds-opt-item { padding: 10px 15px; cursor: pointer; color: #fff; }
.ds-opt-item:hover { background: var(--ds-gold); color: #000; }
.ds-alert-info {
    border: 1px solid var(--glass-border);
    color: var(--text-gold);
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 9px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: alertPulse 3s ease-in-out infinite;
    will-change: transform, box-shadow, border-color;
}
.ds-alert-info i {
    font-size: 18px;
    color: var(--ds-gold);
    filter: drop-shadow(0 0 5px var(--ds-gold-glow));
    animation: iconBounce 2s ease-in-out infinite;
}
.ds-alert-info span {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3px;
}
@keyframes alertPulse {
    0% {
        border-color: var(--glass-border);
        box-shadow: var(--shadow);
        transform: scale(1);
    }
    50% {
        border-color: var(--ds-gold);
        box-shadow: var(--shadow);
        transform: scale(1.01);
    }
    100% {
        border-color: var(--glass-border);
        box-shadow: var(--shadow);
        transform: scale(1);
    }
}
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.ds-btn-primary {
    width: 100%;
    padding: 15px;
    background: var(--gold-linear);
    border: none;
    border-radius: 12px;
    color: var(--surface);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: var(--shadow);
}
.ds-auth-links { text-align: center; margin-top: 20px; font-size: 13px; color: var(--ds-text-dim); }
.ds-auth-links a { color: var(--ds-gold); text-decoration: none; font-weight: 700; }
#dsauth-toast-container {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.dsauth-toast {
    background: var(--ds-gold-glow); border-left: 5px solid var(--gem-primary);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    animation: toastIn 0.5s forwards;
    min-width: 250px;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
}
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes dsPop {
    from { opacity: 0; transform: scale(0.96) translateY(-15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
/*END LOGIN,REGISTER,FORGET,OTP*/

/*START SLIDE BANNER*/
.hero-container {
    padding: 10px 5% 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.banner-container {
    width: 100%;
    max-width: 1400px;
    margin-top: -10px;
}
.banner-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16 / 8;
    box-shadow: var(--shadow);
}
@media (min-width: 1024px) {
    .banner-wrapper {
        aspect-ratio: auto;
        height: 380px; 
    }
}
.slide-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 1.2s ease-in-out;
    transform: scale(1.05);
}
.slide-content.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}
.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    image-rendering: -webkit-optimize-contrast;
}
.slide-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
}
.slide-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 25px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.dot.is-active {
    background: var(--gold-linear, #d4af37);
    width: 40px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}
.dot.is-active::before {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    animation: slideProgress 5s linear forwards;
}
@keyframes slideProgress {
    from { width: 0; }
    to { width: 100%; }
}
/*END SLIDE BANNER*/

/*START MARQUEE*/
.marquee-box {
    height: 30px;
    display: flex;
    align-items: center;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-top: 5px;
    box-shadow: var(--shadow);
}
.marquee-tag {
    background: var(--gold-linear);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}
marquee { color: var(--text-gold); font-size: 13px; font-weight: 600; }
/*END MARQUEE*/

/*START JACKPOT*/
.ds-desktop-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}
.ds-side-item {
    flex: 1;
    min-width: 150px;
}
.dsjp-mini-card {
    background: var(--glass-jp);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    height: 70px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}
.dsjp-mini-card .ds-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    opacity: 0.9;
}
.dsjp-mini-card .ds-val {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.dsjp-mini-card .ds-amt {
    font-size: 10px;
    font-weight: 900;
    margin-top: 2px;
    letter-spacing: 0.5px;
}
.ds-label {
    font-size: 8px;
    font-weight: 800;
    color: var(--text-gold);
    letter-spacing: 1.5px;
    margin-bottom: 3px;
    opacity: 0.8;
}
#promo-animator {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-val {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}
.ds-amt {
    font-size: 10px;
    font-weight: 900;
    margin-top: 1px;
}
@media (max-width: 1023px) {
    .desktop-only { display: none !important; }
    .ds-desktop-wrapper { padding: 0; }
}
.luxury-jp-compact {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 10px auto;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.jp-glass-top { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--glass-jp); z-index: 2; pointer-events: none; }
.jp-inner-content { text-align: center; z-index: 3; }
.jp-head-text { font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 800; color: var(--text-gold); letter-spacing: 2px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 2px; text-shadow: 0 2px 4px var(--bg-main); }
.live-blink { width: 7px; height: 7px; background: var(--gem-primary); border-radius: 50%; box-shadow: var(--shadow); animation: pulseBlink 0.8s infinite alternate; }
.jp-main-value { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.jp-prefix { font-size: 14px; font-weight: 900; color: var(--text-main); opacity: 0.8; }
.jp-number-3d { font-size: 30px; font-weight: 950; font-family: 'Space Grotesk', sans-serif; letter-spacing: -1px; background: var(--gold-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 3px 0px rgba(0,0,0,0.8)); }
.jp-moving-flare { position: absolute; top: 0; left: -150%; width: 60%; height: 100%; background: var(--bgluxury); z-index: 4; transform: skewX(-20deg); animation: luxuryShine 5s infinite ease-in-out; }
@keyframes luxuryShine { 0% { left: -150%; } 30% { left: 150%; } 100% { left: 150%; } }
@keyframes pulseBlink { from { opacity: 1; transform: scale(1); } to { opacity: 0.5; transform: scale(1.2); } }
/*END JACKPOT*/

/*START MENU DAN GAME PROVIDER*/
.ultra-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    padding: 0 5% 10px 5%;
}
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0 12px 12px 0;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.top-bar {
    padding: 5px;
}
.search-box { 
    position: relative; 
    max-width: 500px; 
    perspective: 1000px;
}
.search-box input {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    padding: 14px 45px;
    border-radius: 12px;
    color: var(--text-main);
    outline: none;
    font-size: 14px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
}
.search-box input:-webkit-autofill,
.search-box input:-webkit-autofill:hover, 
.search-box input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px rgba(10, 10, 10, 0.5) inset;
    transition: background-color 5000s ease-in-out 0s;
    backdrop-filter: blur(15px);
}
.search-box input:focus { 
    transform: translateY(-2px);
}
.search-box .s-icon { 
    position: absolute; 
    left: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: var(--primary);
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    pointer-events: none;
    transition: 0.3s;
    z-index: 100;
}
.search-box .s-reset { 
    position: absolute; 
    right: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: var(--text-dim); 
    cursor: pointer; 
    display: none; 
    transition: 0.3s;
}
.search-box .s-reset:hover {
    color: #ff4d4d;
    transform: translateY(-50%) scale(1.1);
}
.search-box input:not(:placeholder-shown) ~ .s-icon {
    color: #fff;
    filter: drop-shadow(0 0 5px var(--primary));
}
#providerBar { display: none; align-items: center; gap: 10px; animation: slideDown 0.4s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.pvd-scroll {
    flex: 1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 10px 2%;
}
.pvd-scroll::-webkit-scrollbar { display: none; }
.pvd-item {
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.2s;
    box-shadow: var(--shadow);
}
.pvd-item.active {
    background: var(--gold-linear);
    color: var(--surface);
    border-color: var(--primary);
    font-weight: 900;
    box-shadow: var(--shadow);
}
.game-viewport { flex: 1; overflow-y: auto; padding: 5px; scrollbar-width: none; }
.game-viewport::-webkit-scrollbar { display: none; }
.game-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); 
    gap: 12px; 
}
.side-nav {
    width: auto;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    z-index: 100;
    border-radius: 12px 0 0 12px;
    box-shadow: var(--shadow);
}
.g-card {
    border-radius: 16px;
    overflow: hidden;
    display: none;
    transition: 0.3s;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}
.g-thumb { position: relative; width: 100%; aspect-ratio: 1/1; }
.g-thumb img { width: 100%; height: 100%; object-fit: inherit; }
.g-info { 
    padding: 10px;
    border-top: 1px solid var(--border);
}
.g-name { font-size: 10px; font-weight: 700; color: #fff; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; }
.rtp-overlay {
    position: absolute; top: 2px; right: 2px;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    padding: 4px 8px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
    display: none; align-items: center; gap: 4px; z-index: 5;
    box-shadow: var(--shadow);
}
.rtp-val { font-size: 9px; font-weight: 900; }
.flame-anim { color: var(--rtp-green); animation: fire 0.8s infinite alternate; }
@keyframes fire { from { filter: drop-shadow(0 0 2px var(--rtp-green)); } to { filter: drop-shadow(0 0 6px #fff); } }
#empty-state { text-align: center; padding: 60px 20px; display: none; opacity: 0.4; }
.nav-scroll-wrapper { position: relative; flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.nav-scroll { flex: 1; overflow-y: auto; scrollbar-width: none; padding: 10px; }
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-btn {
    width: 100%;
    margin-bottom: 5px;
    padding: 5px 0;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-btn img { 
    width: 24px; 
    height: 24px; 
    object-fit: contain; 
    filter: grayscale(1) brightness(0.8) opacity(0.7); 
    transition: var(--transition);
}
.nav-btn span {
    font-size: 8px;
    font-weight: 800;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 4px;
    transition: var(--transition);
}
.nav-btn.active {
    background: var(--gold-linear);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.nav-btn.active img {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 5px rgba(255,255,255,0.5));
}
.nav-btn.active span {
    color: var(--surface);
    font-weight: 900;
}
.nav-divider { border: none; border-top: 1px solid var(--border); margin: 10px 15px; }
.loader-wrapper { display: flex; justify-content: center; gap: 10px; padding: 10px 0; }
.btn-load {
    background: var(--gold-linear);
    border: 1px solid var(--ds-glass-border);
    color: var(--surface);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 900;
    cursor: pointer;
    font-size: 11px;
    transition: 0.3s;
}
@media (max-width: 768px) {
    .side-nav { width: 60px !important; }
    .game-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .nav-btn span { font-size: 7px; }
    .rtp-overlay {
        top: 0px;
        right: 0px;
        padding: 0px;
        gap: 0px;
        background: var(--clear);
        border-radius: 0px;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }
}
/*END MENU DAN GAME PROVIDER*/

/*START POPUPIMAGE*/
.ds-popupimage-overlay {
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
    backface-visibility: hidden;
    will-change: opacity;
    background: var(--gem-surface);
}
.ds-popupimage-overlay.active {
    display: flex;
    opacity: 1;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ds-popupimage-overlay.closing {
    opacity: 0;
    pointer-events: none;
}
.ds-popupimage-overlay.active .ds-popupimage-wrapper {
    transform: scale(1);
}
.ds-popupimage-overlay.closing .ds-popupimage-wrapper {
    transform: scale(0.8);
}
.ds-popupimage-wrapper {
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-radius: 20px;
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.ds-popupimage-img {
    border: 2px solid var(--line);
    border-bottom: none;
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    display: block;
    object-fit: contain;
}
body.modal-open {
    overflow: hidden !important;
}
.ds-popupimage-panel {
    backdrop-filter: var(--glass-blur);
    width: 100%;
    padding: 15px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border: 2px solid var(--line);
    border-top: 1px solid var(--line);
    box-sizing: border-box;
    text-align: center;
    will-change: border-color, box-shadow;
}
.ds-popupimage-panel h4, 
.ds-popupimage-panel p,
.ds-popupimage-panel span {
    background: linear-gradient(to right, var(--gold-1), var(--gold-2), #ffffff, var(--gold-3), var(--gold-1));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerFlow 3s linear infinite, rainbowCycle 6s linear infinite,gentleFloat 2s ease-in-out infinite alternate;
    margin: 0;
    will-change: background-position, filter, transform;
}
.ds-popupimage-panel h4 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.ds-popupimage-panel p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}
@keyframes shimmerFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes rainbowCycle {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(15deg) brightness(1.2); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}
@keyframes gentleFloat {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-2px) scale(1.02);
    }
}
.ds-popupimage-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 24px;
    background: #ff4757;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: 0.3s;
    z-index: 10;
}
/*END POPUPIMAGE*/

/*STAT LUCKY WHEEL*/
.dslucky-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.dslucky-container {
    background: #2525254a;
    overflow: hidden;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
.v-live-winner-alert {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ds-gold-glow);
    border: 1px solid var(--line);
    color: var(--gem-text-main);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    z-index: 200;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
    animation: vSlideDown 0.5s ease;
}
@keyframes vSlideDown {
    from { transform: translate(-50%, -40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes vSlideUp {
    from { transform: translate(-50%, 0); opacity: 1; }
    to { transform: translate(-50%, -40px); opacity: 0; }
}
.dslucky-header {
    text-align: left;
    border-bottom: 1px solid var(--gem-primary);
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.v-title-main {
    color: var(--gold);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v-btn-x {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.dslucky-wheel-area {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 40px auto 20px;
    background: var(--rainbow);
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--shadow);
}
.v-pointer-gold { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    z-index: 100; color: #fff; font-size: 35px; filter: drop-shadow(0 0 5px #000);
}
.v-wheel-glow-ring { width: 100%; height: 100%; border-radius: 50%; border: 6px solid #000; overflow: hidden; background: #000; }
#dsluckyCanvas { width: 100%; height: 100%; transition: transform 8s cubic-bezier(0.15, 0, 0.1, 1); }
.v-wheel-center-hub { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    width: 60px; height: 60px; background: #000; border-radius: 50%; 
    z-index: 150; border: 3px solid var(--gold); cursor: pointer;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 0 20px var(--gold); transition: 0.3s;
}
.v-wheel-center-hub:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 30px var(--gold); }
.v-input-wrapper { padding: 0 25px 20px; text-align: center; }
.v-label-kupon { color: var(--gold); font-size: 10px; margin-bottom: 8px; display: block; letter-spacing: 1px; }
#dsluckyInput {
    width: 100%;
    padding: 15px;
    background: var(--clear);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--gold);
    text-align: center;
    outline: none;
    font-weight: 900;
    font-size: 16px;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--gold);
}
.v-alert-overlay {
    z-index: 100000;
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.v-alert-box {
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}
.v-win-anim { animation: vCelebrate 0.5s infinite alternate; }
@keyframes vCelebrate { from { transform: scale(1); } to { transform: scale(1.05); } }
.v-lose-anim { animation: vShake 0.4s; }
@keyframes vShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-10px); } 75% { transform: translateX(10px); } }
.v-btn-close {
    padding: 12px;
    background: var(--daftar);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    box-shadow: var(--shadow);
}
.v-btn-disabled { opacity: 0.3; cursor: not-allowed !important; filter: grayscale(1); }
@keyframes dsInfoBounce {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
/*END LUCKY WHEEL*/

/*START WINNER*/
.ds-winner-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.ds-winner-content {
    background: #2525254a;
    overflow: hidden;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
.ds-winner-header {
    text-align: left;
    border-bottom: 1px solid var(--gem-primary);
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.header-glow {
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: glowMove 3s infinite linear;
}
.header-content { display: flex; align-items: center; gap: 15px; }
.ds-icon-gold {
    font-size: 32px;
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    animation: trophyTada 2s infinite;
}
.header-text h3 {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1.5px;
}
.header-text p {
    margin: 0;
    font-size: 10px;
    color: var(--gem-primary);
    opacity: 0.8;
    font-weight: 600;
}
.ds-winner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.ds-winner-body {
    overflow: hidden;
    position: relative;
}
.ds-winner-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 16px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    animation: dsItemIn 0.5s ease forwards;
    box-shadow: var(--shadow);
}
.winner-item.new-winner {
    border: 1px solid 1px solid var(--gold);
}
.winner-item::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    animation: shineGold 2s infinite;
}
.w-info-left { display: flex; align-items: center; gap: 12px; }
.w-avatar {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gem-primary);
    font-weight: 900;
    font-size: 16px;
    box-shadow: var(--shadow);
}
.w-user { font-size: 13px; font-weight: 700; color: var(--gem-text-main); display: block; }
.w-game { font-size: 10px; color: var(--gem-primary); }
.w-amount {
    text-align: right;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: var(--gem-primary);
}
.ds-winner-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid var(--gem-primary);
    box-shadow: var(--shadow);
}
.ds-winner-footer p {
    font-size: 9px;
    color: var(--gem-primary);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}
@keyframes dsItemIn {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes shineGold {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}
@keyframes trophyTada {
    0% { transform: scale(1); }
    10%, 20% { transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
    100% { transform: scale(1) rotate(0); }
}
@keyframes glowMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.inner-confetti {
    position: absolute;
    width: 5px; height: 5px;
    z-index: 10;
    pointer-events: none;
}
@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0); opacity: 1; }
    100% { transform: translateY(400px) rotate(360deg); opacity: 0; }
}
/*END WINNER*/

/*START INFORMASI*/
.ds-info-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.ds-info-modal-content {
    background: #2525254a;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
@keyframes dsInfoBounce {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.ds-info-modal-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.ds-info-modal-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ds-info-modal-close {
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.ds-info-modal-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: none;
}
.ds-info-modal-body::-webkit-scrollbar { display: none; }
.ds-info-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box;
}
.ds-info-icon-box {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.ds-info-text-wrapper {
    flex: 1;
    min-width: 0;
}
.ds-info-text-wrapper strong {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.ds-info-text-wrapper span {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.5;
    word-wrap: break-word;
    display: block;
}
.ds-info-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2ecc71;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 5px;
}
.ds-info-bank-list {
    font-size: 10px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}
.ds-info-note { color: #4a5568; font-style: italic; display: block; margin-top: 4px; }
.ds-info-gold { color: var(--gold); }
.ds-info-membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 10px 0 5px 0;
}
.ds-member-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow);
}
.ds-tag {
    font-size: 9px;
    font-weight: 900;
    padding: 2px 0;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.ds-tag.reg { background: #475569; color: #fff; }
.ds-tag.vip { background: linear-gradient(135deg, #bf953f, #8a6d29); color: #000; }
.ds-tag.vvip { background: linear-gradient(135deg, #fcf6ba, #bf953f); color: #000; box-shadow: 0 0 10px rgba(191, 149, 63, 0.3); }
.ds-limit {
    font-size: 8px;
    color: #94a3b8;
    font-weight: 700;
    white-space: nowrap;
}
.ds-provider-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0;
}
.ds-prov-item {
    border: 1px solid var(--line);
    color: #fff;
    font-size: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}
.ds-bonus-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
}
.ds-bonus-card {
    border-left: 3px solid var(--line);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.ds-bonus-card i {
    color: var(--gold);
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(191, 149, 63, 0.5));
}
.ds-bonus-card span {
    font-size: 10px !important;
    font-weight: 900 !important;
    color: #fff !important;
    letter-spacing: 0.5px;
}
/*END INFORMASI*/

/*START BANTUAN*/
.support-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.support-content {
    background: #2525254a;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
.support-header { 
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.support-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.support-close { 
    position: absolute;
    top: 15px;
    right: 20px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.support-body { 
    padding: 20px; 
    max-height: 65vh;
    overflow-y: auto;
}
.support-body::-webkit-scrollbar { display: none; }
.faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-question {
    width: 100%;
    padding: 15px;
    background: var(--clear);
    border: 1px solid var(--line);
    color: var(--gem-primary);
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow);
}
.faq-answer { 
    padding: 0 15px; 
    max-height: 0; 
    overflow-y: auto;
    transition: all 0.4s ease-in-out; 
}
.faq-answer p { padding: 15px 0; font-size: 13px; color: var(--gold); line-height: 1.6; margin: 0; }

.faq-item.active .faq-answer { 
    max-height: 1000px;
    padding: 15px;
    overflow-y: visible;
}
.faq-answer ul li {
    margin-bottom: 8px;
    list-style-type: circle;
}
.faq-answer strong {
    color: var(--gold);
}
.faq-answer span {
    font-weight: bold;
}
.faq-answer::-webkit-scrollbar {
    display: none;
}
/*END BANTUAN*/

/*START KONTAK*/
.ds-contact-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.ds-contact-content {
    background: #2525254a;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
.ds-contact-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.ds-contact-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ds-contact-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.ds-contact-body {
    padding: 20px; 
    max-height: 65vh;
    overflow-y: auto;
}
.ds-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.ds-contact-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.ds-contact-card:hover {
    transform: translateX(8px);
}
.ds-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-right: 15px;
    transition: 0.3s;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.ds-contact-card:hover .ds-contact-icon {
    background: var(--grad);
    color: #fff;
}
.ds-contact-info {
    flex: 1;
}
.ds-contact-info span {
    display: block;
    color: var(--gold);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.ds-contact-info small {
    color: #fff;
    font-size: 11px;
}
.ds-arrow {
    color: rgba(191, 149, 63, 0.3);
    font-size: 20px;
    transition: 0.3s;
}
.ds-contact-card:hover .ds-arrow {
    color: #bf953f;
    transform: translateX(3px);
}
.ds-contact-footer {
    padding: 15px 24px 20px;
    text-align: center;
}
.ds-contact-footer span {
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
/*END KONTAK*/

/*START BAHASA*/
.ds-bahasa-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.ds-bahasa-content {
    background: #2525254a;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
.ds-bahasa-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.ds-bahasa-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ds-bahasa-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.ds-bahasa-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: none;
}
.ds-bahasa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 20px 20px;
}
.ds-bahasa-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.ds-bahasa-card:hover {
    transform: translateY(-2px);
}
.ds-bahasa-flag {
    font-size: 20px;
    line-height: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.ds-bahasa-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.ds-bahasa-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ds-bahasa-card:hover .ds-bahasa-info span {
    color: #fff;
}
.ds-bahasa-info span {
    color: var(--gem-primary);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.ds-bahasa-info small {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 500;
}
.ds-bahasa-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 0 0 15px 15px;
}
.ds-bahasa-footer span {
    font-size: 9px;
    color: var(--gem-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
/*----------------------------*/
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget, 
.goog-te-banner, 
.goog-te-spinner-pos,
#goog-gt-tt, 
.goog-tooltip, 
.goog-tooltip:hover { 
    display: none !important; 
    visibility: hidden !important; 
    opacity: 0 !important;
}
body { 
    top: 0 !important; 
    /*position: static !important;*/ 
}
font {
    background-color: transparent !important;
    box-shadow: none !important;
    vertical-align: inherit !important;
}
iframe#\:1\.container, 
iframe#\:0\.container {
    display: none !important;
}
/*END BAHASA*/

/*START DEPOSIT&WITHDRAW*/
.v-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
#vvip-toastTrx-container { position: fixed; top: -20px; left: 50%; transform: translateX(-50%); z-index: 10001; }
.v-toastTrx {
    background: var(--grad);
    border-left: 4px solid var(--gem-primary);
    padding: 10px;
    border-radius: 50px;
    color: var(--gem-text-main);
    font-size: 12px;
    font-weight: 800;
    animation: vToastDown 0.4s ease;
    box-shadow: var(--shadow);
    top: -50px;
}
.v-modal-content {
    background: #2525254a;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}
.v-modal-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 15px 15px 0 0;
}
.v-header-info h3 { margin: 0; font-size: 16px; font-weight: 800; color: #fff; }
.v-header-info h3 span {
    color: var(--gem-primary);
    text-shadow: 0 0 10px var(--gold);
}
.v-header-info p { margin: 2px 0 0; font-size: 9px; color: var(--gem-primary); text-transform: uppercase; font-weight: 700; }
.v-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.v-top-nav {
    display: flex;
    padding: 5px;
    margin: 15px 15px 0;
    border-radius: 15px;
    border: 1px solid var(--line);
    gap: 5px;
    box-shadow: var(--shadow);
}
.v-nav-item {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 5px;
    color: var(--gem-text-main);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}
.v-nav-item i { font-size: 16px; }
.v-nav-item span { font-size: 9px; font-weight: 800; }
.v-nav-item.active {
    background: var(--gem-gold-grad);
    color: var(--surface);
    box-shadow: var(--shadow);
}
.v-modal-body { padding: 15px; }
.v-tab-content { display: none; }
.v-tab-content.active { display: block; }
.v-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v-group { margin-bottom: 10px; }
.v-group label { display: block; margin-bottom: 5px; font-size: 9px; color: var(--gem-text-main); font-weight: 800; text-transform: uppercase; }
.v-input, .v-select {
    width: 100%;
    padding: 10px;
    background: var(--clear);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #fff;
    outline: none;
    font-weight: 700;
    font-size: 11px;
    box-shadow: var(--shadow);
}
.v-select { color: #8f8888 !important; cursor: pointer; }
.v-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--bgluxury);
    border: 1px dashed var(--line);
    border-radius: 12px;
    cursor: pointer;
    color: var(--gem-primary);
    font-size: 10px;
    font-weight: 800;
    box-shadow: var(--shadow);
}
.v-invoice-box {
    background: var(--bgluxury);
    border-radius: 20px;
    border: 1px solid var(--line);
    margin-bottom: 10px;
    padding: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.inv-title {
    font-size: 10px;
    font-weight: 800;
    color: var(--gem-primary);
    text-align: center;
    letter-spacing: 1px;
}
.v-inv-list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    padding: 5px;
    color: var(--gem-text-dim);
    border-bottom: 1px solid var(--line);
}
.v-inv-list .item b {
    font-size: 10px;
    text-align: right;
    color: #fff;
    padding-left: 30px;
    word-break: break-word;
}
.copy-icon {
    color: var(--gem-primary);
    cursor: pointer;
    margin-left: 0px;
    font-size: 14px;
    vertical-align: middle;
}
.qris-style .qris-header {
    text-align: center;
    background: var(--gem-gold-grad);
    color: var(--surface);
    font-weight: 900;
    padding: 5px;
    border-radius: 10px;
    font-size: 10px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.qris-content { display: flex; gap: 10px; align-items: center; }
.qris-content img { width: 110px; border-radius: 15px; background: #fff; padding: 5px; }
.qris-details { flex: 1; }
.qris-details .row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-bottom: 5px;
    color: var(--gem-text-main);
}
.qris-btns { display: flex; flex-direction: column; gap: 5px; margin-top: 10px; }
.btn-action {
    background: var(--glass-jp);
    border: 1px solid var(--line);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 6px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: var(--shadow);
}
.v-withdraw-header { display: flex; gap: 10px; margin-bottom: 15px; }
.wd-stat {
    flex: 1;
    border: 1px solid var(--line);
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}
.wd-stat span { display: block; font-size: 8px; color: var(--gem-text-main); font-weight: 800; margin-bottom: 3px; }
.wd-stat b { font-size: 11px; color: var(--gem-primary); }
.oto-info { 
    background: var(--bgluxury);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 9px;
    color: var(--gem-primary);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    justify-content: center;
}
.v-btn-primary {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 15px;
    background: var(--daftar);
    color: #000;
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.v-wd-info-card {
    background: var(--bgluxury);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: var(--shadow);
}
.info-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--gem-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-align: center;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.info-item {
    display: flex;
    flex-direction: column;
}
.info-item.right {
    text-align: right;
}
.info-item small {
    font-size: 8px;
    color: var(--gem-text-main);
    font-weight: 700;
    margin-bottom: 4px;
}
.info-item b {
    font-size: 11px;
    color: #fff;
    word-break: break-all;
}
.wd-notice-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bgluxury);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.wd-notice-box i {
    color: #ff4757;
    font-size: 20px;
}
.wd-notice-box span {
    font-size: 9px;
    color: var(--gem-primary);
    line-height: 1.4;
    font-weight: 600;
}
.text-gold { color: var(--gem-primary) !important; }
@keyframes vToastDown { from { top: -50px; opacity: 0; } to { top: 20px; opacity: 1; } }
#modal-qris {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.qris-content-vvip {
    background: #2525254a;
    color: #000;
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    padding: 35px 25px 25px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#qris-status-notif {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--clear), var(--gold), var(--clear));
    color: var(--glow-purple);
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    z-index: 100;
    white-space: nowrap;
    border: 1px solid var(--line);
    animation: glow-black 2s infinite;
}
#qr-box-vvip {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: transform 0.3s ease;
}
#qr-box-vvip:hover { transform: scale(1.02); }
#qr-box-vvip canvas, #qr-box-vvip img {
    width: 200px !important; height: 200px !important;
}
.amt-label { font-size: 10px; font-weight: 700; color: var(--gem-text-dim); letter-spacing: 1px; }
.amt-tag-vvip {
    font-size: 24px;
    font-weight: 900;
    color: var(--gem-text-success);
    letter-spacing: -1px;
}
.timer-tag-vvip {
    color: var(--glow-deep-red);
    font-weight: 800;
    font-size: 13px;
    background: var(--daftar);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.btn-dl-vvip {
    background: var(--grad);
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 18px;
    border: 1px solid var(--line);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.secure-info {
    font-size: 9px;
    color: var(--gold);
    text-shadow: var(--gem-primary);
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@keyframes glow-black {
    0% { box-shadow: 0 0 0 0 rgba(191, 149, 63, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(191, 149, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(191, 149, 63, 0); }
}
.notif-successqr { background: #18b37b !important; border-color: #18b37b !important; }
.notif-expired { background: #ff4d4d !important; border-color: #ff4d4d !important; }
.logo-3d-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounceSoft 3s ease-in-out infinite;
}
.qris-logo-3d {
    width: 100px;
    z-index: 2;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.2));
}
.qris-title-premium {
    margin: 0;
    font-weight: 900;
    color: var(--gem-primary);
    letter-spacing: -0.5px;
}
.qris-title-premium span {
    color: var(--gem-text-main);
}
.qris-desc-premium {
    font-size: 11px;
    color: var(--gold);
    max-width: 250px;
    margin: 0 auto;
    font-weight: 500;
}
@keyframes bounceSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
#disp-amt {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
}
/*END DEPOSIT&WITHDRAW*/

/*START HISTORY TRANSAKSI*/
.dstrx-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gem-surface); backdrop-filter: blur(10px);
    z-index: 9999; display: none; align-items: center; justify-content: center; padding: 10px;
}
.dstrx-modal-glass {
    width: 100%;
    max-width: 450px;
    background: #2525254a;
    border: 1px solid var(--line);
    border-radius: 24px;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: dsPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dstrx-close-btn {
    transition: 0.3s;
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ef4444, #991b1b);
    border: none;
    box-shadow: var(--shadow);
    color: #fff !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.dstrx-header {
    flex-shrink: 0;
    padding: 10px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.dstrx-title-wrapper { display: flex; align-items: center; gap: 12px; }
.dstrx-icon-box {
    width: 38px;
    height: 38px;
    background: var(--gem-gold-grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gem-text-main);
    box-shadow: var(--shadow);
}
.dstrx-main-title {
    display: block;
    color: var(--gem-primary);
    font-weight: 800;
    font-size: 15px;
}
.dstrx-sub-title {
    color: var(--gem-text-main);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}
.dstrx-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.dstrx-top-bar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.dstrx-summary-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
}
.dstrx-glass-card {
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow);
}
.dstrx-glass-card:hover {
    transform: translateY(-2px);
}
.dstrx-label {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}
.dstrx-value {
    margin: 0;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
}
.dstrx-dp { border: 1px solid rgba(34, 197, 94, 0.3); }
.dstrx-dp .dstrx-label { color: #22c55e; }
.dstrx-wd { border: 1px solid rgba(239, 68, 68, 0.3); }
.dstrx-wd .dstrx-label { color: #ef4444; }
.dstrx-bn { border: 1px solid rgba(234, 179, 8, 0.3); }
.dstrx-bn .dstrx-label { color: #eab308; }
.dstrx-mini-summary {
    flex: 1;
    border-right: 1px solid var(--line);
}
.dstrx-mini-summary small {
    color: var(--gem-primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.dstrx-mini-summary h3 {
    color: var(--gem-text-main);
    font-size: 16px;
    font-weight: 900;
    margin: 0;
}
.dstrx-search-inline {
    flex: 1;
    position: relative;
    width: 100%;
}
.dstrx-search-inline i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gem-primary);
    font-size: 14px;
}
.dstrx-search-inline input {
    width: 100%;
    background: var(--clear);
    border: 1px solid var(--line);
    padding: 8px 25px 8px 30px;
    border-radius: 10px;
    color: var(--gem-text-main);
    font-size: 11px;
    outline: none;
    box-shadow: var(--shadow);
}
.dstrx-reset-search {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gem-primary);
    cursor: pointer;
    display: none;
    padding: 0;
}
.dstrx-table-area {
    flex: 1;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.dstrx-table-area::-webkit-scrollbar { width: 3px; }
.dstrx-table-area::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.3); border-radius: 10px; }
.dstrx-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.dstrx-table th {
    position: sticky;
    top: 0;
    z-index: 5;
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    font-size: 7.5px;
    color: var(--gem-text-main);
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}
.dstrx-table td {
    padding: 10px;
    border-bottom: 1px solid var(--line);
}
.dstrx-kode { color: var(--gem-primary); font-weight: 900; font-size: 9px; font-family: 'Space Grotesk', sans-serif; }
.dstrx-item-kat { font-size: 10px; font-weight: 800; margin: 4px 0; }
.dstrx-item-desc { color: var(--gem-text-dim); font-size: 9px; font-weight: 600; }
.dstrx-item-time { color: var(--ds-text-dim); font-size: 8px; font-weight: 600; }
.dstrx-copy-wrapper { margin-top: 5px; }
.dstrx-btn-copy {
    background: var(--clear);
    border: 1px solid var(--line);
    color: var(--gem-text-main);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 7px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dstrx-btn-copy:active { transform: scale(0.95); background: var(--gem-text-success); color: var(--surface); }
.dstrx-val-nominal { font-size: 12px; font-weight: 900; }
.dstrx-val-status { margin: 6px 0; }
.dstrx-badge {
    font-size: 7px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid;
}
.dstrx-val-metode {
    color: var(--ds-gold-main);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}
.dstrx-btn-view {
    background: var(--gold-linear);
    color: var(--surface);
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 800;
    cursor: pointer;
}
.dstrx-val-extra {
    font-size: 8px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}
.dstrx-no-bukti {
    font-size: 8px;
    color: var(--gem-primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}
.dstrx-mini-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.dstrx-mini-card {
    width: auto;
    background: var(--rainbow);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.dstrx-mini-head {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--line);
}
.dstrx-mini-head span {
    font-size: 9px;
    font-weight: 800;
    color: var(--surface);
}
.dstrx-mini-head button {
    background: var(--gem-text-danger);
    border: none;
    color: var(--gem-text-main);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.dstrx-mini-body img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}
.dstrx-empty-state { text-align: center; padding: 50px 20px; }
.dstrx-empty-state i { font-size: 30px; opacity: 0.1; display: block; margin-bottom: 10px; }
.dstrx-empty-state p { font-size: 10px; font-weight: 700; opacity: 0.5; }
/*END HISTORY TRANSAKSI*/

/*START GAMELOG*/
.glog-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gem-surface); backdrop-filter: blur(10px);
    z-index: 9999; display: none; align-items: center; justify-content: center; padding: 10px;
}
.glog-modal-glass {
    width: 100%;
    max-width: 450px;
    background: #2525254a;
    border: 1px solid var(--line);
    border-radius: 24px;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: dsPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glog-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ef4444, #991b1b);
    border: none;
    box-shadow: var(--shadow);
    color: #fff !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.glog-header {
    flex-shrink: 0;
    padding: 10px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.glog-title-wrapper { display: flex; align-items: center; gap: 12px; }
.glog-icon-box {
    width: 38px;
    height: 38px;
    background: var(--gem-gold-grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gem-text-main);
    box-shadow: var(--shadow);
}
.glog-main-title {
    display: block;
    color: var(--gem-primary);
    font-weight: 800;
    font-size: 15px;
}
.glog-sub-title {
    color: var(--gem-text-main);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}
.glog-content { 
    padding: 15px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    overflow: hidden;
}
.glog-top-bar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.glog-mini-summary {
    flex: 1;
    border-right: 1px solid var(--line);
}
.glog-mini-summary small {
    color: var(--gem-primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.glog-mini-summary h3 {
    color: var(--gem-text-main);
    font-size: 16px;
    font-weight: 900;
    margin: 0;
}
.glog-search-inline { flex: 1; position: relative; }
.glog-search-inline i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gem-primary);
    font-size: 14px;
}
.glog-search-inline input {
    width: 100%;
    background: var(--clear);
    border: 1px solid var(--line);
    padding: 8px 25px 8px 30px;
    border-radius: 10px;
    color: var(--gem-text-main);
    font-size: 11px;
    outline: none;
    box-shadow: var(--shadow);
}
.glog-reset-search {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gem-primary);
    cursor: pointer;
    display: none;
    padding: 0;
}
.glog-reset-search:hover { color: #ef4444; }
.glog-filter-panel {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 2px;
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.glog-form-item label {
    display: block;
    font-size: 7px;
    color: var(--gem-text-main);
    font-weight: 800;
    margin-bottom: 4px;
    padding-left: 2px;
}
.glog-input {
    width: 100%;
    background: var(--clear);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 6px;
    padding: 5px;
    color: var(--gem-text-main);
    font-size: 9px;
    font-weight: 400;
    outline: none;
}
.glog-input option {
    background: var(--gem-3d-glow);
    color: var(--surface);
}
.glog-btn-search {
    height: 25px;
    width: 25px;
    align-self: flex-end;
    background: var(--gem-primary);
    border: none;
    border-radius: 6px;
    color: var(--surface);
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.glog-table-area {
    flex: 1;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.glog-table-area::-webkit-scrollbar { width: 4px; }
.glog-table-area::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.3); border-radius: 10px; }
.glog-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.glog-table th {
    position: sticky;
    top: 0;
    z-index: 5;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    font-size: 7.5px;
    color: var(--gem-text-main);
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}
.glog-table td { padding: 10px; border-bottom: 1px solid var(--line); }
.glog-item-time {
    color: var(--gem-primary);
    font-size: 9px;
    font-weight: 600;
}
.glog-item-code { color: var(--gem-text-main); font-family: 'Space Grotesk', sans-serif; font-size: 8px; }
.glog-item-prod {
    color: var(--gem-primary);
    font-weight: 800;
    font-size: 9px;
    line-height: 1;
}
.glog-item-game { color: var(--gem-text-main); font-size: 10px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.glog-val-bet {
    color: var(--gem-text-main);
    font-size: 10px;
    font-weight: 700;
}
.glog-val-win { font-size: 10px; font-weight: 800; }
/*END GAMELOG*/

/*START DASHBOARD PROFIL*/
.ds-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow-y: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background: var(--gem-surface);
}
.ds-modal-glass {
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    border: 1px solid var(--line);
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: visible;
    box-shadow: var(--shadow);
    animation: dsPopUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ds-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #ef4444, #991b1b);
    border: 1px solid var(--line);
    color: #fff !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10000;
    box-shadow: var(--shadow);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    filter: brightness(1.2);
}
.ds-modal-header {
    padding: 18px 22px 10px;
    flex-shrink: 0;
}
.ds-header-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.ds-icon-level {
    font-size: 14px;
    filter: drop-shadow(0 0 5px currentColor);
}
.ds-identity-sticky {
    padding: 0 15px 10px;
    flex-shrink: 0;
    position: relative;
}
.ds-profile-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1;
    padding: 10px 12px;
    border-radius: 14px; 
    gap: 10px;
    box-shadow: var(--shadow);
}
.ds-profile-mini::before {
    font-family: 'remixicon';
    position: absolute;
    inset: -10%;
    opacity: 0.04;
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
    pointer-events: none;
    z-index: -1;
    transform: rotate(-8deg);
    color: #fff;
}
.ds-neon-vvip {
    background: linear-gradient(270deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.1), rgba(59, 130, 246, 0.02));
    background-size: 400% 400%;
    animation: flowingGradient 6s ease infinite;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}
.ds-neon-vvip::before {
    content: "\ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262 \ee91 \f262";
    color: #3b82f6;
}
.ds-neon-vip {
    background: linear-gradient(270deg, rgba(245, 158, 11, 0.02), rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.02));
    background-size: 400% 400%;
    animation: flowingGradient 6s ease infinite;
    border: 1px solid var(--line) !important;
}
.ds-neon-vip::before {
    content: "\f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52 \f262 \ee52";
    color: #f59e0b;
}
.ds-profile-left {
    z-index: 2;
    display: flex; 
    align-items: center; 
    gap: 8px; 
    min-width: 0;
    flex: 1; 
}
.ds-avatar-small {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    position: relative;
    border: 1px solid var(--line);
    width: 34px;
    height: 34px;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}
.ds-online-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #121212;
}
.ds-user-text { 
    min-width: 0;
}
.ds-user-text h4 {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
}
.ds-truncate-name { 
    margin: 0; 
    color: #fff; 
    font-size: 12px;
    font-weight: 800; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
    display: block;
}
.ds-level-text { 
    margin: 0; 
    font-size: 7.5px; 
    font-weight: 700; 
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.ds-balance-right {
    min-width: 90px;
    z-index: 2;
    text-align: right;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--line);
}
.ds-mini-box {
    width: 100%;
    max-width: 180px;
}
.ds-progress-bar-bg {
    width: 100%;
    height: 3px;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
    margin: 2px 0;
}
.ds-progress-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}
.ds-info-text {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.ds-sisa-info {
    font-size: 7px;
    color: var(--gem-text-main);
    font-weight: 600;
}
.ds-scroll-content {
    padding: 0 15px 10px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: none;
}
.ds-scroll-content::-webkit-scrollbar { display: none; }
.ds-tab-content { display: none; }
.ds-tab-content.active { display: block; animation: dsFadeIn 0.3s ease; }
.luxury-container { width: 100%; box-sizing: border-box; }
.atm-card-real {
    width: 100%;
    margin: 0 auto 10px auto;
    background: var(--bgluxury);
    border-radius: 14px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.atm-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.atm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.atm-chip-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.atm-chip {
    width: 38px;
    height: 28px;
    background: var(--rainbow);
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
}
.atm-chip::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,0,0,0.1) 5px);
}
.atm-bank-name {
    color: var(--gem-text-main);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: var(--shadow);
}
.atm-body {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}
.atm-label {
    font-size: 7px;
    color: var(--gem-3d-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}
.atm-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 3px;
    word-spacing: 5px;
    text-shadow: var(--shadow);
}
.atm-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.atm-name {
    font-size: 8px;
    color: var(--gem-text-main);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-grid;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    max-width: 100px;
}
.atm-vendor {
    color: var(--gem-text-main);
    font-size: 16px;
}
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.luxury-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    box-shadow: var(--shadow);
}
.full-width { grid-column: span 2; margin-top: 10px; }
.card-icon {
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: var(--shadow);
}
.card-content { display: flex; flex-direction: column; min-width: 0; }
.card-content label {
    font-size: 7px;
    font-weight: 800;
    color: var(--ds-gold);
    text-transform: uppercase;
}
.card-content span {
    font-size: 10px;
    color: var(--gem-text-main);
    font-weight: 700;
}
.scroll-mini { overflow-x: auto; white-space: nowrap; }
.scroll-mini::-webkit-scrollbar { display: none; }
.text-locked { color: #ef4444 !important; font-style: italic; font-weight: 400 !important; }
.text-gold { color: #fbbf24 !important; }
.neon-gold { border-left: 3px solid #fbbf24; } .neon-gold i { color: #fbbf24; }
.neon-blue { border-left: 3px solid #3b82f6; } .neon-blue i { color: #3b82f6; }
.neon-yellow { border-left: 3px solid #eab308; } .neon-yellow i { color: #eab308; }
.neon-green { border-left: 3px solid #22c55e; } .neon-green i { color: #22c55e; }
.neon-red { border-left: 3px solid #ef4444; } .neon-red i { color: #ef4444; }
.neon-slate { border-left: 3px solid #475569; } .neon-slate i { color: #475569; }
.luxury-form-container {
    width: 100%;
    margin: 0 auto;
}
.luxury-input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}
.luxury-input-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.luxury-input-group label {
    font-size: 8px;
    font-weight: 800;
    color: var(--ds-gold);
    text-transform: uppercase;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.luxury-input-group label i {
    color: var(--ds-gold);
    font-size: 12px;
}
.luxury-input-grid input, 
.luxury-select,
.luxury-input-password {
    width: 100%;
    background: var(--clear) !important;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    box-shadow: var(--shadow);
}
.luxury-input-grid input:-webkit-autofill,
.luxury-input-grid input:-webkit-autofill:hover, 
.luxury-input-grid input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0,0,0,0) inset !important;
    transition: background-color 5000s ease-in-out 0s;
    background: transparent !important;
}
.luxury-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fbbf24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}
.luxury-select option {
    background: var(--gem-3d-glow);
    color: var(--surface);
}
.luxury-submit-btn {
    width: 100%;
    background: var(--gold-linear);
    border: none;
    border-radius: 10px;
    padding: 14px;
    color: var(--surface);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    margin-top: 5px;
}
.luxury-submit-btn i {
    font-size: 16px;
}
.kyc-container-glass {
    width: 100%;
    margin: 0 auto;
}
.kyc-grid-system {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}
.kyc-group-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.kyc-group-item label {
    font-size: 8px;
    font-weight: 800;
    color: var(--ds-gold);
    text-transform: uppercase;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.kyc-group-item label i {
    color: var(--ds-gold);
    font-size: 12px;
}
.kyc-input-field, .kyc-select-field {
    width: 100%;
    background: var(--clear) !important;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--gem-text-main) !important;
    font-size: 11px;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    box-shadow: var(--shadow);
}
.kyc-input-field:-webkit-autofill {
    -webkit-text-fill-color: var(--gem-text-main) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0,0,0,0) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
.kyc-select-field {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2322c55e' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}
.kyc-select-field option {
    background: var(--gem-3d-glow);
    color: var(--surface);
}
.kyc-info-box {
    background: var(--glass-jp);
    border: 1px dashed var(--surface);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
}
.kyc-shield-icon i {
    font-size: 24px;
    color: var(--gem-text-success);
    animation: pulse-green 2s infinite;
}
.kyc-info-text {
    display: flex;
    flex-direction: column;
}
.kyc-info-text strong {
    font-size: 10px;
    color: var(--ds-gold);
    text-transform: uppercase;
}
.kyc-info-text span {
    font-size: 9px;
    color: var(--gem-text-main);
}
.kyc-btn-action {
    width: 100%;
    background: var(--gold-linear);
    border: none;
    border-radius: 10px;
    padding: 14px;
    color: var(--surface);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
}
.downline-master-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 80vh;
}
/*Container Stay di Atas
.header-stay-container {
    flex-shrink: 0;
    padding-bottom: 10px;
    z-index: 10;
}*/
.referral-link-premium {
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 5px;
    box-shadow: var(--shadow);
}
.referral-label-gold {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--ds-gold);
    font-weight: 800;
    margin-bottom: 5px;
}
.referral-copy-box {
    display: flex;
    gap: 10px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.referral-input-glass {
    flex: 1;
    background: var(--clear);
    border: none;
    color: var(--gem-text-main);
    font-size: 11px;
    padding: 5px 10px;
    outline: none;
}
.referral-btn-copy {
    background: var(--gold-linear);
    color: var(--surface);
    border: none;
    padding: 5px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 10px;
    cursor: pointer;
}
.downline-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.downline-search-wrapper {
    position: relative;
    width: 160px;
}
.downline-filter-input {
    width: 100%;
    background: var(--clear);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 8px 10px 8px 35px;
    color: var(--gem-text-main);
    font-size: 10px;
    outline: none;
    box-shadow: var(--shadow);
}
.downline-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ds-gold);
    font-size: 14px;
}
.downline-reset-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #ef4444; cursor: pointer; }
.downline-scroll-container {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.luxury-scroll::-webkit-scrollbar { width: 4px; }
.luxury-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.glass-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    flex-shrink: 0;
}
.downline-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.downline-user-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.downline-avatar {
    width: 35px;
    height: 35px;
    background: var(--gem-gold-grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    box-shadow: var(--shadow);
}
.downline-username {
    font-size: 12px;
    font-weight: 800;
    color: var(--gem-text-main);
}
.downline-time {
    font-size: 9px;
    color: var(--ds-gold);
    display: block;
}
.downline-grid-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border-radius: 10px;
    margin-top: 5px;
}
.downline-item label {
    font-size: 8px;
    color: var(--gem-primary);
    font-weight: 800;
    display: block;
}
.downline-item span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gem-text-main);
}
.type-pill {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 900;
    display: inline-block;
}
.type-depo { background: #22c55e; color: #000; }
.type-wd { background: #3b82f6; color: #fff; }
.type-bonus { background: #a855f7; color: #fff; }
.downline-footer-desc {
    font-size: 9px;
    color: var(--gem-text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}
.downline-status-badge { font-size: 9px; font-weight: 900; padding: 4px 10px; border-radius: 6px; }
.st-success, .st-settle {
    background: var(--gem-text-success);
    color: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.st-pending {
    background: var(--gem-text-dim);
    color: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.st-failed, .st-cancel {
    background: var(--gem-text-danger);
    color: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.no-trx-txt {
    font-size: 8px;
    color: var(--gem-text-danger);
    font-weight: 800;
    text-align: center;
}
.downline-notfound-box {
    text-align: center;
    background: var(--clear);
    border-radius: 15px;
    border: 1px dashed var(--line);
}
.downline-notfound-box i {
    font-size: 20px;
    color: var(--ds-gold);
    display: block;
}
.downline-notfound-box p {
    font-size: 10px;
    color: var(--ds-gold);
    font-weight: 800;
}
.ds-btn {
    color: #fff;
    border: 1px solid var(--line);
    padding: 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    box-shadow: var(--shadow);
}
.ds-nav-tabs {
    display: flex;
    gap: 8px;
    padding: 0 15px 10px;
    flex-shrink: 0;
}
.ds-tab-btn {
    flex: 1;
    background: var(--clear);
    border: 1px solid var(--line);
    padding: 8px;
    border-radius: 10px;
    color: var(--gem-text-dim);
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.3s;
}
.ds-tab-btn i { font-size: 12px; }
.ds-tab-btn.active {
    background: var(--gold-linear);
    color: var(--surface);
    border-color: var(--line);
}
.ds-toast {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--line);
    padding: 12px 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: toastBounce In 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}
.ds-toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: currentColor;
    opacity: 0.3;
    animation: toastProgress 3s linear forwards;
}
.ds-toast i { font-size: 20px; }
.ds-toast span {
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ds-toast-success { color: #10b981; border-left: 4px solid #10b981; }
.ds-toast-error { color: #ef4444; border-left: 4px solid #ef4444; }
#ds-notif-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 280px;
    max-width: 90%;
    z-index: 2000000;
    pointer-events: none;
}
.ds-alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: dsSlideDown 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.ds-alert-success { background: rgba(16, 185, 129, 0.2); color: #10b981; border-color: rgba(16, 185, 129, 0.3); }
.ds-alert-error { background: rgba(239, 68, 68, 0.2); color: #ef4444; border-color: rgba(239, 68, 68, 0.3); }
@keyframes toastBounceIn {
    0% { opacity: 0; transform: translateY(-50px) scale(0.8); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}
@keyframes dsSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes dsFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes flowingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes dsPopUp {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes neon-vvip-pulse {
    0%, 100% { border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 0 5px rgba(239, 68, 68, 0.2); }
    50% { border-color: rgba(239, 68, 68, 0.8); box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
}
@keyframes neon-vip-pulse {
    0%, 100% { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 0 5px rgba(245, 158, 11, 0.2); }
    50% { border-color: rgba(245, 158, 11, 0.8); box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
}
@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 400px) {
    .luxury-input-grid {
        gap: 8px;
    }
    .luxury-input-grid input, .luxury-select {
        padding: 10px 8px;
        font-size: 10px;
    }
    .kyc-grid-system { gap: 8px; }
    .kyc-input-field { font-size: 10px; padding: 10px 8px; }
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
/*END DASHBOARD PROFIL*/

/*START FLOATING SOSMED*/
.gem-vvip-nano {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 999999;
}
.gem-vvip-trigger {
    width: 22px;
    height: 45px;
    background: var(--gold-linear);
    color: var(--surface);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    z-index: 10;
    border: 1px solid var(--glass-border);
    border-left: none;
    transition: var(--transition);
}
.gem-vvip-trigger i {
    font-size: 14px;
    transition: transform 0.4s ease;
}
.gem-vvip-list {
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 8px 15px;
    border-radius: 30px;
    margin-left: -300px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.vvip-link {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.vvip-link.wa {
    background: #25D366;
    box-shadow: var(--shadow);
}
.vvip-link.tg {
    background: #0088cc;
    box-shadow: var(--shadow);
}
.vvip-link.fb {
    background: #004277;
    box-shadow: var(--shadow);
}
.vvip-link.lc {
    background: #e91e63;
    box-shadow: var(--shadow);
}
.gem-vvip-nano.is-active .gem-vvip-list {
    margin-left: 5px;
    opacity: 1;
    visibility: visible;
}
.gem-vvip-nano.is-active .gem-vvip-trigger {
    background: var(--gem-text-danger);
    color: var(--gem-text-main);
}
.gem-vvip-nano.is-active #vvipIcon {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .gem-vvip-trigger {
        width: 18px;
        height: 38px;
    }
    .vvip-link {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .gem-vvip-list {
        padding: 6px;
    }
}
/*END FLOATING SOSMED*/

/*START PROMO&EVENT*/
.ds-promo-wrapper ::-webkit-scrollbar { display: none; }
.ds-promo-wrapper {
    padding: 0 5% 0 5%;
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    margin-top: 10px;
}
.ds-close-circle-promo {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #F44336;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.ds-section-label {
    font-size: 13px;
    font-weight: 900;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.ds-promo-scroll-wrapper {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}
.ds-promo-card-compact {
    flex: 0 0 240px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}
.ds-promo-img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}
.ds-promo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
}
.ds-promo-body {
    padding: 5px;
    display: flex;
    flex-direction: column;
}
.ds-promo-judul {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    min-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ds-btn-group-custom { display: flex; gap: 5px; width: 100%; }
.ds-btn-mini {
    flex: 1;
    padding: 8px 5px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.btn-view {
    background: var(--daftar);
    color: var(--surface);
    border: 1px solid var(--line);
}
.btn-claim {
    background: var(--daftar);
    color: var(--surface);
    border: 1px solid var(--line);
}
.btn-view-full {
    background: var(--daftar);
    color: var(--surface);
    width: 100%
}
.ds-modal-promo {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(15px);
    background: var(--gem-surface);
}
.ds-modal-promo-content {
    border: 1px solid var(--line);
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    padding: 20px;
    box-shadow: var(--shadow);
    animation: dsInfoBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#m_judul {
    text-align: center;
    color: var(--gold);
    font-size: 15px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}
.detail-label {
    text-align: center;
    font-size: 9px;
    color: var(--gem-text-main);
    font-weight: 800;
    margin-top: 5px;
    letter-spacing: 2px;
}
.mdepobox-promo {
    background: var(--glass-jp);
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed var(--gold);
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    box-shadow: var(--shadow);
}
.depo-tag {
    font-size: 10px;
    color: var(--gold);
    font-weight: 800;
}
#m_deskripsi {
    max-height: 60vh;
    overflow-y: auto;
    font-size: 12px;
    color: var(--gem-text-main);
    line-height: 1.5;
}
#m_deskripsi table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
    text-align:center;
}
#m_deskripsi table th,
#m_deskripsi table td{
    border: 1px solid var(--line);
    padding: 2px;
    font-size: 10px;
}
@media (max-width: 600px) {
    .ds-promo-judul {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        width: 100%;
    }
    #m_deskripsi {
        font-size: 10px;
    }
    .ds-promo-card-compact { flex: 0 0 200px; }
}
/*END PROMO&EVENT*/

/*START FOOTER*/
.footer-app-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 5% 10px 5%;
    font-family: 'Space Grotesk', sans-serif;
    align-items: start;
}
.vvip-card {
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 10px;
    height: 260px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.footer-card-title {
    color: var(--gem-primary);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    padding-bottom: 5px;
}
.vvip-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vvip-card-body-layanan {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.scrollable {
    overflow-y: auto;
    padding: 5px;
}
.scrollable::-webkit-scrollbar { width: 3px; }
.scrollable::-webkit-scrollbar-track { background: transparent; }
.scrollable::-webkit-scrollbar-thumb { background: var(--gem-primary); border-radius: 10px; }
.footer-service-item { margin-bottom: 10px; }
.footer-service-info { display: flex; justify-content: space-between; font-size: 11px; font-weight: bold; margin-bottom: 6px; }
.f-speed { color: var(--gem-primary); }
.vvip-progress {
    height: 6px;
    background: var(--gem-3d-glow);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.vvip-bar {
    height: 100%;
    border-radius: 10px;
}
.neon-emas {
    background: var(--gold-gradient);
    box-shadow: var(--shadow);
}
.neon-biru {
    background: var(--gem-gold-grad);
    box-shadow: var(--shadow);
}
.status-box-vvip {
    background: var(--glass-jp);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--line);
}
.status-icon {
    color: var(--gem-primary);
    font-size: 20px;
}
.status-text .main {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--gem-primary);
}
.status-text .sub {
    font-size: 8px;
    color: var(--ds-gold);
}
.status-indicator { font-size: 10px; color: #00ffcc; font-weight: bold; }
.payment-marquee-container {
    border-radius: 8px;
    padding: 10px 8px;
    margin-top: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    position: relative;
    white-space: nowrap;
}
.payment-marquee-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: marquee 20s linear infinite;
    will-change: transform;
}
.payment-marquee-track img { 
    height: 14px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    transition: 0.3s;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); 
    }
}
.payment-marquee-container:hover .payment-marquee-track {
    animation-play-state: paused;
}
.game-list-item, .vvip-link-grid a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gem-primary);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--line);
    margin-bottom: 5px;
    box-shadow: var(--shadow);
}
.game-list-item i, .vvip-link-grid a i { color: var(--gem-primary); font-size: 14px; }
.partner-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.p-logo-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.p-logo-box img { max-width: 80%; max-height: 80%; }
.footer-seo-full {
    grid-column: span 4;
}
.seo-card-glass {
    border: 1px solid var(--line);
    padding: 10px;
    border-radius: 20px;
}
.seo-title {
    color: var(--gem-primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}
.seo-text-body p {
    color: var(--gem-text-main);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}
.seo-text-body strong {
    color: var(--ds-gold);
    font-weight: bold;
    text-decoration: none;
}
.seo-subtitle {
    color: var(--gem-primary);
    font-size: 14px;
    margin-bottom: 5px;
}
.seo-text-body a {
    color: var(--gem-primary);
    font-weight: bold;
    text-decoration: none;
}
@media (max-width: 1024px) {
    .footer-app-wrapper { grid-template-columns: repeat(2, 1fr); }
    .footer-seo-full { grid-column: span 2; }
}
@media (max-width: 600px) {
    .footer-app-wrapper { 
        grid-template-columns: repeat(2, 1fr);
    }
    .vvip-card {
        height: 220px;
    }
    .status-box-vvip {
        background: none;
        padding: 0px;
        border: none;
    }
    .footer-service-item {
        margin-bottom: 0px;
    }
    .payment-marquee-container{
        margin-top: 0px;
    }
    .footer-card-title {
        font-size: 9px;
        margin-bottom: 12px;
    }
    .vvip-card-body-layanan {
        gap: 10px;
    }
    .payment-marquee-track img {
        height: 10px;
    }
    .payment-marquee-track {
        animation-duration: 15s;
    }
    .game-list-item, .vvip-link-grid a { font-size: 9px; padding: 8px; }
    .p-logo-box { height: 35px; }
    .footer-seo-full { grid-column: span 2; }
    .seo-title { font-size: 14px; }
}
/*END FOOTER*/