/**
 * 源代码保护 CSS - 优化版
 * 提供CSS保护措施，防止查看源代码，同时保证正常浏览体验
 */

/* 只对特定元素禁止选择文本，以减少对用户体验的影响 */
.software-header .software-name,
.site-footer .disclaimer,
.banner p,
.logo-container h1 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 确保输入框和文本区域仍然可以选择 */
input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* 使用伪元素添加一些混淆，但不会干扰正常浏览 */
body::after {
    content: "";
    position: fixed;
    top: -5000px;
    left: -5000px;
    width: 1px;
    height: 1px;
    z-index: -1000;
}
