body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* พื้นหลังทึบ */
.popup {
  display: none; /* ซ่อนก่อน */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* กล่องโฆษณา */
.popup-content {
    background: none; /* ไม่มีพื้นหลัง */
    width: 400px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.5s ease;
    position: relative;
}

/* ปุ่มปิด (X) */
.close-btnn {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 35px;
  font-weight: bold;
  color: hsl(0, 1%, 62%);
  cursor: pointer;
}
.close-btnn:hover {
  color: rgb(255, 249, 249);
}

/* รูปภาพ */
.popup-content img {
  width: 100%;
  border-radius: 10px;
}

/* ปุ่มกด */
.popup-content button {
  margin-top: 12px;
  padding: 10px 20px;
  background: #ffffff;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
.popup-content button:hover {
  background: #ffffff;
}

/* เอฟเฟกต์เด้งแบบนุ่มนวล */
@keyframes fadeIn {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
