.genre-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #1e2d3d 0%, #1b2838 100%);
    border: 1px solid #2a475e;
    border-radius: 6px;
    overflow: hidden
}

.genre-chip {
    flex: 1;
    font-size: 0.75rem;
    padding: 8px 6px;
    text-align: center;
    background: transparent;
    border: none;
    border-right: 1px solid #2a475e33;
    color: #8f98a0;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap
}

.genre-chip:last-child {
    border-right: none
}

.genre-chip:hover {
    background: rgba(102, 192, 244, 0.08);
    color: #c7d5e0
}

.genre-chip.active {
    background: linear-gradient(180deg, #66c0f4 0%, #4a9aca 100%);
    color: #1b2838;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2)
}
