:root {
    --bg-color: #0f1115;        
    --text-color: #e2e8f0;      
    --text-muted: #94a3b8;       
    
    --card-bg: #1a1d24;          
    --card-border: #2d3139;      
    --card-hover-bg: #262b36;    
    --accent-color: #ffffff;     
    

    --radius-avatar: 50%;       
    --radius-button: 12px;       
}


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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 480px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sección de Perfil */
.profile {
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-avatar);
    background-color: #334155; 
    background-image: url('logo.jpg'); 
    background-size: cover;
    background-position: center;
    margin: 0 auto 16px auto;
    border: 2px solid var(--accent-color);
    overflow: hidden;
}

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

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.profile-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}


.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px; 
}


.link-card {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-button);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.link-card:hover {
    background-color: var(--card-hover-bg);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.footer {
    margin-top: auto;
    padding-top: 40px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
