body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.profile-container {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px; /* Mengurangi jarak ke tulisan "Doc Chan" */
}


h1 {
    font-size: 36px; /* Memperbesar ukuran font */
    font-weight: bold; /* Membuat teks tebal */
    color: #2c3e50; /* Warna biru tua yang elegan */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Efek bayangan halus */
    margin-top: 5px; /* Mengurangi jarak dari foto ke tulisan */
    margin-bottom: 5px; /* Mengurangi jarak ke deskripsi */
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px; /* Jarak lebih kecil ke tombol */
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.social-button {
    display: block;
    width: 80%;
    padding: 12px 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
    color: white !important;
}

/* Warna Tombol Media Sosial */
.whatsapp { background-color: #25D366; }  
.tiktok { background-color: #010101; }  
.showcase { background-color: #FF6F00; }  
.youtube { background-color: #FF0000; }  
.facebook { background-color: #3b5998; }  
.instagram { background-color: #E1306C; }  

/* Pastikan tidak berubah warna */
.youtube:visited, .youtube:hover,
.instagram:visited, .instagram:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Hover Efek */
.social-button:hover {
    opacity: 0.8;
}

.social-button {
    pointer-events: auto !important;
    z-index: 9999;
}

.tiktok {
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
}

.profile-container {
    margin: 50px auto; /* Pastikan ini tetap ada */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

html, body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes glowing {
    0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(var(--shadow-color), 1); }
    100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
}

/* Definisi warna masing-masing tombol */
.whatsapp { --shadow-color: 37, 211, 102; animation: glowing 1.5s infinite alternate; animation-delay: 0s; }
.tiktok { --shadow-color: 1, 1, 1; animation: glowing 1.5s infinite alternate; animation-delay: 0.3s; }
.showcase { --shadow-color: 255, 111, 0; animation: glowing 1.5s infinite alternate; animation-delay: 0.6s; }
.youtube { --shadow-color: 255, 0, 0; animation: glowing 1.5s infinite alternate; animation-delay: 0.9s; }
.facebook { --shadow-color: 59, 89, 152; animation: glowing 1.5s infinite alternate; animation-delay: 1.2s; }
.instagram { --shadow-color: 225, 48, 108; animation: glowing 1.5s infinite alternate; animation-delay: 1.5s; }






