:root {
    --bg-color: #f3f4f6;
    --accent-color: #008ed6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.2s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

#app {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px 80px; /* Ditambah padding bawah agar lebih lega */
}

.background-glow {
    display: none;
}

.container {
    width: 100%;
    max-width: 580px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 48px;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden; /* Menjaga agar tetap bulat */
}

.avatar {
    width: 80%; /* Dikecilkan sedikit agar ada ruang di dalam lingkaran */
    height: 80%;
    object-fit: contain;
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-color);
}

.verified-badge svg {
    width: 14px;
    height: 14px;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.username {
    display: none;
}

.bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: var(--transition);
    color: var(--accent-color);
}

.link-icon svg {
    width: 20px;
    height: 20px;
}

.link-title {
    font-size: 1.05rem;
    font-weight: 600;
    flex: 1;
}

.more-icon {
    color: var(--text-secondary);
    opacity: 0.3;
    width: 18px;
    height: 18px;
}

/* Social Section */
/* Footer Section */
.page-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.social-cta {
    text-align: center;
    font-size: 0.8rem; /* Sedikit lebih kecil agar elegan */
    color: var(--text-secondary);
    margin-bottom: 4px; /* Lebih mepet ke ikon */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px; /* Sangat mepet ke copyright */
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-label-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 28px;
    height: 28px;
}

/* Footer */
.footer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    text-align: center;
}

.footer-credit span {
    color: #ef4444;
    font-size: 1.1rem;
}

/* Skeleton Loading */
.skeleton-loader {
    height: 76px;
    background: var(--glass-bg);
    border-radius: 16px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* Responsive */
@media (max-width: 480px) {
    #app {
        padding: 30px 16px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .link-card {
        padding: 14px 18px;
    }
}
