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

:root {
    --dark: #191624;
    --cream: #F4F1EA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark);
    background-image: url("../img/page_bg_a.png");
    background-size:cover;
    color: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.ia_l img{
  width: 60% !important;
  margin: 0 auto;

}

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

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

.profile {
    text-align: center;
    margin-bottom: 48px;
}

.avatar {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--cream) 0%, #d4cfc1 100%);

    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.avatar::after {
    content: '';
    background-image: url('../img/avatar.png');
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background-color: var(--dark);
    border-radius: 50%;
}

.name {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio {
    font-size: 15px;
    color: var(--cream);
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background-color: transparent;
    border: 1px solid rgba(244, 241, 234, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: var(--cream);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 241, 234, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link:hover {
    border-color: rgba(244, 241, 234, 0.3);
    transform: translateY(-2px);
}

.link:hover::before {
    opacity: 1;
}

.link:active {
    transform: translateY(0);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.link-icon svg {
    width: 100%;
    height: 100%;
}

.link-text {
    font-size: 16px;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(244, 241, 234, 0.1);
}

.footer p {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.5;
    font-weight: 300;
}

@media (max-width: 640px) {
    .name {
        font-size: 24px;
    }
    
    .bio {
        font-size: 14px;
    }
    
    .link {
        padding: 18px 24px;
    }
    
    .link-text {
        font-size: 15px;
    }
}