/**
 * 页面保护样式 — 配合 protect.js
 */
html.baohu-protected,
html.baohu-protected body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html.baohu-protected img,
html.baohu-protected a {
  -webkit-user-drag: none;
  user-drag: none;
}

html.baohu-protected input,
html.baohu-protected textarea,
html.baohu-protected [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

#baohu-shield {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: #0f1419;
  color: #e8eaed;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

#baohu-shield.is-active {
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: all;
  cursor: not-allowed;
}

#baohu-shield .baohu-shield-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#baohu-shield .baohu-shield-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  max-width: 320px;
  line-height: 1.6;
}

html.baohu-protected.baohu-blur body {
  filter: blur(8px);
  pointer-events: none;
}
