#exitPopupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#exitPopup {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

#exitPopup img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#popupClose {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}