:root {
    --vip-gold: #f1c40f;
    --neon-blue: #00f2fe;
    --dark-bg: #050505;
    --glass: rgba(255, 255, 255, 0.05);
    --glow: 0 0 20px rgba(0, 242, 254, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: var(--dark-bg); color: white; overflow-x: hidden; height: 100vh; }

/* Background Animation */
.bg-animate { position: fixed; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #050505 100%); }
.blob { position: absolute; width: 400px; height: 400px; background: var(--neon-blue); filter: blur(100px); border-radius: 50%; opacity: 0.1; animation: move 25s infinite alternate; }

@keyframes move { from { transform: translate(-10%, -10%); } to { transform: translate(120%, 100%); } }

/* Marquee */
.marquee { position: fixed; top: 0; width: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); padding: 10px 0; border-bottom: 1px solid var(--vip-gold); z-index: 100; font-size: 11px; font-weight: bold; letter-spacing: 2px; color: var(--vip-gold); text-transform: uppercase; }

/* Loading */
#loader { position: fixed; inset: 0; background: var(--dark-bg); display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 9999; transition: 0.8s; }
.loading-text { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; letter-spacing: 8px; background: linear-gradient(90deg, #fff, var(--neon-blue), #fff); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textFlow 2s linear infinite; }
.progress-container { width: 100px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 10px; }
#progress { width: 0%; height: 100%; background: var(--neon-blue); transition: 3s; }
.loading-sub { margin-top: 15px; font-size: 10px; opacity: 0.4; letter-spacing: 3px; }

@keyframes textFlow { to { background-position: 200%; } }

/* Popup Exclusive SMM VIP */
#popup-overlay { 
    position: fixed; 
    inset: 0; 
    background: radial-gradient(circle, rgba(15, 15, 15, 0.8) 0%, rgba(0, 0, 0, 0.98) 100%); 
    display: none; 
    justify-content: center; 
    align-items: center; 
    z-index: 2000; 
    backdrop-filter: blur(15px); 
}

.popup-box { 
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 1) 100%); 
    padding: 50px 40px; 
    border-radius: 30px; 
    text-align: center; 
    border: 2px solid var(--vip-gold); 
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.15), inset 0 0 20px rgba(241, 196, 15, 0.05); 
    max-width: 480px; 
    width: 90%;
    position: relative;
    overflow: hidden;
    transform: scale(0.7); 
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

/* Efek Cahaya di Pojok Popup */
.popup-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--vip-gold));
    animation: rotateGlow 6s linear infinite;
    opacity: 0.2;
    z-index: -1;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

.crown-icon { 
    font-size: 4.5rem; 
    color: var(--vip-gold); 
    margin-bottom: 25px; 
    filter: drop-shadow(0 0 15px rgba(241, 196, 15, 0.8));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.popup-box h2 {
    font-family: 'Orbitron';
    letter-spacing: 5px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.popup-box p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Tombol Mewah */
.btn-enter { 
    background: linear-gradient(45deg, #ffd700, #b8960c); 
    border: none; 
    padding: 15px 50px; 
    border-radius: 50px; 
    color: black; 
    font-weight: 900; 
    cursor: pointer; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-family: 'Orbitron';
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
    transition: 0.4s; 
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.4);
}

.btn-enter:hover { 
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 10px 30px var(--vip-gold); 
    letter-spacing: 5px; /* Efek melebar pas di hover */
}

/* Hiasan Garis Cyber */
.popup-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--vip-gold);
    box-shadow: 0 0 15px var(--vip-gold);
}

/* Dashboard */
.dashboard { display: none; padding-top: 120px; flex-direction: column; align-items: center; min-height: 100vh; opacity: 0; transition: 1.5s; }
.logo-main { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.cyan { color: var(--neon-blue); }
.badge-vip { background: var(--vip-gold); color: black; padding: 2px 12px; border-radius: 4px; font-size: 0.7rem; font-weight: 900; margin-left: 10px; }
.tagline { font-size: 11px; letter-spacing: 6px; opacity: 0.5; text-align: center; }

/* Container Background */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    display: none; justify-content: center; align-items: center;
    z-index: 9999; backdrop-filter: blur(15px);
}

/* Card Mewah */
.luxury-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 1px solid rgba(241, 196, 15, 0.4);
    padding: 40px; border-radius: 30px; width: 90%; max-width: 400px;
    position: relative; box-shadow: 0 0 50px rgba(241, 196, 15, 0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } }

