        :root {
            --primary: #0A2540;
            --primary-light: #0E4D8C;
            --accent: #00C2A8;
            --accent-dark: #009B86;
            --cta: #FF7A1A;
            --cta-hover: #E56500;
            --bg: #F5F7FB;
            --text: #1A2B3C;
            --muted: #5A6B7C;
            --white: #ffffff;
            --footer-bg: #081426;
            --footer-text: rgba(255,255,255,0.75);
            --hero-gradient: linear-gradient(135deg, #0A2540 0%, #0E4D8C 55%, #00C2A8 130%);
            --card-shadow: 0 5px 18px rgba(10,37,64,0.08);
            --radius: 16px;
            --warning: #FFC107;
            --danger: #FF5252;
            --success: #4CAF50;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        header { background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(10,37,64,0.08); transition: all 0.3s; }
        header.scrolled { background: rgba(255,255,255,0.99); }
        nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary); font-size: 24px; font-weight: bold; }
        .logo img { height: 40px; }
        .logo span { color: var(--accent-dark); }
        .nav-links { display: flex; gap: 22px; list-style: none; }
        .nav-links a { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.3s; position: relative; font-size: 15px; }
        .nav-links a:hover, .nav-links a.active { color: var(--accent-dark); }
        .nav-links a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 2px; background: var(--accent); }
        .nav-right { display: flex; align-items: center; gap: 16px; }
        .lang-switch select { padding: 8px 28px 8px 12px; border: 1px solid #ddd; border-radius: 6px; background: white; cursor: pointer; color: var(--text); }
        .login-btn { padding: 8px 20px; background: var(--cta); color: white; border: none; border-radius: 6px; cursor: pointer; text-decoration: none; font-weight: 500; transition: background 0.3s; }
        .login-btn:hover { background: var(--cta-hover); }
        .mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--primary); }

        /* Hero 区域 */
        .hero { padding: 140px 0 80px; background: var(--hero-gradient); color: white; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(0,194,168,0.18) 0%, transparent 40%); }
        .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
        .hero-text h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.2; color: #fff; }
        .hero-text .sub { font-size: 19px; margin-bottom: 30px; opacity: 0.92; }
        .hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
        .hero-stat { text-align: center; }
        .hero-stat .number { font-size: 36px; font-weight: bold; display: block; color: #fff; }
        .hero-stat .label { font-size: 14px; opacity: 0.85; }
        .btn-primary { padding: 14px 32px; background: var(--cta); color: white; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.3s; animation: pulse 2s infinite; }
        .btn-primary:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,122,26,0.35); }

        @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,122,26,0.4); } 50% { box-shadow: 0 0 0 10px rgba(255,122,26,0); } }

        /* 通用 section 样式 */
        .section { padding: 80px 0; }
        .section-title { text-align: center; font-size: 34px; margin-bottom: 12px; color: var(--primary); }
        .section-subtitle { text-align: center; font-size: 17px; color: var(--muted); margin-bottom: 48px; }

        /* 创意版块1：全球连通性指数仪表板 */
        .connectivity-dashboard { background: white; }
        .dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
        .region-card { background: #F8FAFD; border-radius: var(--radius); padding: 28px 20px; text-align: center; border: 1px solid #E7EDF5; transition: all 0.3s; }
        .region-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--accent); }
        .region-name { font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
        .region-score { font-size: 42px; font-weight: bold; color: var(--accent-dark); margin-bottom: 8px; }
        .region-status { font-size: 14px; margin-bottom: 15px; }
        .status-excellent { color: var(--success); }
        .status-good { color: var(--accent-dark); }
        .status-fair { color: var(--warning); }
        .status-poor { color: var(--danger); }
        .progress-bar { background: #E0E7EF; height: 8px; border-radius: 4px; overflow: hidden; }
        .progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); transition: width 0.3s; }

        /* 创意版块2：每日网络态势报告 */
        .daily-report { background: linear-gradient(135deg, #EDF3FA 0%, #D9E8F5 100%); }
        .report-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .report-card { background: white; border-radius: var(--radius); padding: 25px; box-shadow: var(--card-shadow); transition: transform 0.3s; }
        .report-card:hover { transform: translateY(-5px); }
        .report-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .report-date { font-size: 13px; color: var(--muted); }
        .report-tag { background: #E0F2F1; color: var(--accent-dark); padding: 2px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }
        .report-title { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
        .report-desc { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
        .report-change { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: 14px; }
        .change-up { color: var(--success); }
        .change-down { color: var(--danger); }
        .change-flat { color: var(--warning); }

        /* 创意版块3：链路拥堵点与波动趋势 */
        .trend-analysis { background: white; }
        .trend-timeline { position: relative; max-width: 800px; margin: 0 auto; }
        .trend-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #E0E7EF; transform: translateX(-50%); }
        .trend-item { display: flex; justify-content: flex-end; padding-left: 50%; position: relative; margin-bottom: 40px; }
        .trend-item:nth-child(even) { justify-content: flex-start; padding-left: 0; padding-right: 50%; }
        .trend-content { width: calc(100% - 30px); background: #F8FAFD; padding: 20px; border-radius: var(--radius); box-shadow: var(--card-shadow); }
        .trend-date { font-size: 14px; color: var(--accent-dark); font-weight: 600; margin-bottom: 6px; }
        .trend-title { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
        .trend-desc { color: var(--muted); font-size: 15px; }
        .trend-item::after { content: ''; position: absolute; top: 20px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); transform: translateX(-50%); }

        /* 创意版块4：区域深度报告 */
        .deep-report { background: #F0F4FA; }
        .deep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
        .deep-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); transition: all 0.3s; }
        .deep-card:hover { transform: translateY(-5px); }
        .deep-header { background: var(--hero-gradient); color: white; padding: 20px; text-align: center; }
        .deep-header h3 { font-size: 22px; margin-bottom: 4px; }
        .deep-body { padding: 22px; }
        .deep-body ul { list-style: none; }
        .deep-body li { padding: 10px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px; color: var(--text); }
        .deep-body li:before { content: '📊'; color: var(--accent); font-weight: bold; }

        /* 创意版块5：数据驱动洞察 */
        .insights { background: white; }
        .insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
        .insight-card { background: #F8FAFD; border-radius: var(--radius); padding: 28px 20px; text-align: center; border: 1px solid #E7EDF5; transition: all 0.3s; }
        .insight-card:hover { border-color: var(--accent); box-shadow: var(--card-shadow); }
        .insight-icon { font-size: 36px; margin-bottom: 12px; }
        .insight-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .insight-card p { color: var(--muted); font-size: 14px; }

        /* 数据指标区 */
        .metrics-banner { background: var(--hero-gradient); color: white; padding: 60px 0; text-align: center; }
        .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
        .metric-item .metric-value { font-size: 40px; font-weight: bold; }
        .metric-item .metric-label { font-size: 14px; opacity: 0.9; }

        /* FAQ */
        .faq { padding: 80px 0; background: #F0F4FA; }
        .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 20px; margin-top: 20px; }
        .faq-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); }
        .faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; color: var(--primary); }
        .faq-question:hover { background: #F1F5FA; }
        .faq-question .arrow { transition: transform 0.3s; color: var(--accent-dark); }
        .faq-item.active .faq-question .arrow { transform: rotate(180deg); }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s; }
        .faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 800px; }
        .faq-answer p { color: var(--muted); line-height: 1.7; }

        /* 下载区域 */
        .download { padding: 80px 0; background: var(--hero-gradient); color: white; text-align: center; }
        .download h2 { font-size: 34px; margin-bottom: 14px; color: #fff; }
        .download p { font-size: 18px; margin-bottom: 36px; opacity: 0.9; }
        .download-platforms { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
        .download-btn { padding: 15px 28px; background: white; color: var(--primary); border-radius: 10px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
        .download-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .download-btn .icon { font-size: 24px; }

        /* Footer */
        footer { background: var(--footer-bg); color: white; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 36px; }
        .footer-col h3 { font-size: 18px; margin-bottom: 18px; color: var(--accent); }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: var(--footer-text); text-decoration: none; transition: color 0.3s; }
        .footer-col a:hover { color: white; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }
        .footer-bottom a { color: var(--footer-text); }
        #my-friend-links { margin-top: 20px; padding: 15px; background: rgba(255,255,255,0.05); border-radius: 8px; color: var(--footer-text); }
        #my-friend-links a { color: var(--footer-text); margin: 0 10px; text-decoration: none; }
        #my-friend-links a:hover { color: white; }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .hero-text h1 { font-size: 32px; }
            .hero-stats { gap: 20px; }
            .dashboard-grid, .report-grid, .deep-grid, .insight-grid, .faq-grid { grid-template-columns: 1fr; }
            .trend-item, .trend-item:nth-child(even) { padding-left: 30px; padding-right: 0; justify-content: flex-start; }
            .trend-timeline::before { left: 15px; }
            .trend-item::after { left: 15px; }
            .download-platforms { flex-direction: column; align-items: center; }
        }