/* Custom Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background: linear-gradient(135deg, #000000 0%, #8ec5fc 100%);
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    
    /* Memastikan body setinggi layar untuk memusatkan konten secara vertikal */
    min-height: 100vh;
    display: flex;
    align-items: center; /* Pusat Vertikal */
    justify-content: center; /* Pusat Horizontal */
}

/* Wrapper utama untuk menampung banyak box */
.main-wrapper {
    display: flex;
    flex-wrap: wrap; /* Kotak turun ke bawah jika layar sempit */
    justify-content: center; /* Memastikan kotak-kotak berada di tengah wrapper */
    align-items: center;
    gap: 30px; /* Jarak agar box tidak berdempetan */
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px; /* Batas maksimal lebar agar tetap rapi di layar lebar */
}

/* Desain Kotak Bio */
.container-bio {
    max-width: 350px;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9); 
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    margin: 10px; /* Cadangan jarak tambahan */
}

.container-bio:hover {
    transform: translateY(-5px);
}

/* Desain Foto Profil/Logo */
.profile-img {
    width: 180px; 
    height: auto; /* Mengikuti rasio asli gambar */
    max-height: 100px;
    border-radius: 12px;
    object-fit: contain; /* Agar logo tidak terpotong */
    margin-bottom: 15px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pengaturan Teks */
.username {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Desain Tombol Custom */
.btn-custom {
    margin-bottom: 8px;
    padding: 12px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-custom:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}