:root {
    --bg-color: #ffffff;
    --text-color: #334155;
    --card-bg: #ffffff;
    --card-hover-bg: #f8fafc;
    --accent-color: #38bdf8;
    --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    --font-family: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Simplified background for light theme */
.background-animation {
    display: none;
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.profile-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform var(--transition-speed);
    /* Removed custom background/border logic to keep it simple as requested */
}

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

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    /* Removed border */
    box-shadow: var(--shadow-md);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #334155;
}

.profile-bio {
    color: #64748b;
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.social-icons a {
    color: #64748b;
    font-size: 1.5rem;
    transition: color var(--transition-speed), transform var(--transition-speed);
}

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

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 100px; /* Pill shape */
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.link-card:hover {
    background: var(--card-hover-bg);
    transform: scale(1.02);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lg);
}

.link-icon {
    font-size: 1.25rem;
    width: 24px;
    display: flex;
    justify-content: center;
    color: #64748b;
    transition: color var(--transition-speed);
}

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

.link-text {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #475569;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-speed);
    width: 24px;
    display: flex;
    justify-content: center;
    color: #64748b;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.footer {
    margin-top: 2rem;
    color: #94a3b8;
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.25rem;
    }
    
    .link-card {
        padding: 0.875rem 1.25rem;
    }
}
