window.addEventListener("load", function () {
setTimeout(function () {
const popup = document.createElement("div");
popup.setAttribute("id", "bellara-popup");
popup.innerHTML = `
`;
document.body.appendChild(popup);
const style = document.createElement("style");
style.textContent = `
#bellara-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
background: #fff;
border-radius: 12px;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
padding: 0;
max-width: 90%;
width: 300px;
overflow: hidden;
}
#bellara-popup img {
width: 100%;
display: block;
border-radius: 10px;
}
#bellara-close {
position: absolute;
top: -10px;
right: -10px;
background: red;
color: white;
border: none;
border-radius: 50%;
width: 25px;
height: 25px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
z-index: 10000;
}
`;
document.head.appendChild(style);
document.getElementById("bellara-close").addEventListener("click", function () {
popup.remove();
});
}, 2000);
});