 * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a0a1a 50%, #0f0f1a 100%);
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Efek Partikel Api */
        .fire-particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, #ff6600, #ffcc00);
            border-radius: 50%;
            pointer-events: none;
            z-index: 999;
            opacity: 0;
            animation: fireFly 1.5s ease-out forwards;
        }
        
        @keyframes fireFly {
            0% { opacity: 1; transform: translateY(0) scale(1); }
            100% { opacity: 0; transform: translateY(-100px) scale(0); }
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 40%, rgba(240,185,11,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,65,108,0.06) 0%, transparent 50%),
                repeating-linear-gradient(45deg, rgba(240,185,11,0.03) 0px, rgba(240,185,11,0.03) 2px, transparent 2px, transparent 20px);
            pointer-events: none;
            z-index: 0;
        }
        
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            z-index: 0;
            animation: floatOrb 25s infinite ease-in-out;
        }
        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
            33% { transform: translate(5%, -5%) scale(1.2); opacity: 0.6; }
            66% { transform: translate(-5%, 5%) scale(0.9); opacity: 0.3; }
        }
        .orb-1 { width: 400px; height: 400px; background: rgba(240,185,11,0.12); top: -150px; right: -100px; }
        .orb-2 { width: 500px; height: 500px; background: rgba(255,65,108,0.08); bottom: -200px; left: -150px; }
        .orb-3 { width: 300px; height: 300px; background: rgba(255,100,0,0.1); top: 50%; left: 20%; }
        
        .container { max-width: 500px; margin: 0 auto; position: relative; z-index: 2; }
        @media (min-width: 992px) {
            body { padding: 30px; }
            .container { max-width: 1300px; }
            .two-columns { display: flex; gap: 30px; align-items: stretch; }
            .left-column, .right-column { flex: 1; }
        }
        
        /* Card Premium dengan Efek Glow */
        .premium-card {
            background: rgba(20, 25, 45, 0.55);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            border: 1px solid rgba(240,185,11,0.3);
            margin-bottom: 25px;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
        }
        .premium-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(240,185,11,0.05), transparent);
            pointer-events: none;
        }
        .premium-card:hover { transform: translateY(-5px); border-color: rgba(240,185,11,0.6); box-shadow: 0 0 30px rgba(240,185,11,0.2); }
        
        .pill-3d {
            display: inline-block;
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 800;
            font-size: 0.8rem;
            margin: -15px 0 0 18px;
            box-shadow: 0 8px 16px rgba(255,65,108,0.3);
            position: relative;
            z-index: 5;
        }
        
        /* Countdown */
        .countdown-premium { padding: 28px 20px 22px; }
        .countdown-grid { display: flex; justify-content: space-between; gap: 12px; }
        .countdown-item-premium {
            flex: 1;
            text-align: center;
            background: rgba(0, 0, 0, 0.45);
            border-radius: 18px;
            padding: 12px 8px;
            border: 1px solid rgba(240,185,11,0.35);
            transition: all 0.3s;
        }
        .countdown-item-premium:hover { transform: scale(1.05); border-color: #f0b90b; box-shadow: 0 0 15px rgba(240,185,11,0.3); }
        .countdown-number-premium {
            font-size: 1.8rem;
            font-weight: 900;
            font-family: monospace;
            background: linear-gradient(135deg, #fff, #f0b90b, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .countdown-label-premium { font-size: 0.6rem; color: #f0b90b; text-transform: uppercase; letter-spacing: 1px; }
        .neon-text { text-align: center; color: #f0b90b; font-size: 0.7rem; margin-top: 16px; text-shadow: 0 0 5px rgba(240,185,11,0.5); }
        
        /* Section Title */
        .section-title-premium {
            padding: 18px 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 2px solid rgba(240,185,11,0.15);
        }
        .section-title-premium i { font-size: 1.3rem; color: #f0b90b; }
        .section-title-premium h3 {
            font-size: 1.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0b90b, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Prize List */
        .prize-list-premium { padding: 12px 18px 18px; }
        .prize-item-premium {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 10px 14px;
            margin-bottom: 8px;
            background: rgba(0, 0, 0, 0.35);
            border-radius: 16px;
            border-left: 3px solid #f0b90b;
            transition: all 0.3s;
        }
        .prize-item-premium:hover { background: rgba(240,185,11,0.1); transform: translateX(5px); }
        .prize-rank-premium {
            background: linear-gradient(135deg, #f0b90b, #ffd700);
            color: #0a0a1a;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.65rem;
            font-weight: 800;
            min-width: 85px;
            text-align: center;
        }
        .prize-name-premium { color: white; font-size: 0.8rem; font-weight: 500; margin-top: 5px; }
        @media (min-width: 420px) {
            .prize-item-premium { flex-wrap: nowrap; }
            .prize-name-premium { margin-top: 0; margin-left: 12px; }
        }
        
        /* Rules */
        .rules-list-premium { padding: 12px 20px 18px; }
        .rules-list-premium li { color: #ddd; font-size: 0.7rem; margin-bottom: 10px; margin-left: 18px; transition: all 0.2s; }
        .rules-list-premium li:hover { color: #f0b90b; transform: translateX(5px); }
        
        /* Leaderboard Header */
        .leaderboard-header-premium { text-align: center; padding: 18px 15px 8px; }
        .glow-title {
            font-size: 1.3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0b90b, #ffd700, #ff416c);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: textShine 3s infinite;
            display: inline-block;
        }
        @keyframes textShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .update-time-premium { text-align: center; color: #f0b90b; font-size: 0.65rem; margin-top: 6px; }
        .total-data { text-align: center; color: #aaa; font-size: 0.65rem; margin-top: 5px; }
        
        /* Leaderboard List - DENGAN EFEK API UNTUK JUARA 1-5 */
        .leaderboard-list-premium { 
            padding: 5px 16px 20px;
            max-height: 600px;
            overflow-y: auto;
        }
        .leaderboard-row-premium {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px;
            margin-bottom: 8px;
            background: rgba(0, 0, 0, 0.35);
            border-radius: 16px;
            border-left: 3px solid #f0b90b;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .leaderboard-row-premium:hover {
            background: rgba(240,185,11,0.1);
            transform: translateX(5px);
        }
        
        /* EFEK API UNTUK JUARA 1-5 */
        .leaderboard-row-premium.fire-rank {
            position: relative;
            overflow: hidden;
            animation: firePulse 0.8s ease-in-out infinite alternate;
        }
        
        .leaderboard-row-premium.fire-rank::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,100,0,0.3), rgba(255,50,0,0.1), transparent);
            animation: fireRotate 3s linear infinite;
            pointer-events: none;
        }
        
        .leaderboard-row-premium.fire-rank::after {
            content: '🔥';
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            animation: fireFlicker 0.5s ease-in-out infinite alternate;
            pointer-events: none;
        }
        
        @keyframes firePulse {
            0% { box-shadow: 0 0 5px rgba(255,100,0,0.3), inset 0 0 5px rgba(255,100,0,0.1); border-left-color: #ff6600; }
            100% { box-shadow: 0 0 20px rgba(255,100,0,0.6), inset 0 0 10px rgba(255,100,0,0.2); border-left-color: #ffcc00; }
        }
        
        @keyframes fireRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes fireFlicker {
            0% { opacity: 0.7; text-shadow: 0 0 2px #ff6600; }
            100% { opacity: 1; text-shadow: 0 0 10px #ff6600, 0 0 5px #ffcc00; }
        }
        
        /* Efek khusus untuk peringkat */
        .leaderboard-row-premium[data-rank="1"] { background: linear-gradient(90deg, rgba(255,100,0,0.15), rgba(0,0,0,0.35)); border-left: 3px solid #ff6600; }
        .leaderboard-row-premium[data-rank="2"] { border-left: 3px solid #c0c0c0; }
        .leaderboard-row-premium[data-rank="3"] { border-left: 3px solid #cd7f32; }
        .leaderboard-row-premium[data-rank="4"] { border-left: 3px solid #ff8800; }
        .leaderboard-row-premium[data-rank="5"] { border-left: 3px solid #ffaa00; }
        
        .rank-badge-premium {
            position: relative;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .rank-badge-premium img { 
            position: absolute; 
            width: 100%;
            border-radius: 50%;
        }
        .rank-badge-premium span { 
            position: relative; 
            font-weight: 900; 
            font-size: 0.9rem; 
            color: white; 
            z-index: 1;
            text-shadow: 0 0 2px black;
        }
        .player-name-premium { 
            font-weight: 700; 
            font-size: 0.85rem; 
            color: white; 
            margin-left: 8px;
            letter-spacing: 0.5px;
        }
        .player-score-premium {
            font-family: monospace;
            font-weight: 800;
            font-size: 0.75rem;
            background: linear-gradient(135deg, #f0b90b, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            white-space: nowrap;
        }
        .jackpot-premium {
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            color: #1a1a2e;
            padding: 2px 10px;
            border-radius: 30px;
            font-size: 0.55rem;
            font-weight: 800;
            margin-left: 8px;
            animation: pulse 1s infinite;
        }
        @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
        
        /* Buttons */
        .button-group-premium { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 30px;
    position: relative;
}

@media (min-width: 768px) { 
    .button-group-premium { 
        flex-direction: row; 
        gap: 20px; 
    } 
}

.btn-premium {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Efek Glow Border */
.btn-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    border-radius: 62px;
    z-index: -2;
    animation: borderGlow 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-premium:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Inner background */
.btn-premium::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 58px;
    z-index: -1;
    transition: all 0.3s;
}

/* Login Button */
.btn-login-premium {
    background: linear-gradient(135deg, rgba(240,185,11,0.9), rgba(255,215,0,0.9));
    color: #0a0a1a;
    box-shadow: 0 0 15px rgba(240,185,11,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-login-premium::after {
    background: linear-gradient(135deg, #f0b90b, #ffd700);
}

.btn-login-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(240,185,11,0.7), 0 10px 20px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

/* Register Button */
.btn-register-premium {
    background: linear-gradient(135deg, rgba(255,65,108,0.9), rgba(255,75,43,0.9));
    color: white;
    box-shadow: 0 0 15px rgba(255,65,108,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-register-premium::after {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.btn-register-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255,65,108,0.7), 0 10px 20px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

/* Efek Ripple */
.btn-premium {
    position: relative;
    overflow: hidden;
}

.btn-premium .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

        /* Badges */
      .badge-group-premium { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap; 
    margin: 20px 0 15px;
}

.badge-premium {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: default;
}



/* Badge Fire (GACOR MAXWIN) */
.badge-fire {
    background: linear-gradient(135deg, #ff416c, #ff4b2b, #ff416c);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 0 15px rgba(255,65,108,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    animation: badgeFireGradient 3s ease infinite, badgeFloat 3s ease-in-out infinite;
}


@keyframes badgeFireGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Badge Gold (HADIAH RATUSAN JUTA) */
.badge-gold {
    background: linear-gradient(135deg, #f0b90b, #ffd700, #f0b90b);
    background-size: 200% 200%;
    color: #0a0a1a;
    box-shadow: 0 0 15px rgba(240,185,11,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 1px solid rgba(255,215,0,0.5);
}


/* Badge Bonus Referral */
.badge-premium:nth-child(3) {
    background: linear-gradient(135deg, #00b4db, #0083b0, #00b4db);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 0 15px rgba(0,180,219,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(0,180,219,0.5);
    animation: badgeBlueGradient 3s ease infinite, badgeFloat 3s ease-in-out infinite 1s;
}



/* Efek partikel untuk badge */
.badge-premium {
    position: relative;
    overflow: visible;
}

.badge-premium::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 60px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.badge-premium:hover::after {
    opacity: 0.6;
}
        /* Header Image */
        .header-img-premium { width: 100%; border-radius: 24px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); transition: all 0.3s; }
        .header-img-premium:hover { transform: scale(1.01); box-shadow: 0 0 30px rgba(240,185,11,0.2); }
        
        .main-title-premium {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff, #f0b90b, #ffd700, #ff416c);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 12px 0 5px;
            animation: titleGradient 3s infinite;
        }
        @keyframes titleGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .desc-text-premium { text-align: center; color: #ccc; font-size: 0.7rem; margin-bottom: 12px; }
        
        .pagination-wrapper-premium { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-top: 12px; 
            padding: 10px 16px 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .auto-refresh-premium { color: #888; font-size: 0.65rem; }
        .footer-premium { text-align: center; padding: 20px; color: #666; font-size: 0.6rem; border-top: 1px solid rgba(240,185,11,0.1); margin-top: 15px; }
        .footer-premium a { color: #f0b90b; text-decoration: none; }
        
        /* Scrollbar */
        .leaderboard-list-premium::-webkit-scrollbar { width: 5px; }
        .leaderboard-list-premium::-webkit-scrollbar-track { background: #1a1f2e; border-radius: 10px; }
        .leaderboard-list-premium::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ff6600, #f0b90b); border-radius: 10px; }
        
        /* Popup Modal */
        .popup-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .popup-modal.show { opacity: 1; }
        .popup-content {
            position: relative;
            max-width: 800px;
            width: 90%;
            background: transparent;
            border-radius: 20px;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
        }
        .popup-modal.show .popup-content { transform: scale(1); }
        .popup-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(240,185,11,0.2);
        }
        .popup-close {
            position: absolute;
            top: -15px;
            right: -15px;
            background: linear-gradient(135deg, #f0b90b, #ffd700);
            color: #0a0a1a;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            font-weight: bold;
            z-index: 10000;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(240,185,11,0.5);
        }
        .popup-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
        }
        @keyframes popupGlow {
            0% { box-shadow: 0 0 0 0 rgba(240,185,11,0.4); }
            70% { box-shadow: 0 0 0 20px rgba(240,185,11,0); }
            100% { box-shadow: 0 0 0 0 rgba(240,185,11,0); }
        }
        .popup-content { animation: popupGlow 1.5s ease-out; }
        
        @media (max-width: 768px) {
            .countdown-number-premium { font-size: 1.3rem; }
            .glow-title { font-size: 1.1rem; }
            .leaderboard-row-premium { flex-direction: column; align-items: flex-start; gap: 6px; }
            .player-score-premium { font-size: 0.7rem; }
            .pagination-wrapper-premium { flex-direction: column; align-items: center; }
            .popup-content { width: 95%; }
            .popup-close { top: -10px; right: -10px; width: 35px; height: 35px; font-size: 1.2rem; }
        }