.user-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
}

.user-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.user-header-bg {
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    position: relative;
}

.user-avatar-container {
    position: absolute;
    top: 44px;
    left: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-content {
    padding: 36px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.user-identity {
    margin-bottom: 12px;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 2px;
    text-decoration: none;
    transition: color 0.2s;
}

.user-name:hover,
.user-login:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.user-login {
    font-size: 13px;
    color: var(--accent-secondary);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.user-bio {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.user-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    text-decoration: none;
    transition: transform 0.2s;
}

.stat-badge.company-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    color: white;
    border: none;
    font-weight: 600;
}

.stat-badge.company-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.stat-badge i {
    font-size: 14px;
}

.user-btn {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    background: var(--text-main);
    color: var(--bg-deep);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    display: block;
    cursor: pointer;
}

.user-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.featured-note {
    margin-top: 32px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.featured-note i {
    font-size: 20px;
    color: var(--accent-secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.featured-note p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}