/**
 * Anti-Copy Protection Styles
 * Makes it harder to copy and reuse the landing page
 */

/* Disable text selection (but keep for SEO - no user-select: none on body) */
* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Disable image dragging */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Prevent image context menu on mobile */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Add watermark overlay (invisible but embedded in screenshots) */
body::before {
  content: "© ShutDown.st";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 120px;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  z-index: 999999;
  white-space: nowrap;
  user-select: none;
}

/* Protect code blocks and pre tags */
pre, code {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Add subtle branding in corners (visible in screenshots) */
body::after {
  content: "shutdown.st";
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 8px;
  color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 999998;
  user-select: none;
}

