setInterval(function() { document.title = "MeldonCord"; document.querySelectorAll("h1").forEach(function(e) { if (e.textContent.trim() === "Pulse Chat") e.textContent = "MeldonCord"; }); document.querySelectorAll("p").forEach(function(e) { if (e.textContent.includes("Pulse keeps things simple")) e.textContent = "Никаких ВПНов - меня заебали ваши лаги и баги!"; if (e.textContent.includes("No distractions")) e.textContent = ""; }); // Override the purple gradient panel document.querySelectorAll("div[style*='gradient']").forEach(function(e) { e.style.background = "linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1f1f1f 50%, #3a3a1a 75%, #1a1a1a 100%)"; e.style.backgroundSize = "400% 400%"; }); // Force custom favicon var link = document.querySelector("link[rel='icon']") || document.createElement('link'); link.rel = 'icon'; link.type = 'image/png'; link.href = '/favicon.png?v=4'; document.head.appendChild(link); var style = document.getElementById("meldoncord-style"); if (!style) { style = document.createElement("style"); style.id = "meldoncord-style"; style.textContent = ` :root { --primary: hsl(43,96%,56%) !important; --primary-foreground: hsl(0,0%,10%) !important; } div[style*='gradient'] { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1f1f1f 50%, #3a3a1a 75%, #1a1a1a 100%) 0% 0% / 400% 400% !important; animation: 15s ease 0s infinite normal none running gradient-shift !important; } `; document.head.appendChild(style); } }, 200);