/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Background Gradasi Kiri ke Kanan (Pink -> Purple -> Blue) */
body {
    background: linear-gradient(135deg, #ff758f, #b5179e, #7209b7, #4cc9f0);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Animasi halus untuk background */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container Utama (Glassmorphism Effect) */
.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 40px 30px;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Bagian Profil */
.profile-area .avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    object-fit: cover;
    margin-bottom: 16px;
}

.profile-area h1 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-area .bio {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.4;
}

/* Tombol Link */
.links-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

/* Efek Hover Tombol */
.link-card:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #7209b7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    margin-top: 32px;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}