/* Default: Sembunyikan popup */
.popup-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.945);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Aktif hanya di mobile */
@media screen and (max-width: 767px) {
  .popup-banner {
    display: flex;
  }

  .popup-content {
    position: relative;
    border-radius: 14px;
    text-align: center;
    max-width: 90%;
  }

  .popup-content img {
    width: 100%;
    border-radius: 10px;
  }

  .btn-cta {
    display: inline-block;
    margin-top: 15px;
    background-color: #d72638;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
  }

  /* Tombol Close Bulat */
  .close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.945); /* Ubah warna latar di sini */
    color: #949494d2; /* Ubah warna ikon X di sini */
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
  }

  .close-btn:hover {
    background-color: rgba(255, 0, 0, 0.85);
  }
}
