document.addEventListener("DOMContentLoaded", function () { const footer = document.querySelector("footer"); // الفوتر if (footer) { const credit = document.createElement("div"); credit.style.textAlign = "center"; credit.style.marginTop = "15px"; credit.style.fontSize = "13px"; credit.innerHTML = ` Made with ❤ WIZFREELANCE `; footer.appendChild(credit); // تطبيق الخلفية على الأب بعد الإضافة credit.parentElement.style.backgroundColor = "var(--bottom-footer-bg)"; } });