        :root {
            --primary: #A55EEA;
            --primary-dark: #7C3AED;
            --accent: #2BCBBA;
            --blue: #5F9DFF;
            --bg: #0B0B12;
            --surface: rgba(255,255,255,0.04);
            --surface2: rgba(255,255,255,0.07);
            --text: #F0F0F5;
            --text-muted: #8888A0;
            --border: rgba(255,255,255,0.08);
            --radius: 24px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.7;
        }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

        /* NAV (与首页一致) */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 0.9rem 3rem;
            display: flex; align-items: center; justify-content: space-between;
            backdrop-filter: blur(24px);
            background: rgba(11,11,18,0.85);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.4rem; font-weight: 950; text-decoration: none; color: var(--text); }
        .nav-logo img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
        .nav-logo .logo-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: var(--text); }
        .nav-links a.active { color: var(--primary); font-weight: 700; }
        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white; border: none; padding: 0.55rem 1.5rem; border-radius: 10px;
            font-weight: 700; cursor: pointer; font-size: 0.88rem; text-decoration: none;
            transition: all 0.2s;
        }
        .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(165,94,234,0.4); }

        /* HERO */
        .hero {
            min-height: 70vh;
            display: flex; align-items: center;
            padding: 7rem 3rem 3rem;
            max-width: 1300px; margin: 0 auto;
            gap: 4rem;
        }
        .hero-left { flex: 1; }
        .hero-right { flex: 1; display: flex; justify-content: center; align-items: center; }
        .hero-tag {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(165,94,234,0.12); border: 1px solid rgba(165,94,234,0.3);
            padding: 0.4rem 1.2rem; border-radius: 50px;
            font-size: 0.78rem; color: var(--primary); font-weight: 700;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 950; line-height: 1.1; margin-bottom: 1.25rem;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin-bottom: 2.5rem; line-height: 1.85; }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white; border: none; padding: 0.9rem 2.2rem; border-radius: 12px;
            font-weight: 700; font-size: 0.98rem; cursor: pointer; text-decoration: none;
            display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(165,94,234,0.45); }
        .btn-ghost {
            background: var(--surface2); color: var(--text); border: 1px solid var(--border);
            padding: 0.9rem 2.2rem; border-radius: 12px;
            font-weight: 600; font-size: 0.98rem; cursor: pointer; text-decoration: none;
            display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
        }
        .btn-ghost:hover { border-color: var(--primary); }

        /* 右侧视觉：地图卡片 */
        .hero-visual { position: relative; width: 100%; max-width: 450px; }
        .map-card {
            background: linear-gradient(135deg, rgba(165,94,234,0.1), rgba(43,203,186,0.05));
            border: 1px solid rgba(165,94,234,0.2);
            border-radius: 24px; padding: 2rem;
            position: relative; z-index: 2;
        }
        .map-card-title { font-size: 0.9rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; text-align: center; }
        .map-nodes { display: flex; flex-direction: column; gap: 0.8rem; }
        .map-node {
            display: flex; align-items: center; gap: 0.8rem;
            padding: 0.8rem 1rem; background: rgba(255,255,255,0.04);
            border: 1px solid var(--border); border-radius: 12px;
            text-decoration: none; color: var(--text); transition: all 0.3s;
        }
        .map-node:hover { border-color: var(--primary); background: rgba(165,94,234,0.08); }
        .map-node .icon { font-size: 1.5rem; }
        .map-node .info { flex: 1; }
        .map-node .name { font-weight: 700; font-size: 0.9rem; }
        .map-node .desc { font-size: 0.72rem; color: var(--text-muted); }
        .float-badge {
            position: absolute; background: var(--surface2);
            border: 1px solid rgba(43,203,186,0.3); border-radius: 16px; padding: 0.8rem 1.1rem;
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 0.82rem; font-weight: 700; color: var(--accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: float 3s ease-in-out infinite;
        }
        .float-badge.top { top: -20px; right: -20px; }
        .float-badge.bottom { bottom: -15px; left: -20px; animation-delay: -1.5s; }
        @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

        /* SECTION 通用 */
        .section { padding: 4rem 3rem; max-width: 1300px; margin: 0 auto; }
        .section-label { text-align: center; font-size: 0.78rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.5rem; }
        .section-title { text-align: center; font-size: 2.2rem; font-weight: 950; margin-bottom: 3rem; }

        /* 全站分类卡片 */
        .category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .category-card {
            background: var(--surface2); border: 1px solid var(--border); border-radius: 20px;
            padding: 2rem; transition: all 0.3s;
        }
        .category-card:hover { border-color: rgba(165,94,234,0.4); transform: translateY(-5px); }
        .category-icon { font-size: 2.5rem; margin-bottom: 1rem; }
        .category-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
        .category-card ul { list-style: none; }
        .category-card li { margin-bottom: 0.5rem; }
        .category-card a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
        .category-card a:hover { color: var(--primary); }
        .category-card a::before { content: '→ '; color: var(--primary); }

        /* 快速开始指南 */
        .quickstart-card {
            max-width: 800px; margin: 0 auto; background: var(--surface2); border: 1px solid var(--border);
            border-radius: 20px; padding: 2.5rem;
        }
        .quickstart-row { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
        .quickstart-step { text-align: center; flex: 1; min-width: 150px; }
        .quickstart-step .num {
            display: inline-block; width: 40px; height: 40px; border-radius: 50%;
            background: var(--primary); color: white; font-weight: 950; line-height: 40px;
            margin-bottom: 0.8rem;
        }
        .quickstart-step h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
        .quickstart-step p { color: var(--text-muted); font-size: 0.85rem; }

        /* 热门入口 */
        .popular-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
        .popular-link {
            background: var(--surface2); border: 1px solid var(--border); border-radius: 50px;
            padding: 0.8rem 1.5rem; text-decoration: none; color: var(--text); font-weight: 600;
            font-size: 0.9rem; transition: all 0.3s;
        }
        .popular-link:hover { border-color: var(--primary); color: var(--primary); }

        /* FOOTER (与首页一致) */
        footer { padding: 3rem; border-top: 1px solid var(--border); }
        .footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
        .footer-brand p { color: var(--text-muted); font-size: 0.86rem; margin-top: 0.75rem; line-height: 1.8; }
        .footer-col h4 { font-size: 0.87rem; font-weight: 800; margin-bottom: 1rem; }
        .footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.82rem; margin-bottom: 0.5rem; transition: color 0.3s; }
        .footer-col a:hover { color: var(--primary); }
        .footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 0.79rem; color: var(--text-muted); }

        @media (max-width: 1024px) {
            .hero { flex-direction: column; padding: 7rem 2rem 3rem; gap: 3rem; }
            .category-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-links { display: none; }
        }
        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .quickstart-row { flex-direction: column; }
        }