
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        body {
            background-color: #121212;
            color: #e0e0e0;
            line-height: 1.6;
            padding: 20px;
            max-width: 900px;
            margin: 0 auto;
            min-height: 100vh;
            position: relative;
        }
        
        /* 顶部装饰 */
        /*
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff6b6b, #ffa726);
            z-index: 1000;
        }
        */
        /* 返回按钮 */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #1e1e1e;
            color: #ffa726;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 30px;
            margin-bottom: 30px;
            border: 1px solid #333;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .back-button:hover {
            background-color: #ffa726;
            color: #121212;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 167, 38, 0.2);
        }
        
        /* 标题样式 */
        h1 {
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 2px solid #333;
            position: relative;
        }
        
        h1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, transparent);
        }
        
        h2 {
            color: #ffffff;
            font-size: 1.8rem;
            margin: 40px 0 20px 0;
            padding-left: 15px;
            border-left: 4px solid #ffa726;
        }
        
        /* 警告卡片 */
        .warning-card {
            background-color: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .warning-card h3 {
            color: #ff6b6b;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* 内容样式 */
        p {
            margin-bottom: 15px;
            color: #b0b0b0;
            font-size: 1.05rem;
        }
        
        ol, ul {
            margin: 15px 0 25px 25px;
        }
        
        li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
            color: #d0d0d0;
        }
        
        ol li {
            counter-increment: list-counter;
            padding-left: 30px;
        }
        
        ol li::before {
            content: counter(list-counter) ".";
            color: #ffa726;
            font-weight: bold;
            position: absolute;
            left: 0;
            width: 25px;
            text-align: right;
        }
        
        ul li::before {
            content: '•';
            color: #ffa726;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        strong {
            color: #ffa726;
        }
        
        /* 链接样式 */
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }
        
        a:hover {
            color: #ffa726;
            text-decoration: underline;
        }
        
        /* 联系信息 */
        .contact-info {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid #333;
            border-left: 4px solid #4fc3f7;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #121212;
            padding: 12px 20px;
            border-radius: 8px;
            margin-top: 10px;
            border: 1px solid #333;
            color: #4fc3f7;
        }
        
        /* 更新日期 */
        .update-date {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        /* 强调图标 */
        .icon-highlight {
            color: #ffa726;
            margin-right: 8px;
        }
        
        /* 免责声明特定样式 */
        .disclaimer-note {
            background-color: rgba(255, 167, 38, 0.05);
            border: 1px solid rgba(255, 167, 38, 0.2);
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }
        /* 响应式设计 */
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .warning-card, .contact-info {
                padding: 15px;
            }
        }