
pt> (function () { function renderBanner() { if (document.getElementById("cookie-banner")) return; const style = document.createElement("style"); style.textContent = ` #cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#111;color:#fff;padding:16px;z-index:999999;font-family:Arial,sans-serif;box-shadow:0 -2px 10px rgba(0,0,0,.4)} #cookie-banner .inner{max-width:1200px;margin:auto;display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between} #cookie-banner p{margin:0;font-size:14px;line-height:1.5} #cookie-banner a{color:#f5c400;text-decoration:underline} #cookie-buttons{display:flex;gap:10px;flex-shrink:0} #cookie-buttons button{border:none;padding:8px 14px;border-radius:6px;cursor:pointer;font-weight:bold} #accept-all{background:#f5c400;color:#000} #reject-all{background:#444;color:#fff} `; document.head.appendChild(style); const banner = document.createElement("div"); banner.id = "cookie-banner"; banner.innerHTML = `
`; document.body.appendChild(banner); document.getElementById("accept-all").onclick = () => banner.remove(); document.getElementById("reject-all").onclick = () => banner.remove(); } const t = setInterval(() => { if (document.body) { clearInterval(t); renderBanner(); } }, 100); })();