#popup-banner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: white;
  padding: 20px;
  border: 3px solid red;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  max-width: 90%;
  width: 600px;
  text-align: center;
}

.popup-content {
  position: relative;
}

.popup-image {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  font-weight: bold;
  color: red;
  cursor: pointer;
  background: none;
  border: none;
}


@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
