    /* ==========================================
       全局变量与重置 (高端科技感深色主题)
       ========================================== */
    :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-warning: #f59e0b;
    }

    * { 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-sm { padding: 8px 20px; font-size: 14px; }
    .btn-large { padding: 14px 32px; font-size: 18px; }

    .btn-primary, .nav-cta, .btn-buy, .btn-green {
      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, .btn-green: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; text-align: 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.info { 
      background: rgba(63, 40, 20, 0.4); 
      border-left: 4px solid var(--color-primary); 
      color: var(--text-main); 
    }

    /* 优势说明区块 (对称 4 列) */
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin: 32px 0;
    }

    .advantage-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: var(--bg-card);
      padding: 32px 24px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }

    .advantage-item:hover {
      border-color: rgba(220, 151, 0, 0.4);
      background: var(--bg-card-hover);
      transform: translateY(-4px);
    }

    .advantage-icon { font-size: 36px; line-height: 1; margin-bottom: 16px; }
    .advantage-item h3 { font-size: 18px !important; color: #fff !important; margin: 0 0 16px !important; }
    .advantage-item p { font-size: 14px !important; margin: 0 !important; line-height: 1.6; text-align: center !important; }

    /* 优缺点对比 (对称 2 列) */
    .pros-cons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin: 32px 0;
    }

    .pros, .cons {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 32px;
      transition: all 0.3s ease;
    }

    .pros:hover, .cons:hover { transform: translateY(-4px); }
    .pros { border-left: 4px solid var(--color-success); }
    .cons { border-left: 4px solid var(--color-warning); }
    
    .pros h4, .cons h4 { font-size: 20px; color: #fff; margin-bottom: 20px; }
    .pros ul, .cons ul { list-style: none; margin: 0; padding: 0; }
    .pros ul li, .cons ul li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 16px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      text-align: justify;
    }
    .pros ul li::before, .cons ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-size: 18px;
    }

    /* 自定义 5 步对称网格 (上3下2居中对齐) */
    .step-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin: 32px 0;
    }

    .step-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 32px;
      border-radius: 12px;
      transition: all 0.3s ease;
      width: calc(33.333% - 16px);
      display: flex;
      flex-direction: column;
    }
    
    .step-item:nth-child(4), .step-item:nth-child(5) {
      width: calc(50% - 12px);
      max-width: 500px;
    }

    .step-item:hover { border-color: rgba(220, 151, 0, 0.4); transform: translateY(-4px); }
    .step-item h3 { font-size: 18px !important; color: #fff !important; margin-top: 0 !important; margin-bottom: 16px !important; text-align: center; }
    .step-item p { text-align: justify; flex-grow: 1; }

    .step-screenshot {
      background: rgba(220, 151, 0, 0.05);
      border: 1px dashed rgba(220, 151, 0, 0.3);
      padding: 24px;
      text-align: center;
      color: var(--color-primary);
      margin-top: 20px;
      border-radius: 8px;
      font-size: 14px;
    }

    /* 表格设计 */
    .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); }
    .highlight-col { color: var(--color-primary); font-weight: bold; }

    /* 推荐套餐卡片 (对称 2 列) */
    .plan-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin: 32px auto;
      max-width: 900px;
    }

    .plan-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .plan-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--color-primary);
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    .plan-card.hot {
      background: linear-gradient(180deg, rgba(63, 40, 20, 0.4) 0%, var(--bg-card) 100%);
      border-color: rgba(220, 151, 0, 0.5);
    }

    .card-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-primary);
      color: #111;
      padding: 4px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: bold;
    }

    .plan-name { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 16px; }
    .plan-price { font-size: 32px; font-weight: 700; color: var(--color-primary); margin-bottom: 24px; }
    .plan-price span { font-size: 16px; color: var(--text-muted); font-weight: normal; }
    .plan-specs { list-style: none; margin-bottom: 32px; flex-grow: 1; text-align: left; padding: 0 20px; }
    .plan-specs li { position: relative; padding: 8px 0 8px 16px; font-size: 14px; color: var(--text-main); }
    .plan-specs li::before { content: "•"; position: absolute; left: 0; color: var(--color-primary); font-size: 18px; }
    .plan-btn { width: 100%; }

    /* 中部与独立 CTA 模块 */
    .mid-cta { background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 60px 0; text-align: center; }
    .mid-cta h2 { color: #fff; font-size: 28px; margin-bottom: 16px; }
    .mid-cta p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }

    .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); }
    .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* 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 h4 { font-size: 18px; color: #fff; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .appendix-card ul { list-style: none; padding: 0; line-height: 2.4; }
    .appendix-card ul li { color: var(--text-muted); font-size: 15px; }
    .appendix-card a { color: var(--text-muted); }
    .appendix-card a:hover { color: var(--color-primary); padding-left: 4px; }

    /* 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) {
      .advantages-grid { grid-template-columns: repeat(2, 1fr); }
      .step-item, .step-item:nth-child(4), .step-item:nth-child(5) { width: calc(50% - 12px); }
      .appendix-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
	.step-item, 
    .step-item:nth-child(4), 
    .step-item:nth-child(5) { width: 100%; max-width: 100%; }
	.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); }