/* ============================================================
 *  WEBSITE PROTECTION CSS — webytokens.com
 *  Include on every page to prevent selection, dragging, etc.
 * ============================================================ */

/* Disable text selection globally */
html, body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Disable image dragging */
img {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
  pointer-events: auto;
  -webkit-touch-callout: none !important;
}

/* Disable callout on long-press (iOS) */
* {
  -webkit-touch-callout: none !important;
}

/* Hide content when printing */
@media print {
  body {
    display: none !important;
  }
  html::after {
    content: "Printing is disabled. © Webytokens";
    display: block;
    text-align: center;
    margin-top: 40vh;
    font-size: 24px;
    font-family: system-ui, sans-serif;
    color: #333;
  }
}
