        :root {
            --bg-deep: #05050A;
            --bg-card: rgba(15, 23, 42, 0.55);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(59, 130, 246, 0.25);
            --blue-400: #60A5FA;
            --blue-500: #3B82F6;
            --blue-600: #2563EB;
            --text-primary: #EDEDF0;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --amber: #FBBF24;
            --emerald: #10B981;
            --red-400: #F87171;
            --radius-xl: 32px;
            --radius-2xl: 48px;
            --transition-fast: 0.2s;
            --transition-smooth: 0.25s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        .glow-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background: radial-gradient(circle at 20% 30%, rgba(37,99,235,0.07) 0%, rgba(5,5,10,0) 60%),
                        radial-gradient(circle at 75% 60%, rgba(6,182,212,0.04) 0%, rgba(5,5,10,0) 50%);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        /* 导航 */
        header {
            background: rgba(5, 5, 10, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(125deg, #FFFFFF, #3B82F6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            white-space: nowrap;
        }
        .logo .icon-rocket {
            display: inline-block;
            margin-right: 2px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #A1A1AA;
            transition: var(--transition-fast);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--blue-500);
        }

        /* 标题区 */
        .page-hero {
            padding: 70px 0 40px;
            text-align: center;
        }
        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #FFFFFF, #60A5FA);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .page-hero .sub {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto;
        }
        .highlight {
            background: linear-gradient(135deg, #60A5FA, #3B82F6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 60px 0 36px;
            letter-spacing: -0.01em;
        }

        /* 全球线路雷达图 */
        .radar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .radar-card {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 24px;
            padding: 24px 18px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition-smooth);
        }
        .radar-card:hover {
            border-color: var(--blue-500);
            background: rgba(30, 41, 59, 0.55);
            transform: translateY(-3px);
        }
        .radar-card .region-flag {
            font-size: 2.2rem;
            margin-bottom: 6px;
        }
        .radar-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .metric-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 4px 0;
        }
        .metric-row strong {
            color: #fff;
        }
        .status-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            margin-top: 8px;
            background: rgba(16,185,129,0.15);
            color: var(--emerald);
        }
        .status-badge.warn {
            background: rgba(251,191,36,0.15);
            color: var(--amber);
        }
        .status-badge.danger {
            background: rgba(248,113,113,0.15);
            color: var(--red-400);
        }

        /* 智能测速区 */
        .test-scene-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }
        .test-scene {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 28px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition-smooth);
        }
        .test-scene:hover {
            border-color: var(--blue-500);
            background: rgba(30, 41, 59, 0.55);
        }
        .test-scene .scene-emoji {
            font-size: 3rem;
            margin-bottom: 12px;
        }
        .test-scene h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        .test-scene p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .btn-test {
            background: linear-gradient(105deg, #3B82F6, #2563EB);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition-fast);
            box-shadow: 0 0 16px rgba(59,130,246,0.25);
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .btn-test:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 28px rgba(59,130,246,0.5);
        }
        .test-result {
            margin-top: 18px;
            background: rgba(0,0,0,0.25);
            border-radius: 16px;
            padding: 16px;
            font-size: 0.85rem;
            color: #B0B7C3;
            display: none;
            text-align: left;
        }
        .test-result.active {
            display: block;
        }
        .result-line {
            display: flex;
            justify-content: space-between;
            margin: 6px 0;
        }

        /* 线路健康中心 */
        .health-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .health-card {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 24px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .health-card .metric-big {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
        }
        .health-card .label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .mini-bar {
            height: 6px;
            background: rgba(59,130,246,0.2);
            border-radius: 6px;
            margin-top: 10px;
            overflow: hidden;
        }
        .mini-fill {
            height: 100%;
            background: linear-gradient(90deg, #3B82F6, #60A5FA);
            border-radius: 6px;
            width: 88%;
        }

        /* 今日热门线路排行榜 + 网络天气 */
        .weather-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 40px 0;
        }
        .leaderboard {
            flex: 1 1 300px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 24px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .leaderboard h4 {
            margin-bottom: 16px;
            font-size: 1.2rem;
        }
        .lb-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            font-size: 0.9rem;
        }
        .lb-item .region {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .lb-status {
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            background: rgba(16,185,129,0.15);
            color: var(--emerald);
        }
        .weather-widget {
            flex: 1 1 280px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 24px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }
        .weather-icon {
            font-size: 3rem;
            margin-bottom: 8px;
        }
        .weather-widget h4 {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .weather-list {
            text-align: left;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .weather-list div {
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 测速知识库 (SEO) */
        .seo-content {
            padding: 50px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            color: #B0B7C3;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .seo-content h2 {
            font-size: 1.7rem;
            color: #E2E8F0;
            margin: 28px 0 14px;
        }
        .seo-content h3 {
            font-size: 1.25rem;
            color: #CBD5E1;
            margin: 22px 0 10px;
        }
        .seo-content p {
            margin-bottom: 14px;
        }

        /* 网络优化工具箱 (下载入口创意) */
        .toolbox {
            background: linear-gradient(115deg, #0F172A, #1E293B);
            border-radius: 48px;
            padding: 40px 36px;
            margin: 50px 0;
            border: 1px solid rgba(59,130,246,0.3);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .toolbox h3 {
            width: 100%;
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        .toolbox p {
            width: 100%;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        .tool-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 24px;
            padding: 24px 18px;
            flex: 1 1 160px;
            border: 1px solid rgba(255,255,255,0.06);
            transition: var(--transition-smooth);
            text-decoration: none;
            color: var(--text-primary);
        }
        .tool-card:hover {
            border-color: var(--blue-500);
            transform: translateY(-3px);
        }
        .tool-card .tool-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .tool-card h5 {
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        .tool-card p {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* 页脚 */
        footer {
            background: #020308;
            padding: 50px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            font-size: 0.85rem;
            color: #6B7280;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #CBD5E1;
            margin-bottom: 12px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            color: #6B7280;
            text-decoration: none;
            margin-bottom: 6px;
            transition: var(--transition-fast);
            font-size: 0.82rem;
        }
        .footer-col a:hover {
            color: var(--blue-400);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            font-size: 0.78rem;
            color: #4B5563;
        }

        @media (max-width: 900px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            .nav-links {
                gap: 20px;
                margin-top: 10px;
                width: 100%;
                justify-content: center;
            }
            nav {
                flex-direction: column;
            }
            .radar-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
        @media (max-width: 500px) {
            .container {
                padding: 0 16px;
            }
            .page-hero h1 {
                font-size: 1.8rem;
            }
            .weather-row {
                flex-direction: column;
            }
        }