    /* ==========================================
       全局变量与重置 (高端科技感深色主题)
       ========================================== */
    :root {
      --color-primary: #dc9700;
      --bg-header-footer: #3f2814;
      --bg-hf-hover: #482d19;
      --btn-normal: #dd9800;
      --btn-hover: #fed107;
      --bg-body: #0d0805;
      --bg-card: #18100a;
      --bg-card-hover: #22170f;
      --text-main: #e8ddd0;
      --text-muted: #a39587;
      --border-color: #352211;
      
      --color-success: #22c55e;
      --color-danger: #ef4444;
      --color-info: #3b82f6;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei", sans-serif;
      background-color: var(--bg-body);
      color: var(--text-main);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: var(--color-primary); transition: all 0.3s ease; }

    /* 居中核心容器，严格限制 1200px */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    /* ==========================================
       UI细节：按钮与交互
       ========================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .btn-large { padding: 14px 32px; font-size: 18px; }

    .btn-primary, .nav-cta, .btn-buy {
      background: linear-gradient(135deg, var(--btn-normal) 0%, #c28500 100%);
      color: #fff !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .btn-primary:hover, .nav-cta:hover, .btn-buy:hover {
      background: linear-gradient(135deg, var(--btn-hover) 0%, var(--btn-normal) 100%);
      color: #111 !important;
      text-shadow: none;
      box-shadow: 0 6px 15px rgba(221, 152, 0, 0.4);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1px solid var(--color-primary);
      color: var(--color-primary);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--color-primary);
      color: #fff !important;
      box-shadow: 0 6px 15px rgba(220, 151, 0, 0.3);
    }

    /* ==========================================
       导航栏 (Header)
       ========================================== */
    .nav {
      background-color: var(--bg-header-footer);
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
      height: 70px;
      display: flex;
      align-items: center;
    }

    .nav .container { display: flex; justify-content: space-between; align-items: center; }
    .nav-logo { font-size: 24px; font-weight: 700; color: var(--color-primary); letter-spacing: 1px; }
    .nav-logo span { color: #fff; font-weight: 400; margin-left: 4px; }
    .nav-links { list-style: none; display: flex; gap: 10px; }
    .nav-links a { color: #e8ddd0; padding: 8px 16px; border-radius: 6px; font-size: 15px; }
    .nav-links a:hover, .nav-links a.active { background-color: var(--bg-hf-hover); color: var(--color-primary); }
    .nav-toggle { display: none; background: transparent; border: none; color: var(--color-primary); font-size: 28px; cursor: pointer; }

    /* ==========================================
       内页首屏 Hero
       ========================================== */
    .hero-sm {
      padding: 60px 0;
      text-align: center;
      background: radial-gradient(circle at top, var(--bg-header-footer) 0%, var(--bg-body) 80%);
      border-bottom: 1px solid var(--border-color);
    }

    .hero-sm h1 { font-size: 40px; color: #fff; margin-bottom: 16px; letter-spacing: 1px; }
    .hero-sm p { font-size: 18px; color: var(--text-muted); margin: 0; }

    /* ==========================================
       通用排版与组件
       ========================================== */
    .section { padding: 60px 0; border-bottom: 1px solid var(--border-color); }
    .section h2 { font-size: 28px; color: #fff; margin-bottom: 24px; display: flex; align-items: center; }
    .section h3 { font-size: 20px; color: var(--color-primary); margin: 32px 0 16px; }
    .section p { margin-bottom: 16px; color: var(--text-muted); }

    .alert {
      border-radius: 8px;
      padding: 16px 24px;
      margin: 24px 0;
      display: flex;
      align-items: center;
      font-size: 15px;
      line-height: 1.8;
      text-align: justify;
    }
    
    .alert.success { 
      background: rgba(220, 151, 0, 0.05); 
      border: 1px solid rgba(220, 151, 0, 0.3); 
      color: var(--text-main); 
    }

    /* 表格设计 */
    .table-wrapper { overflow-x: auto; margin: 24px 0; border-radius: 12px; border: 1px solid var(--border-color); }
    .table-wrapper table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--bg-card); text-align: center; min-width: 800px;}
    .table-wrapper th, .table-wrapper td { padding: 16px 24px; border-bottom: 1px solid var(--border-color); white-space: nowrap;}
    .table-wrapper th { background: var(--bg-hf-hover); color: var(--color-primary); font-weight: 600; }
    .table-wrapper tr:hover { background: var(--bg-card-hover); }
    .btn-buy { padding: 8px 16px; font-size: 14px; }

    /* 策略卡片 (对称 3 列) */
    .tips-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin: 32px 0;
    }

    .tip-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 32px 24px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .tip-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    }
    
    .tip-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; width: 100%; height: 4px;
      background: var(--color-primary);
    }

    .tip-card h3 { font-size: 20px !important; color: #fff !important; margin-top: 0 !important; margin-bottom: 16px !important; }
    .tip-card p { font-size: 14px !important; margin-bottom: 16px !important; line-height: 1.8; color: var(--text-muted); }
    .tip-card ul { list-style: none; padding: 0; margin-bottom: 16px; }
    .tip-card ul li {
      position: relative;
      padding-left: 16px;
      margin-bottom: 12px;
      font-size: 14px;
      color: var(--text-main);
    }
    .tip-card ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--color-primary);
    }

    /* 独立 CTA 模块 */
    .cta-box {
      background: linear-gradient(135deg, var(--bg-hf-hover) 0%, var(--bg-card) 100%);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 40px;
      text-align: center;
      margin: 40px 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .cta-box h3 { color: var(--color-primary); margin: 0 0 16px; font-size: 24px; }
    .cta-box p { margin: 0 0 24px; color: var(--text-main); }

    /* FAQ 列表 */
    .faq-list { max-width: 900px; margin: 0 auto; }
    .faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px 32px; margin-bottom: 20px; transition: all 0.3s; }
    .faq-item:hover { border-color: rgba(220, 151, 0, 0.3); }
    .faq-q { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
    .faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin: 0; }
    .faq-a p { margin: 0; }

    /* 替代原侧边栏的底部网格扩展区 (对称 3 列) */
    .appendix-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding: 60px 0;
    }
    .appendix-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 32px; transition: all 0.3s ease; }
    .appendix-card:hover { border-color: var(--color-primary); transform: translateY(-4px); }
    .appendix-card h2 { font-size: 18px; color: #fff; margin-bottom: 12px; border-bottom: none; }
    .appendix-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
    .article-tag { font-size: 12px; padding: 2px 8px; border-radius: 4px; font-weight: bold; margin-bottom: 12px; display: inline-block; }
    .tag-guide { background: rgba(220, 151, 0, 0.2); color: var(--color-primary); }
    .tag-tips { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
    .tag-compare { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
    .article-meta { font-size: 12px; color: var(--color-primary); margin-top: 16px; font-weight: bold; }

    /* Footer */
    .footer { background: var(--bg-header-footer); padding: 60px 0 24px; border-top: 1px solid #5a3a1e; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-col h4 { color: var(--color-primary); font-size: 18px; margin-bottom: 24px; }
    .footer-col p { color: var(--text-muted); font-size: 14px; max-width: 400px; line-height: 1.8; text-align: justify; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a { color: var(--text-muted); font-size: 14px; }
    .footer-col ul a:hover { color: var(--color-primary); padding-left: 4px; }
    .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); font-size: 14px; }

    /* 响应式 */
    @media (max-width: 1024px) {
      .tips-grid, .appendix-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
	.toc ol,
	.overview-grid,
	.tips-grid,
	.article-grid, 
	.faq-grid, 
	.appendix-grid, 
	.series-grid, 
    .mistakes-grid, 
    .step-list,
	.pros-cons { grid-template-columns: 1fr; }
      .hero h1 { font-size: 32px; }
      .stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px 15px; }
      .plan-cards { grid-template-columns: 1fr; }
      .advantages-grid { grid-template-columns: 1fr; }
      .usecase-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: center; gap: 30px 20px; }
      .footer-col:nth-child(1) { grid-column: span 2; text-align: center; }
      .footer-col p { max-width: 100%; margin: 0 auto; }
      .hero-buttons { flex-direction: column; padding: 0 20px; }
      .nav-toggle { display: block; }
      .nav-links {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: var(--bg-header-footer); flex-direction: column; padding: 20px;
        text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
      }
      .nav-links.active { display: flex; }
      .nav-cta { display: none; }
    }

    .animate { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
    .animate.visible { opacity: 1; transform: translateY(0); }