/* Content protection (deterrence).
   Note: client-side measures can be bypassed; this is meant to reduce casual copying
   without hurting normal UX (selection, scrolling, accessibility). */

.ff-protect .ff-mediaStage img,
.ff-protect .ff-mediaStage video,
.ff-protect img,
.ff-protect video {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* Allow normal behavior in form fields and editable areas */
.ff-protect input,
.ff-protect textarea,
.ff-protect select,
.ff-protect [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Toast */
#ffProtectToast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 99999;
  transform: translateX(-50%) translateY(6px);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.2;
  background: rgba(0,0,0,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

#ffProtectToast.ffProtectToast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
