/* ═══════════════════════════════════════════════════════
   POPUP RANDOM PROMO — Overlay tengah, gambar ramping
   ═══════════════════════════════════════════════════════ */

#popup-random {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.popup-inner {
  position: relative;
  max-width: 90vw;
}

#close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border: none;
  z-index: 10;
}

#random-gambar-popup img {
  max-width: 340px;
  width: auto;
  height: auto;
  max-height: 80vh;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

#random-gambar-popup a {
  display: none;
}

@media (max-width: 480px) {
  #random-gambar-popup img {
    max-width: 78vw;
    max-height: 75vh;
  }
}
