/* Disable page scroll until accepted */
body.aup-locked {
  overflow: hidden;
}

/* Fullscreen overlay */
.aup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* AUP popup box */
.aup-box {
  width: 90%;
  max-width: 420px;
  background: #F7FF3C;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Links */
.aup-box a {
  color: #000;
  font-weight: bold;
}

/* Checkbox row */
.aup-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 14px;
}

/* Button */
#aup-accept-btn {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  border: none;
  background: #000;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: not-allowed;
  opacity: 0.5;
  transition: 0.3s;
}

/* When enabled */
#aup-accept-btn.enabled {
  cursor: pointer;
  opacity: 1;
}