* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: #0f172a;
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #3b82f620, transparent),
                radial-gradient(circle at bottom left, #6366f120, transparent);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.profile .avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #6366f1;
    padding: 3px;
    margin-bottom: 15px;
    object-fit: cover; /* Mencegah foto gepeng */
}

.profile h1 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.profile p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 35px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.link-card i {
    font-size: 1.2rem;
    width: 25px;
}

.link-card span {
    flex-grow: 1;
}

/* Hover Effect */
.link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

footer {
    margin-top: 50px;
    font-size: 0.75rem;
    color: #475569;
}