/* Custom Content Protection Notification */
.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(15, 15, 15, 0.95);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.custom-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.custom-notification i {
  color: var(--primary);
  font-size: 1.2rem;
}

.custom-notification p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}
