local injectCSS = string.format([[
let css = '';
if (%s) css += '.player-info__server-number { display: none !important; }\n';
// ........
let styleTag = document.getElementById('arz_custom_hud_fix');
if (!styleTag) {
styleTag = document.createElement('style');
styleTag.id = 'arz_custom_hud_fix';
document.head.appendChild(styleTag);
}
styleTag.innerHTML = css;
]], ...)
evalanon(injectCSS)