/* Disable text selection on body — competitors can't easily copy content
   Form inputs/textareas/selects remain usable for typing. */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
body img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
/* Re-enable image interaction for clickable images inside <a> tags */
a img {
  pointer-events: auto;
}
