/* ===== 核心品牌色彩系统 (绝对统一) ===== */
    :root {
      --bg-primary: #e4e0dc;
      --bg-secondary: #f2f0ed;
      --bg-card: #ffffff;
      --bg-header: #3f2814;
      --bg-footer: #25160a;
      
      --accent: #dc9700;
      --accent-hover: #f0a800;
      --accent-gradient: linear-gradient(135deg, #fed107, #dd9800);
      --accent-light: rgba(220, 151, 0, 0.1);
      
      --text-main: #111827;
      --text-secondary: #374151;
      --text-muted: #6b7280;
      --text-white: #ffffff;

      --border: #d1d5db;
      --border-light: #e5e7eb;
      
      --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
      --shadow-card: 0 10px 30px rgba(63,40,20,0.08);
      --shadow-hover: 0 15px 35px rgba(63,40,20,0.15);
      
      --radius-xl: 20px;
      --radius-lg: 12px;
      --radius-sm: 6px;
      
      --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
      --font-mono: "SF Mono", "Cascadia Code", Consolas, monospace;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-base); background: var(--bg-primary); color: var(--text-secondary); line-height: 1.7; -webkit-font-smoothing: antialiased; }
    a { color: var(--accent); text-decoration: none; transition: 0.3s; }
    a:hover { color: var(--bg-header); }
    ul, ol { list-style-position: inside; }

    /* ===== 统一导航 & 进度条 ===== */
    .nav { position: sticky; top: 0; background: var(--bg-header); border-bottom: 2px solid var(--accent); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
    .nav-logo span { color: var(--text-white); }
    .nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; }
    .nav-links a:hover, .nav-links a.active { color: var(--accent); }
    .nav-toggle { display: none; background: transparent; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
    
    #progress-container { position: sticky; top: 70px; left: 0; width: 100%; background: transparent; z-index: 999; }
    #progress-bar { height: 100%; width: 0%; background: var(--accent-gradient); }

    /* ===== 按钮系统 ===== */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: 0.3s; border: none; font-size: 1rem; text-align: center;}
    .btn-primary { background: var(--accent-gradient); color: var(--bg-header); box-shadow: 0 4px 10px rgba(220,151,0,0.3); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(220,151,0,0.4); color: var(--bg-header); }
    .btn-outline { background: transparent; color: var(--bg-header); border: 2px solid var(--bg-header); }
    .btn-outline:hover { background: var(--bg-header); color: var(--text-white); }
    .btn-green { background: #16a34a; color: white; }
    .btn-green:hover { background: #15803d; color: white; transform: translateY(-2px); }

    /* ===== Hero 首屏 ===== */
    .hero { background: var(--bg-header); color: var(--text-white); padding: 80px 24px 60px; text-align: center; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; left: 50%; top: -50px; transform: translateX(-50%); width: 800px; height: 300px; background: radial-gradient(ellipse, rgba(220,151,0,0.15) 0%, transparent 70%); pointer-events: none; }
    .hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; position: relative; z-index: 1; }
    .hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }

    /* 官方声明公告牌 */
    .official-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); padding: 24px 32px; border-radius: var(--radius-lg); font-size: 1.1rem; line-height: 1.8; margin: 30px auto 0; max-width: 800px; backdrop-filter: blur(5px); position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .official-badge .domain { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); letter-spacing: 1px; }

    /* ===== 沉浸式宽列容器 ===== */
    .reading-container { max-width: 900px; margin: 40px auto 80px; padding: 0 24px; position: relative; z-index: 10; }

    /* ===== 内联前置导航 (Bento TOC) ===== */
    .bento-toc { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 60px; }
    .toc-card { background: var(--bg-card); border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow-card); border: 1px solid var(--border-light); }
    .toc-card h3 { font-size: 1.2rem; color: var(--bg-header); margin-bottom: 16px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
    .toc-card h3::before { content: ''; width: 4px; height: 18px; background: var(--accent); border-radius: 4px; }
    .toc-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; padding: 0; }
    .toc-links a { color: var(--text-secondary); font-weight: 600; font-size: 0.95rem; display: block; padding: 8px 12px; background: var(--bg-secondary); border-radius: var(--radius-sm); transition: 0.3s; }
    .toc-links a:hover { background: var(--accent-light); color: var(--bg-header); transform: translateX(4px); }
    
    /* 快捷入口区块 */
    .quick-card { background: linear-gradient(135deg, var(--bg-header) 0%, #25160a 100%); color: var(--text-white); border-color: var(--bg-header); text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center;}
    .quick-card h3 { color: var(--accent); margin-bottom: 20px; }
    .quick-card h3::before { display: none; }

    /* ===== 正文区块 ===== */
    .main-section { background: var(--bg-card); border-radius: var(--radius-xl); padding: 45px; box-shadow: var(--shadow-card); border: 1px solid var(--border-light); margin-bottom: 40px; }
    .main-section h2 { font-size: 1.8rem; color: var(--bg-header); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 3px solid var(--bg-primary); }
    .main-section h3 { font-size: 1.3rem; margin: 32px 0 16px; color: var(--bg-header); font-weight: 800;}
    .main-section p { margin-bottom: 20px; font-size: 1.05rem; }

    /* 提示框系统 */
    .alert { padding: 20px; border-radius: var(--radius-lg); margin: 24px 0; font-size: 0.95rem; display: flex; gap: 16px; align-items: flex-start; }
    .alert-icon { font-size: 1.4rem; line-height: 1; }
    .alert.info { background: var(--bg-secondary); border-left: 4px solid var(--bg-header); color: var(--text-secondary); }
    .alert.warning { background: #fef8eb; border-left: 4px solid var(--accent); color: #926400; }
    .alert.danger { background: #fdf5f4; border-left: 4px solid #dc2626; color: #991b1b; }

    /* ===== 识别指南 Bento Grid ===== */
    .series-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
    .series-card { background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 20px; text-align: left; display: flex; flex-direction: column; transition: 0.3s; }
    .series-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
    .series-icon { font-size: 2rem; margin-bottom: 12px; }
    .series-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--bg-header); }
    .series-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

    /* 验证入口卡片 */
    .verify-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 24px 0; }
    .verify-item { display: flex; align-items: center; gap: 20px; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); background: var(--bg-secondary); }
    .verify-item .icon { font-size: 2rem; }
    .verify-item.pass { border-left: 5px solid #16a34a; }
    .verify-item.pass .domain { color: #16a34a; font-family: var(--font-mono); font-weight: 800; font-size: 1.1rem;}
    .verify-item.warn { border-left: 5px solid var(--accent); }
    .verify-item.warn .domain { color: var(--bg-header); font-family: var(--font-mono); font-weight: 800; font-size: 1.1rem;}
    .verify-item.fail { border-left: 5px solid #dc2626; }
    .verify-item.fail .domain { color: #dc2626; font-family: var(--font-mono); font-weight: 800; font-size: 1.1rem;}

    /* FAQ 手风琴 */
    .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
    .faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-secondary); transition: 0.3s; }
    .faq-q { padding: 16px 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); }
    .faq-q::after { content: '+'; font-size: 1.5rem; color: var(--text-muted); transition: 0.3s; }
    .faq-item.open { border-color: var(--accent); background: var(--bg-card); box-shadow: var(--shadow-soft); }
    .faq-item.open .faq-q { color: var(--accent); }
    .faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--accent); }
    .faq-a { max-height: 0; padding: 0 20px; color: var(--text-muted); transition: max-height 0.4s ease; overflow: hidden; line-height: 1.8;}
    .faq-item.open .faq-a { max-height: 300px; padding: 0 20px 20px; }

    /* ===== CTA 盒子 ===== */
    .cta-box { background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin: 40px 0; }
    .cta-box h3 { margin-top: 0; color: var(--bg-header); font-size: 1.4rem; margin-bottom: 12px; }
    .cta-box p { margin-bottom: 24px; color: var(--text-muted); }

    /* ===== 相关文章网格 (Bento) ===== */
    .article-section { max-width: 1000px; margin: 0 auto 80px; padding: 0 24px; }
    .article-section h2 { text-align: left; font-size: 1.8rem; color: var(--bg-header); margin-bottom: 24px; }
    .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .article-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--border-light); transition: 0.3s; display: block; position: relative; box-shadow: var(--shadow-soft); }
    .article-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-hover); }
    .article-card h3 { font-size: 1.15rem; color: var(--text-main); margin: 16px 0 12px; font-weight: 800; }
    .article-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
    .article-tag { position: absolute; top: 20px; right: 20px; font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; background: var(--bg-secondary); color: var(--bg-header); }

    /* ===== Footer (统一) ===== */
    .footer { background: var(--bg-footer); color: rgba(255,255,255,0.6); padding: 80px 0 30px; margin-top: 60px; }
    .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding: 0 24px; margin-bottom: 60px; }
    .footer-col h4 { color: var(--text-white); font-size: 1.1rem; margin-bottom: 24px; font-weight: 700; }
    .footer-col p { line-height: 1.8; font-size: 0.95rem; }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: 0.3s; }
    .footer-col a:hover { color: var(--accent); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; font-size: 0.85rem; }

    /* ===== 响应式 ===== */
    @media (max-width: 1024px) {
      .bento-toc { grid-template-columns: 1fr; }
      .article-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg-header); padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
      
      .hero { padding: 60px 24px; }
      .hero h1 { font-size: 2rem; }
      .official-badge .domain { font-size: 1.5rem; }
      
      .main-section { padding: 30px 20px; }
      .series-grid { grid-template-columns: 1fr; }
      .verify-item { flex-direction: column; text-align: center; gap: 10px; }
      
      .article-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    }
