.profile-categories {
    background: linear-gradient(180deg, #444 0%, #232323 100%);
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 18px;
    margin-bottom: 2.2rem;
}
/* Кнопки профиля как .category-link */
.profile-cat-btn {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 4px 16px;
    border-radius: 4px;
    background: none;
    border: none;
    transition: background 0.18s, color 0.18s;
    display: inline-block;
    margin: 0 0 10px 0;
    outline: none;
    position: relative;
}
.profile-cat-btn:hover, .profile-cat-btn.active, .profile-cat-btn[aria-selected="true"] {
    background: #b6d300;
    color: #232323;
    text-decoration: none;
}
.profile-cat-btn[aria-selected="false"] {
    color: #fff;
    background: none;
}
.profile-cat-btn:focus {
    outline: none;
}
@media (max-width: 600px) {
    .profile-categories {
        gap: 0 6px;
        padding: 10px 4px 6px 4px;
    }
    .profile-cat-btn {
        font-size: 1rem;
        padding: 4px 10px;
    }
}
