
/* awal widget popup homepage*/
.popupgbr-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popupgbr-container {
  position: relative;
  background: #1692E1;
  border-radius: 20px;
  padding: 10px;
  animation: popupgbr-fadeIn 0.8s ease-out;
  box-shadow: 0 0 20px #1692E1;
}

.popupgbr-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  color: #1692E1;
  font-weight: bold;
  font-size: 0.8em;
  padding: 5px 10px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  z-index: 10001;
  pointer-events: none;
}

.popupgbr-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  animation: popupgbr-zoomPulse 3s infinite ease-in-out;
  box-shadow: 0 0 15px #1692E1;
  transition: transform 0.3s ease;
}
.popupgbr-image:hover { transform: scale(1.03); }

.popupgbr-countdown {
  color: white;
  text-align: center;
  margin-top: 10px;
}

.popupgbr-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #1692E1;
  color: white;
  border: none;
  font-size: 1.2em;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  animation: popupgbr-bounce 2s infinite;
  z-index: 10000;
}

@keyframes popupgbr-fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popupgbr-fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.8); }
}
@keyframes popupgbr-zoomPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes popupgbr-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .popupgbr-image { max-width: 90vw; }
  .popupgbr-close { top: -10px; right: -10px; }
}


/* akhir widget popup homepage*/