.feed-filter-bar {
    padding: 0;
    background: transparent;
    margin-bottom: 16px;
}

.feed-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.feed-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    position: relative;
}

.feed-tab svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feed-tab[data-filter="foryou"] svg {
    fill: currentColor;
    stroke: none;
}

.feed-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.7);
}

.feed-tab.active {
    color: #181a1c;
    background: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.feed-tab.active svg {
    stroke: #181a1c;
}

.feed-tab.active[data-filter="foryou"] svg {
    fill: #181a1c;
    stroke: none;
}

@media (max-width: 768px) {
    .feed-filter-bar {
        margin-bottom: 12px;
    }
    
    .feed-tabs {
        width: 100%;
        border-radius: 10px;
    }
    
    .feed-tab {
        flex: 1;
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .feed-tab {
        padding: 10px 12px;
        font-size: 13px;
        gap: 4px;
    }
    
    .feed-tab svg {
        width: 14px;
        height: 14px;
    }
}
