body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96c93d);
    background-size: 600% 600%; /* Lebarkan background */
    animation: gradientBG 10s ease infinite;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Kontainer utama */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 90%;
    margin: 20px auto;
    border-radius: 15px;
    min-height: 100vh; /* Memungkinkan scroll */
    padding: 40px 20px; /* Menambah ruang agar tidak terlalu sempit */
    position: relative; /* Menghindari pemusatan absolut */
}

/* Box profil dan foto tambahan */
.bio-container, .additional-photo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.2);
    padding: 25px;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Tambahkan di akhir CSS */
.copyright-footer {
    margin-top: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    font-size: 14px;
    animation: fadeIn 5s ease-in-out;
    width: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Animasi Fade In */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Nama dengan efek warna bergerak */
.name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #0073e6, #e60073);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorChange 2s infinite alternate, fadeIn 2s ease-in-out;
}

/* Animasi perubahan warna */
@keyframes colorChange {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* Deskripsi */
.description {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
    animation: fadeIn 3s ease-in-out;
}

/* Sosial Media */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 4s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.fa-address-book:hover {
    color: #4c8c4a;
}

.fa-whatsapp:hover {
    color: #25D366;
}

/* Foto tambahan */
.additional-photo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 3s ease-in-out;
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* Deskripsi foto */
.photo-description {
    font-size: 16px;
    color: #333;
    margin-top: 12px;
    text-align: center;
    animation: fadeIn 4s ease-in-out;
}

.photo-description span {
    font-weight: bold;
    color: #e60073;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }
    .bio-container, .additional-photo {
        max-width: 90%;
    }
}

/* Desktop-specific styles */
@media (min-width: 1024px) {
    .container {
                max-width: 800px;
                padding: 50px;
            }

    .bio-container, .additional-photo {
        background-color: rgba(255, 255, 255, 0.9); /* Membuat background lebih solid */
        backdrop-filter: blur(15px); /* Menambahkan efek blur lebih kuat */
    }
}