/* ==========================================
   RESET & PAKSA BACKGROUND GELAP
   ========================================== */
html {
    background-color: #09090b !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    
    /* Menghilangkan kilatan kotak putih bawaan mobile tap */
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #09090b !important;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #09090b;
    z-index: -2;
}

/* ==========================================
   MAIN CARD (GLASSMORPHISM ELEGAN)
   ========================================== */
main {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.glass-card {
    background: rgba(24, 24, 27, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   1. JUDUL / CONTACTE-ME (PALING ATAS)
   ========================================== */
.profile-header {
    margin-bottom: 20px;
}

.profile-name {
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.8px;

    /* Efek Shimmer Kilauan Cahaya */
    background: linear-gradient(
        110deg,
        #ffffff 0%,
        #ffffff 35%,
        #a855f7 45%,
        #3b82f6 50%,
        #ffffff 55%,
        #ffffff 100%
    );
    background-size: 200% 100%;
    
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.25));
    animation: shimmerGlow 2.5s infinite linear;
}

@keyframes shimmerGlow {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ==========================================
   2. FOTO PROFIL / AVATAR
   ========================================== */
.avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 12px auto;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-photo.loaded {
    opacity: 1;
}

/* ==========================================
   3. KETERANGAN ONLINE & NEGARA (DI BAWAH LOGO)
   ========================================== */
.user-subtext {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 24px;
}

.online-time {
    color: #4ade80;
    font-weight: 600;
}

/* ==========================================
   4. TOMBOL KONTAK
   ========================================== */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    
    /* Menghilangkan garis outline & tap highlight */
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;

    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn img {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn:active, .btn:focus {
    outline: none !important;
    border: none !important;
    transform: scale(0.97) translateY(1px);
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
}

.btn.tinder {
    background: linear-gradient(135deg, #fe3c72 0%, #ff655b 100%);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}