:root {
    /* Color Palette - Premium Dark Mode */
    --bg-color: #0F1115;
    --card-bg: #181A20;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --accent-color: #3B82F6;
    /* Energetic Blue */
    --accent-hover: #60A5FA;
    --border-color: #2A2D35;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: var(--spacing-md);
    -webkit-font-smoothing: antialiased;
}

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

/* Profile Image */
.profile-image-container {
    margin-bottom: var(--spacing-lg);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Header / Bio Section */
header {
    text-align: center;
    /* Centering for profile feels better */
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.05em;
    background: linear-gradient(to right, #fff, #9ca3af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

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

.role span {
    display: inline-block;
}

.separator {
    margin: 0 var(--spacing-sm);
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--card-bg);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.link-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.link-card:hover .icon {
    color: var(--accent-color);
}

.link-text {
    font-weight: 500;
    font-size: 1rem;
}

.arrow {
    color: var(--text-secondary);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.link-card:hover .arrow {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(4px);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .role {
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }

    .separator {
        display: none;
    }

    .bio {
        font-size: 0.95rem;
    }
}