@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Palet Warna Utama (Mengacu pada Warna Palet.png) - SOLID COLORS ONLY */
    --c-blue: #2563EB;
    --c-cyan: #06B6D4;
    --c-turquoise: #10B981;
    --c-magenta: #EC4899;
    --c-pink: #F43F5E;
    --c-orange: #F97316;
    --c-amber: #F59E0B;
    --c-yellow: #FFFF24;

    /* Warna Netral */
    --c-black: #111111;
    --c-dark-gray: #1F1F1F;
    --c-gray: #6B7280;
    --c-light-gray: #E5E7EB;
    --c-white: #FFFFFF;

    /* Konfigurasi Tema Gelap */
    --bg-main: var(--c-black);
    --bg-card: var(--c-dark-gray);
    --text-main: var(--c-white);
    --text-muted: var(--c-light-gray);
    --border-color: #2D2D2D;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeIn 0.6s ease-out;
}

/* Profil & Header */
.profile-section {
    text-align: center;
}

.logo-container {
    width: 96px;
    height: 96px;
    background-color: transparent;
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    border: 2px solid var(--c-dark-gray);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--accent-color, var(--c-gray));
    transition: width 0.2s ease;
}

.link-card:hover {
    background-color: #262626;
    transform: translateY(-2px);
    border-color: var(--accent-color, var(--c-gray));
}

.link-card:hover::before {
    width: 8px;
}

.link-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: var(--accent-color, var(--c-white));
    transition: transform 0.2s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-text {
    flex: 1;
    text-align: center;
    padding-right: 36px;
}

/* Social Icons */
.social-section {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--hover-color, var(--c-white));
    transform: translateY(-4px) scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
