/* Link-in-bio page styles */

.links-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 40px;
}

/* Profile section */
.links-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.links-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--content-bg);
    box-shadow: 0 4px 16px var(--shadow-medium);
    margin-bottom: 14px;
}

.links-name {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.links-bio {
    font-family: var(--font-playful);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Social icons row */
.links-socials {
    display: flex;
    gap: 16px;
    margin-top: 14px;
}

.links-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.links-social-icon:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.links-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Links list */
.links-list {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: var(--content-bg);
    border: 1.5px solid var(--secondary-bg);
    border-radius: var(--border-radius);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Footer */
.links-footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    text-align: center;
}

.links-footer a {
    color: inherit;
    text-decoration: none;
}

.links-footer a:hover {
    color: var(--accent-primary);
    opacity: 1;
}
