<script>
// ฟังก์ชันสำหรับปิด Pop-up
function closeModal() {
const modal = document.getElementById('checkersModal');
if (modal) {
modal.style.display = 'none';
}
}
// เมื่อหน้าเว็บโหลดเสร็จ
window.onload = function() {
// ผูกฟังก์ชัน closeModal เข้ากับปุ่มปิด
const closeBtn = document.querySelector('.close-button');
if (closeBtn) {
closeBtn.onclick = closeModal;
}
// ... (โค้ดสำหรับเปิด Pop-up อัตโนมัติ ควรอยู่ตรงนี้ด้วย) ...
};
</script>