/* Add custom Js code below */ let esm = "متجر جودا"; let link = "https://joudaa.com/"; document.addEventListener("DOMContentLoaded", function () { // 🔹 تغيير حقوق النشر let copyright = document.querySelector(".copyright-text p"); if (copyright) { copyright.innerHTML = ` صنع بإتقان على ${esm} | 2025 `; } // 🔹 إضافة فيديو يوتيوب كخلفية في البانر الأول let banner = document.querySelector('.my-banner-video'); // 👈 الكلاس اللي أضفته من سلة if (banner) { banner.style.position = "relative"; banner.style.overflow = "hidden"; let iframe = document.createElement("iframe"); iframe.src = "https://www.youtube.com/embed/vTMA8v8l9Us?autoplay=1&mute=1&loop=1&playlist=vTMA8v8l9Us&controls=0&modestbranding=1"; iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.style.position = "absolute"; iframe.style.top = "0"; iframe.style.left = "0"; iframe.style.border = "0"; iframe.style.zIndex = "-1"; banner.prepend(iframe); } });