* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Rajdhani', sans-serif; background-color: #07070a; color: #fff; padding: 20px 0; }

.cyber-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: radial-gradient(circle at 50% 50%, #151520 0%, #050508 100%); z-index: -2; }
.cyber-bg::before { content: ''; position: absolute; width: 100%; height: 100%; background-image: linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px); background-size: 40px 40px; z-index: -1; }

.container { width: 95%; max-width: 450px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }

.vip-card { background: rgba(20, 20, 25, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.profile-wrapper { position: relative; width: 120px; height: 120px; margin: 0 auto 20px; }
.profile-pic { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid #111; }
.cyber-ring { position: absolute; top: -5px; left: -5px; width: 130px; height: 130px; border-radius: 50%; border: 3px solid transparent; border-top: 3px solid #ff007f; border-bottom: 3px solid #ffd700; animation: spin 3s linear infinite; }

.vip-name { font-family: 'Orbitron', sans-serif; text-align: center; font-size: 1.5rem; color: #ffd700; margin-bottom: 5px; }
.vip-title { text-align: center; font-size: 0.9rem; color: #00f3ff; margin-bottom: 15px; }
.vip-bio { text-align: center; font-size: 0.85rem; color: #aaa; margin-bottom: 20px; }

.bio-container { display: flex; flex-direction: column; gap: 10px; }
.bio-item { background: rgba(255,255,255,0.03); padding: 12px; border-radius: 10px; border-left: 3px solid #ffd700; }
.bio-title { font-family: 'Orbitron', sans-serif; font-size: 0.85rem; color: #ffd700; margin-bottom: 5px; }
.bio-desc { font-size: 0.75rem; color: #999; }

.card-heading { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; text-align: center; margin-bottom: 15px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.love-box { background: rgba(0,0,0,0.2); padding: 15px; border-radius: 12px; border: 1px solid rgba(255,0,127,0.3); }
.info-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.badge-love { background: #ff007f; padding: 2px 10px; border-radius: 15px; font-size: 0.8rem; font-weight: bold; }
.partner-name { color: #ffd700; font-weight: bold; }
.btn-glow-pink { display: block; text-align: center; padding: 10px; border: 1px solid #ff007f; border-radius: 10px; color: white; text-decoration: none; font-weight: bold; margin-top: 10px; }

.button-grid { display: flex; flex-direction: column; gap: 10px; }
.cyber-btn { display: flex; align-items: center; gap: 15px; padding: 12px 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; text-decoration: none; font-weight: 600; }
.wa { border-left: 4px solid #25D366; }
.wa-channel { border-left: 4px solid #128C7E; }
.tele { border-left: 4px solid #0088cc; }
.tiktok { border-left: 4px solid #ff0050; }
.youtube { border-left: 4px solid #FF0000; }

footer { text-align: center; font-size: 0.7rem; color: #666; margin-top: 20px; }
.gold-gradient { color: #ffd700; }

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

/* --- PERBAIKAN: KACA TRANSPARAN (Teks Jelas, Background Terlihat) --- */
.vip-card {
    background: rgba(0, 0, 0, 0.3) !important; /* 0.3 membuat kartu lebih transparan tapi tetap gelap */
    backdrop-filter: blur(10px) !important; /* Blur tipis agar teks menonjol tapi gambar tetap terlihat */
    border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Border tipis agar kartu punya outline */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* --- UPDATE: ANIMASI RGB SPECTRUM LEBIH BANYAK WARNA --- */
.card-heading {
    /* Menggunakan 8 warna agar transisi lebih smooth dan berwarna */
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #00ffff, #0000ff, #8b00ff, #ff00ff, #ff0000);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rgb-text 6s linear infinite;
    font-weight: bold; /* Agar teks lebih tebal dan warna terlihat lebih menonjol */
}

@keyframes rgb-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}
