:root {
    --bg-color: #FCFCFC;
    --surface-color: #FFFFFF;
    --primary-color: #06599E;
    --accent-color: #01B1EC;
    --text-strong: #3A3D4E;
    --text-body: #5B5B5B;
    --border-color: #F0F0F0;
    --hover-bg: #F8FAFC;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.container {
    width: 100%;
    max-width: 680px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.6s ease-out forwards;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 1.5rem;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: rgba(1, 177, 236, 0.3);
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.profile-subtitle {
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 400;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text-strong);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background-color: var(--surface-color);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(6, 89, 158, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    margin-right: 1.25rem;
    transition: var(--transition);
}

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

.link-card:hover .link-icon {
    background-color: var(--primary-color);
    color: white;
}

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

/* 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);
    }
}

.footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9CA3AF;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Staggered animation for links */
.link-card:nth-child(1) { animation: fadeInUp 0.5s ease forwards 0.1s; opacity: 0; }
.link-card:nth-child(2) { animation: fadeInUp 0.5s ease forwards 0.15s; opacity: 0; }
.link-card:nth-child(3) { animation: fadeInUp 0.5s ease forwards 0.2s; opacity: 0; }
.link-card:nth-child(4) { animation: fadeInUp 0.5s ease forwards 0.25s; opacity: 0; }
.link-card:nth-child(5) { animation: fadeInUp 0.5s ease forwards 0.3s; opacity: 0; }
.link-card:nth-child(6) { animation: fadeInUp 0.5s ease forwards 0.35s; opacity: 0; }
.link-card:nth-child(7) { animation: fadeInUp 0.5s ease forwards 0.4s; opacity: 0; }
.link-card:nth-child(8) { animation: fadeInUp 0.5s ease forwards 0.45s; opacity: 0; }
.link-card:nth-child(9) { animation: fadeInUp 0.5s ease forwards 0.5s; opacity: 0; }
.link-card:nth-child(10) { animation: fadeInUp 0.5s ease forwards 0.55s; opacity: 0; }

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }
    .logo-container {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    .link-card {
        padding: 0.875rem 1rem;
    }
    .link-icon {
        width: 38px;
        height: 38px;
        margin-right: 1rem;
    }
    .link-icon svg {
        width: 20px;
        height: 20px;
    }
}
