/* Base Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #0f172a; /* Dark sleek background */
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* --- Animated Background Shapes --- */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.4); /* Blue glow */
    top: -50px;
    left: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(168, 85, 247, 0.3); /* Purple glow */
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* --- Main Container --- */
.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1; /* Keep above background shapes */
    display: flex;
    flex-direction: column;
}

/* --- Top Nav --- */
.top-nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* --- Profile Section --- */
.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.2rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Outer glow ring */
}

.name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.bio {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Modern Glassmorphism Cards --- */
.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modern-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    text-decoration: none;
    color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: #ffffff;
}

/* Custom Icon Gradients */
.bg-gradient-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-gradient-purple { background: linear-gradient(135deg, #a855f7, #6b21a8); }
.bg-gradient-green { background: linear-gradient(135deg, #10b981, #047857); }
.bg-gradient-orange { background: linear-gradient(135deg, #f59e0b, #b45309); }

.card-content {
    flex-grow: 1;
    padding: 0 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
}

.card-action {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    transition: all 0.3s ease;
}

/* Animasi Panah saat Hover */
.modern-card:hover .card-action {
    background: #ffffff;
    color: #0f172a;
    transform: rotate(-45deg); /* Arrow points up-right */
}

/* --- Footer --- */
.footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}