`; document.body.prepend(botContent); }; // ======== INICIALIZAÇÃO ======== document.addEventListener('DOMContentLoaded', () => { if(isHuman) { new ContentGuard(); verifyIntegrity(); setInterval(verifyIntegrity, securityConfig.integrity.interval); } else { injectBotContent(); } monitorHoneypots(); }); // ======== CSS DINÂMICO ======== const securityCSS = ` [data-protected] { position: relative !important; pointer-events: none !important; } [data-protected]::after { content: "🔒 Conteúdo Protegido" !important; position: absolute !important; top: 0 !important; left: 0 !important; background: rgba(0,0,0,0.7) !important; color: white !important; padding: 5px !important; font-size: 0.8em !important; z-index: 9999 !important; } .sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }`; const style = document.createElement('style'); style.textContent = securityCSS; document.head.appendChild(style); })();