﻿:root {
            --primary: rgb(48,209,88);
            --primary-hover: #2bb94d;
            --primary-light: rgba(48,209,88,0.1);
            --text-main: #111827;
            --text-muted: #6b7280;
            --bg-body: #f3f4f6;
            --bg-card: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius-md: 8px;
            --radius-lg: 16px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .header { background: var(--bg-card); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; letter-spacing: -0.5px; }
        .desktop-nav ul { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 16px; color: var(--text-main); padding: 8px 0; position: relative; }
        .desktop-nav a:hover { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
        .menu-toggle span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-card); z-index: 999; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
        .drawer-active .mobile-drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .mobile-drawer { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav ul { display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; font-size: 18px; font-weight: 500; padding: 10px; border-radius: var(--radius-md); }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

        
        .footer { background: #0f172a; color: #9ca3af; padding: 60px 0 30px; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
        .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #9ca3af; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; }

        
        .dl-header { background: #fff; padding: 60px 0; border-bottom: 1px solid var(--border-color); text-align: center; }
        .dl-icon { width: 80px; height: 80px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 20px; }
        .dl-title { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
        .dl-desc { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

        .dl-content { padding: 60px 0; }
        .warning-box { background: #fef2f2; border: 1px solid #fecaca; border-left: 4px solid #ef4444; padding: 20px; border-radius: var(--radius-md); margin-bottom: 40px; display: flex; gap: 15px; }
        .warning-icon { font-size: 24px; }
        .warning-text h4 { color: #b91c1c; margin-bottom: 5px; font-size: 18px; }
        .warning-text p { color: #7f1d1d; font-size: 14px; }

        .guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .guide-card { background: #fff; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
        .guide-card h3 { font-size: 22px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        .guide-card h3::before { content: ''; display: block; width: 6px; height: 24px; background: var(--primary); border-radius: 3px; }
        .step-list { margin-left: 20px; }
        .step-list li { position: relative; padding-left: 30px; margin-bottom: 20px; color: var(--text-muted); line-height: 1.6; }
        .step-list li::before { content: attr(data-step); position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--text-main); color: #fff; font-size: 12px; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        
        .btn-dl-action { display: inline-block; background: var(--primary); color: #fff; padding: 12px 30px; border-radius: 50px; font-weight: bold; font-size: 16px; margin-top: 20px; text-align: center; transition: 0.3s; box-shadow: 0 4px 14px var(--primary-light); }
        .btn-dl-action:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(48,209,88,0.3); }

        @media (max-width: 992px) {
            .guide-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .footer-grid { grid-template-columns: 1fr; }
            .dl-title { font-size: 28px; }
        }