setTimeout(function() { createPopup(); }, 60000); function createPopup() { const overlay = document.createElement('div'); overlay.className = 'popup-overlay'; overlay.id = 'customerServicePopup'; overlay.style.cssText = ` position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; z-index: 99999; `; const container = document.createElement('div'); container.style.cssText = ` background: #fff; border-radius: 16px; width: 360px; overflow: hidden; position: relative; font-family: 'Cairo'; `; // Close button const closeBtn = document.createElement('button'); closeBtn.innerHTML = '×'; closeBtn.onclick = closePopup; closeBtn.style.cssText = ` position: absolute; top: 10px; left: 12px; background: none; border: none; font-size: 22px; cursor: pointer; color: red; line-height: 1; z-index: 1; `; // Blue banner const banner = document.createElement('div'); banner.style.cssText = ` background: #3f88f0; padding: 22px 18px 16px; text-align: center; `; banner.innerHTML = `
بعض نتآئج مقدم الخدمة
نتيجة 1 `; // Bottom section const bottom = document.createElement('div'); bottom.style.cssText = `padding: 18px 20px; text-align: center; direction: rtl;`; bottom.innerHTML = `

تواصل مع فريق العمل الآن وإبدأ رحلتك لعالم قوقل ادسنس 💰

تواصل مع فريق العمل الآن `; container.appendChild(closeBtn); container.appendChild(banner); container.appendChild(bottom); overlay.appendChild(container); document.body.appendChild(overlay); overlay.addEventListener('click', function(e) { if (e.target === overlay) closePopup(); }); } function closePopup() { const popup = document.getElementById('customerServicePopup'); if (popup) { popup.style.display = 'none'; popup.remove(); } }