document.addEventListener("DOMContentLoaded", function () {
// Create a div for the sticky footer
const stickyFooter = document.createElement("div");
stickyFooter.id = "sticky-footer-ad";
stickyFooter.style.position = "fixed";
stickyFooter.style.bottom = "0";
stickyFooter.style.left = "0";
stickyFooter.style.width = "100%";
stickyFooter.style.backgroundColor = "#fff";
stickyFooter.style.boxShadow = "0 -2px 5px rgba(0,0,0,0.2)";
stickyFooter.style.zIndex = "1000";
stickyFooter.style.padding = "10px 0";
stickyFooter.style.textAlign = "center";
// Add AdSense code
stickyFooter.innerHTML = `
`;
document.body.appendChild(stickyFooter);
// Close button functionality
document.getElementById("close-footer-ad").addEventListener("click", function () {
stickyFooter.style.display = "none";
});
// Initialize AdSense
(adsbygoogle = window.adsbygoogle || []).push({});
});