/* GothamDev — protection contenu (dissuasive) */
html.copy-locked,
html.copy-locked body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html.copy-locked input,
html.copy-locked textarea,
html.copy-locked select,
html.copy-locked [contenteditable],
html.copy-locked .allow-copy,
html.copy-locked .allow-copy * {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

html.copy-locked img,
html.copy-locked video,
html.copy-locked canvas,
html.copy-locked svg.image-protect {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

#protect-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #111318;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f5f7fa;
  padding: 11px 20px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 99999;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  white-space: nowrap;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

#protect-toast svg {
  color: #ef4444;
  flex-shrink: 0;
}

#protect-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
