[".nav-item__game .game-item",".game-list-container .game-holder"].forEach(sel=>{
document.querySelectorAll(sel).forEach(i=>{
let n=i.querySelector("h6,.game-name");
if(n&&["SV388 Cockfight","WS168","GA28"].includes(n.textContent.trim())) i.remove();
});
});