
/* Overlay */
#exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 9999;
}

/* Popup */
#exit-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 420px;

  background: #fff;
  border-radius: 16px;
  padding: 14px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Close button */
#exit-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Banner */
#banner-area img {
  width: 100%;
  border-radius: 12px;
}

/* QRCode area */
#qr-code-area {
  display: flex;
  flex-direction: column;
  align-items: center;

  background: #fff;
  border-radius: 12px;
  padding: 12px;

  max-height: 80vh;
}

/* Final area */
#final-area {
  width: 100%;
  min-height: 200px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  text-align: center;

  background: #fff;
  border-radius: 12px;
}

#final-area p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

#final-area a {
  display: block;
  width: 100%;
  padding: 14px;

  border-radius: 12px;
  background: #06c755;

  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
