/* whmcs-protect/assets/protect.css */
/* Sağ tık / seçim / sürükleme / yazdırma engeli */

html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img, svg, video, canvas {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  pointer-events: none; /* resim kaydetmeyi engeller */
}

* {
  -webkit-touch-callout: none; /* iOS uzun basma */
}

/* DevTools açılınca ekrana gelen overlay */
#antiInspectOverlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  color: #f5f5f5;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: system-ui, Arial, sans-serif;
  padding: 2rem;
}
#antiInspectOverlay.show { display: flex; }
#antiInspectOverlay .box { max-width: 680px; margin: 0 auto; }
#antiInspectOverlay h1 { font-size: 1.5rem; margin: 0 0 1rem; }
#antiInspectOverlay p { opacity: .85; line-height: 1.6; }

/* Blur arka plan */
.devtools-open *:not(#antiInspectOverlay) {
  filter: blur(4px);
  pointer-events: none !important;
}

/* Yazıcı çıktısı engeli */
@media print {
  html, body { display: none !important; }
}
