/* obscurity.css — pairs with obscurity.js */

/* Disable text selection on all non-interactive elements */
body.no-select *:not(input):not(textarea):not(select):not([contenteditable]) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Blur sensitive content when DevTools is detected open */
body.devtools-open #dashboard,
body.devtools-open #mainContent,
body.devtools-open .card,
body.devtools-open .portal-section {
  filter: blur(6px);
  pointer-events: none;
  transition: filter 0.3s ease;
}
