/* Links Page Styles */
body.links-page {
    background-color: #F8F8F8;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.links-container {
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    margin: 2rem auto;
}

.profile-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.links-profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.profile-section h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: #1a1a1a;
}

.links-bio {
    font-size: 1.1rem;
    color: #555;
    margin: 0.5rem 0 1.5rem;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #FD5526;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 85, 38, 0.15);
}

.link-card:hover::before {
    transform: scaleY(1);
}

.link-card i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #FD5526;
    width: 24px;
    text-align: center;
}

.link-card span {
    font-size: 1.1rem;
}

.links-footer {
    text-align: center;
    margin-top: 3rem;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .links-container {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .profile-section {
        margin-bottom: 2rem;
    }
    
    .links-profile-image {
        width: 130px;
        height: 130px;
    }
    
    .profile-section h1 {
        font-size: 1.6rem;
    }
    
    .links-bio {
        font-size: 1rem;
    }
    
    .link-card {
        padding: 0.9rem 1.2rem;
    }
    
    .link-card i {
        font-size: 1.3rem;
    }
    
    .link-card span {
        font-size: 1rem;
    }
}