.luxury-header { text-align: center; margin-bottom: 30px; }
.crown-icon { font-size: 2.5rem; color: #f1c40f; margin-bottom: 10px; filter: drop-shadow(0 0 10px #f1c40f); }
.luxury-header h3 { font-family: 'Orbitron', sans-serif; letter-spacing: 5px; color: #fff; }
.shimmer-line { width: 100px; height: 2px; background: #f1c40f; margin: 10px auto; box-shadow: 0 0 10px #f1c40f; }

/* Input */
.input-glow-group { margin-bottom: 20px; }
.input-glow-group input, .input-glow-group textarea {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid #333;
    padding: 15px; border-radius: 12px; color: white; outline: none; transition: 0.3s;
}
.input-glow-group input:focus { border-color: #f1c40f; box-shadow: 0 0 10px rgba(241, 196, 15, 0.2); }

/* Bintang Interaktif */
.star-box-luxury { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.star-box-luxury i { font-size: 2rem; color: #333; cursor: pointer; transition: 0.3s; }
.star-box-luxury i.active, .star-box-luxury i:hover {
    color: #f1c40f; filter: drop-shadow(0 0 10px #f1c40f); transform: scale(1.2);
}

/* Tombol Kirim Sultan */
.btn-royal-send {
    width: 100%; padding: 15px; background: linear-gradient(45deg, #b8960c, #f1c40f);
    border: none; border-radius: 12px; color: black; font-weight: 900;
    font-family: 'Orbitron'; cursor: pointer; transition: 0.4s; letter-spacing: 2px;
}
.btn-royal-send:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(241, 196, 15, 0.4); }

.close-modal-vip { position: absolute; top: 20px; right: 20px; color: #666; cursor: pointer; }

/* Sidebar Setting */
.menu-toggle {
    position: fixed; top: 50px; right: 25px; z-index: 1500;
    cursor: pointer; display: flex; flex-direction: column; gap: 6px;
}
.menu-toggle span {
    width: 35px; height: 3px; background: var(--vip-gold);
    border-radius: 10px; box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    transition: 0.3s;
}

.sidebar {
    position: fixed; top: 0; right: -300px; width: 260px; height: 100%;
    background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px);
    z-index: 2000; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--vip-gold); padding: 80px 20px;
}
.sidebar.active { right: 0; }
.sidebar-header {
    font-family: 'Orbitron'; color: var(--vip-gold);
    font-size: 1.2rem; border-bottom: 2px solid var(--vip-gold);
    padding-bottom: 10px; margin-bottom: 20px; letter-spacing: 3px;
}
.sidebar-links a {
    display: block; color: white; text-decoration: none; padding: 15px 0;
    font-family: 'Orbitron'; font-size: 0.8rem; letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.sidebar-links a:hover { color: var(--vip-gold); transform: translateX(10px); }
.close-sidebar { position: absolute; top: 20px; right: 25px; font-size: 2rem; color: white; cursor: pointer; }

/* Modal System */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    z-index: 3000; display: none; justify-content: center; align-items: center;
    backdrop-filter: blur(10px);
}
.modal-box {
    background: #0f0f0f; border: 1px solid var(--vip-gold);
    padding: 40px; border-radius: 20px; width: 90%; max-width: 450px;
    position: relative; text-align: center;
}
.modal-box.small { max-width: 350px; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; color: white; cursor: pointer; }
.modal-box h3 { font-family: 'Orbitron'; color: var(--vip-gold); margin-bottom: 20px; letter-spacing: 5px; }

/* Form Admin */
.modal-box input {
    width: 100%; padding: 12px; margin-bottom: 15px; background: #000;
    border: 1px solid #333; color: white; border-radius: 8px; font-family: 'Orbitron';
}
.btn-admin {
    width: 100%; padding: 12px; background: var(--vip-gold);
    border: none; color: black; font-weight: 900; border-radius: 8px;
    cursor: pointer; font-family: 'Orbitron'; transition: 0.3s;
}
.btn-admin:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--vip-gold); }

/* List Testimoni di Admin */
.admin-list-container { max-height: 300px; overflow-y: auto; text-align: left; }
.admin-item {
    background: #1a1a1a; padding: 12px; border-radius: 10px;
    margin-bottom: 10px; display: flex; justify-content: space-between;
    align-items: center; border-left: 3px solid var(--vip-gold);
}
.admin-info b { color: var(--vip-gold); display: block; font-size: 0.8rem; }
.admin-info span { font-size: 0.7rem; opacity: 0.7; }
.btn-hapus {
    background: #ff4757; color: white; border: none; padding: 6px 12px;
    border-radius: 5px; cursor: pointer; font-size: 0.7rem; font-weight: bold;
}

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; width: 90%; max-width: 550px; margin-top: 40px; }
.card { background: var(--glass); border: 1px solid rgba(255,255,255,0.08); padding: 35px 20px; border-radius: 15px; text-decoration: none; color: white; transition: 0.4s; text-align: center; backdrop-filter: blur(10px); }
.card i { font-size: 2rem; color: var(--neon-blue); margin-bottom: 15px; transition: 0.4s; }
.card h3 { font-family: 'Orbitron'; font-size: 1rem; letter-spacing: 2px; }
.card:hover { border-color: var(--neon-blue); transform: translateY(-8px); box-shadow: var(--glow); background: rgba(0, 242, 254, 0.05); }

/* Rating Section - Verified VIP Style */
.rating-container { 
    margin-top: 35px; 
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.4)); 
    padding: 20px 35px; 
    border-radius: 25px; 
    border: 1px solid rgba(241, 196, 15, 0.3); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: glow-pulse 4s infinite ease-in-out; 
}

