/* POPUP IMLEK */
.imlek-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px; /* jaga jarak di layar kecil */
}

/* CONTENT */
.imlek-popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 620px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* CLOSE BUTTON */
.imlek-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.imlek-close:hover {
  color: #dc3545;
}

/* =========================
   MOBILE ADJUSTMENT
   ========================= */
@media (max-width: 576px) {

  .imlek-popup {
    align-items: flex-start;
    padding-top: 60px; /* supaya tidak mentok atas */
  }

  .imlek-popup-content {
    padding: 26px 22px;
    border-radius: 14px;
    max-width: 100%;
  }

  .imlek-close {
    top: 10px;
    right: 12px;
    font-size: 30px; /* lebih enak disentuh */
  }

  .imlek-popup-content h2 {
    font-size: 1.2rem;
  }

  .imlek-popup-content h4 {
    font-size: 1rem;
  }

  .imlek-popup-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .imlek-popup-content button.btn {
    width: 100%;
    padding: 10px 0;
  }
}
