:root {
    --gold-gradient: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    --vip-red: #ff4500;
    --bg-body: #0a0a0a;
    --card-bg: rgba(18, 18, 18, 0.98);
    --glass: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.6);
    
    --gem-primary: #ffd700;
    --gem-surface: rgba(15, 15, 15, 0.85);
    --gem-text-main: #ffffff;
    --gem-text-dim: #b5a46d;
    --gem-text-success: #00ff88;
    --gem-bg-dark: #000000;
    --shadow: #000 0px 4px 8px;
    --main: #fff;
    --gold: #ffd700;
    --line: rgba(255, 215, 0, 0.15);
    --grad: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    --daftar: linear-gradient(180deg, #ffeaa7 0%, #d4af37 100%);
    --shadow-daftar: 0 4px 0px #8a6d3b;
    --login: linear-gradient(180deg, #2d3436 0%, #000000 100%);
    --shadow-login: 0 4px 0px #ffd700;
    --dark-slate: #0a0a0a;
    --glow-deep-red: #1e1e1e;   
    --glow-royal-blue: #111111; 
    --glow-purple: #1a1a1a;      
    --glow-dark-gold: #3d3200;
    --anim-speed: 5s;
    --clear: transparent;
    --rainbow: linear-gradient(45deg, #ffd700, #fff9db, #ffd700, #b8860b, #ffd700);
    --gem-3d-glow: rgba(255, 215, 0, 0.4);
    --gem-3d-shadow: rgba(0, 0, 0, 0.8);
    --gem-gold-grad: linear-gradient(145deg, #ffd700, #8a6d3b);
    --gem-dark-glass: rgba(5, 5, 5, 0.95);
}
* {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
html {
    scrollbar-width: none !important;
}
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
body {
    background-color: var(--bg-body);
    background-image: radial-gradient(circle at 50% 0%, #222 0%, var(--bg-body) 70%);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    -ms-overflow-style: none !important;
    overflow-y: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
.container {
    width: 100%;
    max-width: 500px;
    padding: 20px 15px;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.card-vvip {
    background: var(--card-bg);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.banner-container {
    position: relative;
    width: 100%;
    height: 220px;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.dot {
    width: 8px; height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}
.dot.active {
    width: 24px;
    background: var(--gold);
}
.static-header {
    padding: 10px 20px 10px;
    text-align: center;
}
.title-premium {
    font-size: 26px;
    font-weight: 900;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}
.sub-marquee {
    background: var(--gem-gold-grad);
    border-radius: 50px;
    padding: 5px 15px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.sub-marquee p {
    font-size: 11px;
    color: var(--gem-dark-glass);
    white-space: nowrap;
    animation: marqueeFlow 12s linear infinite;
}
@keyframes marqueeFlow {
    from { transform: translateX(0); }
    to { transform: translateX(-150%); }
}
.seo-box {
    padding: 10px;
    border-radius: 15px;
    font-size: 10px;
    color: var(--gem-3d-glow);
    border-left: 4px solid var(--gem-3d-glow);
    box-shadow: var(--shadow);
}
.dynamic-scroll-area {
    height: 200px;
    overflow-y: auto;
    padding: 0 20px 20px;
    position: relative;
    scrollbar-width: none;
}
.dynamic-scroll-area::-webkit-scrollbar { display: none; }
.content-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.content-card h4 {
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}
.content-card h4 i { width: 18px; }
.promo-list { list-style: none; }
.promo-list li {
    font-size: 13px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.promo-list li:last-child { border: none; }
.promo-list li i { color: #00ff88; width: 14px; }

/*START BTN DAFTAR&LOGIN*/
.action-group {
    padding: 15px;
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}
.btn-premium {
    flex: 1;
    text-decoration: none;
    padding: 12px 5px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.btn-daftar {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}
.btn-login {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-premium:active { transform: scale(0.95); }
/*END BTN DAFTAR&LOGIN*/

/*START LIST LINK*/
.modal-list-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 12000;
    padding: 15px;
    background: #0000009c;
}
.modal-list-box {
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    position: relative;
    animation: luxuryPop 0.3s ease-out;
}
@keyframes luxuryPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-list-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title { display: flex; align-items: center; gap: 10px; }
.header-title h3 {
    margin: 0; font-size: 11px; color: #fff; font-weight: 900;
    letter-spacing: 2px; text-transform: uppercase;
}
.pulse-icon {
    width: 8px; height: 8px; background: #ffcc00;
    border-radius: 50%; box-shadow: 0 0 10px #ffcc00;
    animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}
.close-list {
    background: none; border: none; color: #555; cursor: pointer;
}
.modal-list-grid, .modal-list-body {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.modal-list-grid::-webkit-scrollbar {
    display: none !important;
}
.modal-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px;
}
.grid-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 2px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: 0.2s;
    display: flex; flex-direction: column; align-items: center;
}
.grid-item:last-child:nth-child(3n-2) { grid-column: 2 / 3; }
.grid-item:hover {
    border-color: var(--gold);
    background: rgba(255, 204, 0, 0.08);
}
.grid-item .name {
    display: block; color: #fff; font-weight: 800;
    font-size: 9px; margin-bottom: 3px; letter-spacing: 0.5px;
}
.grid-item .status-text {
    font-size: 7px; font-weight: 900; text-transform: uppercase;
}
.text-gacor { color: #ffcc00; text-shadow: 0 0 5px #ffcc00; }
.text-online { color: #00ff88; }
.badge-dynamic {
    position: absolute; top: -4px; right: -4px;
    padding: 2px 4px; border-radius: 3px;
    font-size: 6px; font-weight: 900; color: #000;
    background: var(--gold-gradient);
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
/*END LIST LINK*/

/*START FOOTER*/
.site-footer-slim {
    padding: 15px 10px;
    background: #080808;
    border-top: 1px solid rgba(255, 204, 0, 0.1);
    margin-top: 20px;
    width: 100%;
}
.slim-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.slim-brand {
    font-size: 14px;
    font-weight: 900;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.slim-brand i { width: 14px; }
.slim-social-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}
.slim-link {
    color: #ccc;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.2s;
}
.slim-link:hover {
    color: var(--gold);
}
.slim-link i { width: 12px; }
.slim-info {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.slim-trust {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
}
.slim-trust i { width: 10px; color: #333; }
.slim-copy {
    font-size: 9px;
    color: #444;
    margin: 0;
}
/*END FOOTER*/

/*START POPUPIMAGE*/
.modal-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 15px;
    background: #0000009c;
}
.modal-box {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    overflow: hidden;
    position: relative;
    box-shadow: none !important;
    animation: modalFadeIn 0.4s ease-out;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.modal-img-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}
.modal-img-container img {
    width: 100%; 
    height: 100%;
    object-fit: inherit;
}
.modal-content {
    padding: 5px 10px 10px;
    text-align: center;
}
.modal-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 8px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.seo-description {
    text-align: justify;
    font-size: 10px;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 10px;
}
.seo-description strong {
    color: var(--gold);
}
.mini-promo-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.mini-promo-tags span {
    font-size: 9px;
    font-weight: 700;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mini-promo-tags i {
    width: 10px;
}
.btn-gas {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    padding: 12px;
    cursor: pointer;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
/*END POPUPIMAGE*/

/*START ALERT TR DEPO&WD*/
.snack-box {
    position: fixed;
    left: -400px;
    width: 200px;
    bottom: 10px;
    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: #fbbf24; 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: #10b981; }
.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 LOADER*/
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.logo-container img, .logo-img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
    will-change: transform;
    z-index: 10;
}
.hex-outer:hover .logo-container img {
    transform: scale(1.1);
}
.gate-loader { 
    position: fixed; 
    inset: 0; 
    background: #000; 
    z-index: 999999; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    will-change: opacity;
}
.gate-content { 
    text-align: center; 
    width: 100%; 
    max-width: 300px; 
    perspective: 1000px;
}
.loader-visual-wrapper { 
    position: relative; 
    width: 110px; 
    height: 110px; 
    margin: 0 auto 35px; 
}
.hex-outer { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    animation: hexFloat 3s ease-in-out infinite;
    will-change: transform;
}
.hex-inner { 
    width: 102px; 
    height: 102px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
}
.logo-container img, .logo-container svg {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}
.loader-ring, .loader-ring-reverse { 
    position: absolute; 
    inset: -8px;
    border-top: 2px solid var(--gem-3d-glow); 
    border-radius: 50%; 
    animation: rotateRing 1.5s linear infinite; 
    will-change: transform;
}
.loader-ring-reverse { 
    inset: -16px;
    border-bottom: 2px solid var(--gem-primary); 
    animation: rotateRingReverse 2.5s linear infinite; 
}
.loader-brand { 
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 5px;
    font-size: 1rem;
    color: #fff;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}
.loading-progress-text {
    font-size: 10px;
    color: #fff;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
.loading-bar-container { 
    width: 100%; 
    height: 2px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 4px; 
    overflow: hidden;
}
.loading-bar-fill { 
    width: 0%; 
    height: 100%; 
    background: var(--rainbow);
    box-shadow: 0 0 12px #00d2ff;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}
.loader-status-msg {
    margin-top: 12px;
    font-size: 8px;
    color: #fff;
    background: var(--rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    font-weight: bold;
    opacity: 0.6;
    animation: blinker 2s linear infinite;
}
@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes rotateRingReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
@keyframes hexFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}
@keyframes blinker {
    50% { opacity: 0.1; }
}
.gate-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}
/*END LOADER*/

/*START MAX-WIDTH 360px*/
@media (max-width: 360px) {
    .action-group { grid-template-columns: 1fr; }
    .banner-container { height: 180px; }
}
/*END MAX-WIDTH 360px*/

/*START MAX-WIDTH 400PX*/
@media (max-width: 400px) {
    .slim-social-bar { gap: 5px; }
    .slim-link { font-size: 10px; padding: 4px 6px; }
    .slim-brand { font-size: 12px; }
}
/*END MAX-WIDTH 400PX*/

/*START MIN-WIDTH 1024px*/
@media (min-width: 1024px) {
    .container { max-width: 450px; }
    .title-premium { font-size: 30px; }
}
/*END MIN-WIDTH 1024px*/