(function () {
function injectSiteBackground() {
// لا نكرر الحقن لو السكربت اشتغل أكثر من مرة
if (document.getElementById("siteBGAnim")) return;
const style = document.createElement("style");
style.id = "siteBGAnim";
style.textContent = `
@keyframes siteGradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
html, body {
min-height: 100%;
}
body {
background: linear-gradient(270deg, #0f172a, #1e293b, #020617) !important;
background-size: 400% 400% !important;
animation: siteGradient 15s ease infinite !important;
}
`;
document.head.appendChild(style);
}
// يشتغل حتى لو الكود انحط في الهيدر قبل تحميل الصفحة
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", injectSiteBackground);
} else {
injectSiteBackground();
}
})();