/* === ancientfit-frontend/css/security.css === */

/* Temporary DevTools lock (blur/freeze) */
.devtools-open-temp * {
  filter: blur(14px) !important;
  pointer-events: none !important;
  user-select: none !important;
  opacity: 0.4 !important;
  transition: all 0.25s ease;
}

/* Permanent lock (cannot bypass) */
.devtools-open-perm * {
  filter: blur(20px) brightness(0.5) !important;
  pointer-events: none !important;
  user-select: none !important;
  opacity: 0.25 !important;
  transition: all 0.25s ease;
}

/* Screenshot attempt */
.screenshot-attempt * {
  filter: blur(20px) brightness(0.5) !important;
  pointer-events: none !important;
  transition: all 0.25s ease;
}

/* Disable user text selection globally */
body, html, * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}