/**
 * Content Protection — public styles (toast, notice, print mark).
 */
.cnp-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  background: #1c1c1c;
  color: #f5f5f5;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, sans-serif;
  border-radius: 6px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cnp-toast.cnp-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cnp-copyright-notice {
  margin: 16px 0;
  padding: 10px 12px;
  font: 13px/1.45 system-ui, -apple-system, Segoe UI, sans-serif;
  color: #444;
  background: #f3f3f3;
  border-left: 3px solid #888;
}

.cnp-print-mark {
  display: none;
}

@media print {
  .cnp-print-mark {
    display: block !important;
    position: fixed;
    top: 42%;
    left: 0;
    right: 0;
    text-align: center;
    font: 700 22px/1.3 system-ui, sans-serif;
    color: #000;
    opacity: 0.22;
    z-index: 999999;
    pointer-events: none;
  }

  .cnp-print-hide-images img {
    visibility: hidden !important;
  }

  .cnp-toast {
    display: none !important;
  }
}
