:root {
  /* 定义秘密内容的背景色变量 */
  --secret-bg-color: hsl(3, 60%, 40%);
}

[data-theme="dark"] {
  /* 暗色模式下只需修改变量值 */
  --secret-bg-color: hsl(183, 60%, 40%);
}

.secret-content {
  background-color: var(--secret-bg-color);
  color: transparent;
  padding: 0 2px; 
  border-radius: 2px; 
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
  user-select: none;
  display: inline; 
}

.secret-content:hover {
  background-color: transparent;
  color: var(--text-color);
  opacity: 1; /* 透明度 */
  /* 悬停显现后允许选中文字 */
  user-select: auto;
}