/* Efek Cahaya Latar Belakang Rating */
.rating-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stars { 
    color: var(--vip-gold); 
    font-size: 1.4rem; 
    letter-spacing: 8px; 
    margin-bottom: 8px; 
    filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.8)); 
}

/* Animasi Bintang Berkedip Bergantian */
.stars i {
    animation: starFlicker 2s infinite alternate;
}
.stars i:nth-child(2) { animation-delay: 0.3s; }
.stars i:nth-child(3) { animation-delay: 0.6s; }
.stars i:nth-child(4) { animation-delay: 0.9s; }
.stars i:nth-child(5) { animation-delay: 1.2s; }

@keyframes starFlicker {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 15px var(--vip-gold)); }
}

.rating-text { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 0.85rem; 
    letter-spacing: 3px; 
    color: #fff;
    text-transform: uppercase;
}

.rating-number { 
    color: #000; 
    background: var(--vip-gold);
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 900; 
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    margin-left: 5px;
}

.review-count { 
    font-size: 10px; 
    color: var(--neon-blue);
    font-weight: 600;
    opacity: 0.8; 
    margin-top: 8px; 
    text-transform: uppercase; 
    letter-spacing: 3px;
}

@keyframes glow-pulse { 
    0%, 100% { 
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.1); 
        border-color: rgba(241, 196, 15, 0.2);
    } 
    50% { 
        box-shadow: 0 0 30px rgba(241, 196, 15, 0.3); 
        border-color: var(--vip-gold);
    } 
}

/* Stats Bar */
.stats-bar { margin-top: 40px; display: flex; gap: 50px; padding: 20px 50px; border-radius: 100px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.stat-item { text-align: center; }
.stat-item h3 { color: var(--vip-gold); font-family: 'Orbitron'; font-size: 1.2rem; }
.stat-item p { font-size: 0.65rem; opacity: 0.5; letter-spacing: 1px; }

/* CS Telegram VIP Glow Style */
.cs-float { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 65px; 
    height: 65px; 
    background: linear-gradient(135deg, #0088cc, #00c2ff); 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 32px; 
    color: white; 
    text-decoration: none; 
    z-index: 2000; 
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.5); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Animasi mengapung pelan */
    animation: floatAnim 3s ease-in-out infinite;
}

/* Efek Gelombang (Pulse) di belakang tombol */
.cs-float::before, .cs-float::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #0088cc;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.cs-float::before {
    animation: pulseRing 2s infinite;
}

.cs-float::after {
    animation: pulseRing 2s infinite 1s; /* Delay biar gelombangnya nyambung */
}

/* Animasi Inti */
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Efek Pas Di-Hover (Sentuh) */
.cs-float:hover { 
    transform: scale(1.15) rotate(15deg); 
    background: linear-gradient(135deg, #00a2ed, #00e5ff);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.6); 
    filter: brightness(1.1);
}

/* Icon Telegram biar ada bayangan putih halus */
.cs-float i {
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Container Utama - Bikin Scrollbar lebih halus */
.admin-list-container {
    max-height: 450px;
    overflow-y: auto;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2); /* Depth effect */
    border-radius: 15px;
}

/* Item List - Modern Glassmorphism */
.admin-testi-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Hapus border-left tebal, ganti ke accent glow tipis */
    border-left: 2px solid var(--vip-gold);
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admin-testi-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px); /* Geser sedikit pas hover, kerasa pro */
    border-color: rgba(241, 196, 15, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Detail Testimoni */
.testi-info {
    text-align: left;
    flex: 1;
}

.testi-info b {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--vip-gold);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.testi-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic; /* Biar kerasa kesan "quote" */
}

/* Tombol Hapus - Dibuat minimalis tapi tajam */
.btn-delete-testi {
    background: rgba(255, 71, 87, 0.1); /* Background tipis dulu */
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-delete-testi:hover {
    background: #ff4757;
    color: white;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
    transform: rotate(9deg) scale(1.1);
}

/* Custom Scrollbar - Minimalis */
.admin-list-container::-webkit-scrollbar { 
    width: 5px; 
}

.admin-list-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.admin-list-container::-webkit-scrollbar-thumb { 
    background: linear-gradient(to bottom, transparent, var(--vip-gold), transparent); 
    border-radius: 10px; 
}

/* --- CS Float Modern --- */
.cs-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.cs-float::after {
    content: "CHAT ADMIN";
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--vip-gold);
    color: black;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    font-family: 'Orbitron';
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cs-float:hover::after {
    opacity: 1;
    right: 110%;
}