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

body, html { 
    height: 100%; 
    width: 100%; 
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background: #000; 
    perspective: 1500px; 
}

/* --- JEBAKAN TRANSPARAN --- */
#overlay-trap {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 999999; 
    background: rgba(0, 0, 0, 0.01); 
    cursor: pointer;
}

/* --- BACKGROUND TERANG --- */
.bg-photo {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    /* Ganti link di bawah ini dengan link RAW GitHub kamu */
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 15, 30, 0.1) 100%), 
                      url('https://files.catbox.moe/3uqcxf.jpg');
    background-size: cover; 
    background-position: center; 
    z-index: -2;
    filter: contrast(1.1) brightness(1.1); 
    animation: kenBurns 20s infinite alternate linear;
}


/* --- CONTAINER PREMIUM --- */

.container {
    background: rgba(0, 0, 0, 0.2); /* Bikin sangat transparan */
    backdrop-filter: blur(10px); /* Efek blur halus di belakang kotak */
    border: 2px solid #ffffff; /* Garis pinggir kotak jadi putih */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* Pijar neon putih di pinggir kotak */
    border-radius: 30px;
    padding: 40px 30px;
    width: 92%;
    max-width: 400px;
    text-align: center;
}

.container::after {
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg); 
    animation: shineCard 6s infinite linear;
}

@keyframes shineCard { 
    0% { transform: translateX(-100%) rotate(45deg); } 
    100% { transform: translateX(100%) rotate(45deg); } 
}

@keyframes slideUpFade { 
    from { opacity: 0; transform: translateY(50px) scale(0.9); } 
    to { opacity: 1; transform: translateY(0) scale(1); } 
}

/* --- PROFILE --- */
/* --- BINGKAI PROFIL NEON PUTIH & GERAK MENGAPUNG (FIX) --- */
.profile-img { 
    width: 110px; height: 110px; border-radius: 50%; 
    
    /* 1. Efek Neon Putih */
    border: 3px solid #ffffff; 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 
                inset 0 0 10px rgba(255, 255, 255, 0.4); /* Glow masuk ke dalam biar nimbul */
    
    margin-bottom: 25px; 
    transform: translateZ(60px); 
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    
    /* 2. Panggil Animasi Mengapung (PENTING!) */
    animation: floatingProfile 4s ease-in-out infinite; 
}

/* 3. Definisi Gerakan Mengapung (Floating) */
@keyframes floatingProfile {
    0% {
        transform: translateY(0px) translateZ(60px);
    }
    50% {
        transform: translateY(-10px) translateZ(80px); /* Naik dikit & agak maju */
    }
    100% {
        transform: translateY(0px) translateZ(60px);
    }
}


/* --- TITEL --- */
h1 { 
    font-size: 34px; 
    font-weight: 800; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    color: #ffffff; 
    transform: translateZ(40px);
    text-shadow: 0 5px 15px rgba(0,0,0,0.5), 0 0 10px rgba(255, 0, 0, 0.3);
    margin-bottom: 5px;
}

p { color: #ccc; margin-bottom: 20px; transform: translateZ(30px); }

/* --- TOMBOL --- */
.links { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    transform: translateZ(20px); 
}

/* --- KOLOM NEON PUTIH, IKON TETAP BERWARNA --- */
.btn {
    display: flex; 
    align-items: center; 
    padding: 12px 20px; 
    margin-bottom: 12px;
    border-radius: 12px;
    text-decoration: none; 
    color: #ffffff; 
    background: rgba(0, 0, 0, 0.65); 
    font-size: 14px; 
    font-weight: 600; 
    
    /* Neon Putih di Pinggiran Kolom */
    border: 1.5px solid #ffffff; 
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3); 
    
    transition: all 0.3s ease;
    position: relative;
}

/* Pengaturan Ikon (Ukuran & Posisi) */
.btn i { 
    margin-right: 15px; 
    font-size: 20px !important; 
    min-width: 25px;
    text-align: center;
}

/* --- BALIKIN WARNA IKON ASLI --- */
.wa i { color: #25D366; filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.4)); }
.fb i { color: #1877F2; filter: drop-shadow(0 0 5px rgba(24, 119, 242, 0.4)); }
.ig i { color: #FF0077; filter: drop-shadow(0 0 5px rgba(255, 0, 119, 0.4)); }
.tg i { color: #0088CC; filter: drop-shadow(0 0 5px rgba(0, 136, 204, 0.4)); }

/* Efek Hover */
.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 
                inset 0 0 8px rgba(255, 255, 255, 0.2);
}
