        /* 基础页面样式 */
        body {
            line-height: 1.8;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            padding: 40px;
            color: #333;
            background-color: #f5f5f5;
        }

        .content-container {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- 核心：违禁词遮罩样式 --- */
        censor-tag {
            /* 1. 基础模糊效果 */
            display: inline-block;
            filter: blur(6px);
            
            /* 2. 核心防御：让文字本身透明，只显示阴影 */
            /* 这样即使系统试图通过“取消滤镜”来清晰显示，文字依然是透明的 */
            color: transparent !important;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
            
            /* 3. 禁止选中与交互 */
            user-select: none !important;
            -webkit-user-select: none !important;
            -webkit-touch-callout: none !important; /* 禁用 iOS 长按菜单 */
            pointer-events: none !important;        /* 禁止鼠标事件 */
            
            /* 4. 视觉辅助：增加一个淡淡的背景色块，增强“已打码”的视觉感 */
            background-color: rgba(0,0,0,0.05);
            border-radius: 4px;
            padding: 0 2px;
            transition: none !important; /* 强制禁用任何过渡动画 */
        }