        :root {
            --blue-400: #60a5fa;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --violet-400: #a78bfa;
            --violet-500: #8b5cf6;
            --violet-600: #7c3aed;
            --amber-400: #fbbf24;
            --amber-500: #f59e0b;
            --rose-400: #fb7185;
            --rose-500: #f43f5e;
            --cyan-400: #22d3ee;
            --cyan-500: #06b6d4;
            --gradient-hero: linear-gradient(160deg, #0f172a 0%, #1a2740 25%, #0d1b33 50%, #0a1628 75%, #0f172a 100%);
            --gradient-ai: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
            --gradient-edge: linear-gradient(135deg, #059669 0%, #10b981 30%, #34d399 70%, #06b6d4 100%);
            --glow-blue: 0 0 40px rgba(59, 130, 246, 0.25);
            --glow-violet: 0 0 40px rgba(124, 58, 237, 0.25);
            --glow-emerald: 0 0 40px rgba(16, 185, 129, 0.2);
            --glow-amber: 0 0 40px rgba(245, 158, 11, 0.2);
            --glow-rose: 0 0 35px rgba(244, 63, 94, 0.18);
            --radius-sm: 10px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: #0f172a;
            color: #e2e8f0;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ========== HEADER ========== */
        .header {
            background: rgba(15, 23, 42, 0.88);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            z-index: 200;
            transition: var(--transition);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.3px;
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient-ai);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
            font-weight: 900;
            -webkit-text-fill-color: #fff;
            box-shadow: var(--glow-violet);
            position: relative;
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 14px;
            background: var(--gradient-ai);
            opacity: 0.35;
            z-index: -1;
            filter: blur(10px);
            animation: logoPulse 2.4s ease-in-out infinite;
        }
        @keyframes logoPulse {
            0%,
            100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.08);
            }
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .nav a {
            font-size: 14.5px;
            font-weight: 500;
            color: #cbd5e1;
            letter-spacing: 0.2px;
            position: relative;
            padding: 4px 0;
        }
        .nav a:hover {
            color: #ffffff;
        }
        .nav a.active {
            color: #ffffff;
            font-weight: 600;
        }
        .nav a.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-ai);
            border-radius: 2px;
        }
        .nav a.nav-cta {
            background: var(--gradient-ai);
            color: #fff;
            padding: 9px 22px;
            border-radius: 22px;
            font-weight: 600;
            font-size: 13.5px;
            letter-spacing: 0.3px;
            box-shadow: var(--glow-violet);
            transition: all 0.3s;
        }
        .nav a.nav-cta:hover {
            box-shadow: 0 0 50px rgba(124, 58, 237, 0.45);
            transform: translateY(-2px);
            color: #fff;
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 6px;
            z-index: 210;
        }
        .mobile-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #e2e8f0;
            border-radius: 4px;
            transition: 0.3s;
        }
        .mobile-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            background: var(--gradient-hero);
            padding: 56px 0 64px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -12%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
            animation: heroGlow 9s ease-in-out infinite;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -28%;
            left: -10%;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
            animation: heroGlow 11s ease-in-out infinite reverse;
        }
        @keyframes heroGlow {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(35px, -28px) scale(1.1);
            }
            66% {
                transform: translate(-18px, 20px) scale(0.92);
            }
        }
        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 12.5px;
            font-weight: 600;
            color: #6ee7b7;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(8px);
        }
        .page-hero .hero-badge .live-dot {
            width: 9px;
            height: 9px;
            background: #10b981;
            border-radius: 50%;
            animation: livePulse 1.2s infinite;
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(0.7);
            }
        }
        .page-hero h1 {
            font-size: 42px;
            font-weight: 900;
            line-height: 1.15;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.8px;
            position: relative;
            z-index: 1;
        }
        .page-hero h1 .gradient-text {
            background: var(--gradient-edge);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-hero .hero-sub {
            font-size: 16px;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 6px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.15px;
        }
        .page-hero .refresh-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #64748b;
            position: relative;
            z-index: 1;
            margin-top: 10px;
            letter-spacing: 0.2px;
        }
        .page-hero .refresh-indicator .refresh-dot {
            width: 6px;
            height: 6px;
            background: #34d399;
            border-radius: 50%;
            animation: livePulse 1.5s infinite;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 64px 0;
            position: relative;
        }
        .section-dark {
            background: #0a0f1a;
        }
        .section-alt {
            background: #0f172a;
        }
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 44px;
        }
        .section-header .tag {
            display: inline-block;
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #6ee7b7;
            margin-bottom: 10px;
        }
        .section-header h2 {
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .section-header h2 .gradient-text {
            background: var(--gradient-edge);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-header p {
            font-size: 15px;
            color: #94a3b8;
        }

        /* ========== 全球健康总览仪表盘 ========== */
        .dashboard-summary {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .dashboard-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 20px 16px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .dashboard-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: var(--glow-emerald);
            transform: translateY(-3px);
        }
        .dashboard-card .dash-icon {
            font-size: 24px;
            margin-bottom: 8px;
        }
        .dashboard-card .dash-value {
            font-size: 30px;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: -0.5px;
            line-height: 1;
        }
        .dashboard-card .dash-value.green {
            color: #34d399;
        }
        .dashboard-card .dash-value.amber {
            color: #fbbf24;
        }
        .dashboard-card .dash-label {
            font-size: 11.5px;
            color: #64748b;
            letter-spacing: 0.3px;
            margin-top: 4px;
        }
        .dashboard-card .dash-sub {
            font-size: 10px;
            color: #475569;
            margin-top: 2px;
        }

        /* ========== 节点卡片网格 ========== */
        .nodes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .node-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .node-card:hover {
            border-color: rgba(167, 139, 250, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transform: translateY(-4px);
        }
        .node-card .node-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }
        .node-card .node-location {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.2px;
        }
        .node-card .node-location .flag-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .node-card .node-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .node-card .node-status.online {
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
        }
        .node-card .node-status.busy {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
        }
        .node-card .node-status .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            display: inline-block;
            animation: livePulse 2s infinite;
        }
        .node-card .node-status.online .status-dot {
            background: #34d399;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
        }
        .node-card .node-status.busy .status-dot {
            background: #fbbf24;
            box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
        }
        .node-card .node-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .node-card .metric-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .node-card .metric-item .metric-label {
            font-size: 10px;
            color: #64748b;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .node-card .metric-item .metric-val {
            font-size: 15px;
            font-weight: 700;
            color: #e2e8f0;
            letter-spacing: -0.2px;
        }
        .node-card .metric-item .metric-val.good {
            color: #34d399;
        }
        .node-card .metric-item .metric-val.warn {
            color: #fbbf24;
        }
        .node-card .load-bar-wrap {
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            height: 6px;
            overflow: hidden;
            position: relative;
        }
        .node-card .load-bar-fill {
            height: 100%;
            border-radius: 6px;
            transition: width 0.6s ease;
            position: relative;
        }
        .node-card .load-bar-fill.low {
            background: linear-gradient(90deg, #10b981, #34d399);
        }
        .node-card .load-bar-fill.medium {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
        }
        .node-card .load-bar-fill.high {
            background: linear-gradient(90deg, #f43f5e, #fb7185);
            animation: barWarnPulse 1.5s infinite;
        }
        @keyframes barWarnPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        .node-card .speed-test-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.3px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #cbd5e1;
            transition: all 0.3s;
            width: 100%;
            justify-content: center;
            text-align: center;
        }
        .node-card .speed-test-btn:hover {
            background: rgba(16, 185, 129, 0.1);
            border-color: #34d399;
            color: #34d399;
            box-shadow: var(--glow-emerald);
        }
        .node-card .speed-test-btn.testing {
            background: rgba(245, 158, 11, 0.1);
            border-color: #fbbf24;
            color: #fbbf24;
            pointer-events: none;
        }
        .node-card .speed-test-btn.done {
            background: rgba(16, 185, 129, 0.1);
            border-color: #34d399;
            color: #34d399;
        }
        .node-card .speed-result {
            margin-top: 8px;
            font-size: 11px;
            color: #94a3b8;
            display: none;
            text-align: center;
        }
        .node-card .speed-result.show {
            display: block;
            animation: fadeInUp 0.35s ease;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== 测速工具面板 ========== */
        .speedtest-panel {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .speedtest-panel::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }
        .speedtest-panel .st-icon {
            font-size: 56px;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
            animation: speedIconFloat 3s ease-in-out infinite;
        }
        @keyframes speedIconFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-14px);
            }
        }
        .speedtest-panel h3 {
            font-size: 26px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -0.4px;
            position: relative;
            z-index: 1;
        }
        .speedtest-panel .st-sub {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .speedtest-panel .st-node-select {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }
        .speedtest-panel .st-node-chip {
            padding: 8px 18px;
            border-radius: 22px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.03);
            color: #cbd5e1;
            transition: all 0.3s;
            letter-spacing: 0.2px;
        }
        .speedtest-panel .st-node-chip:hover {
            border-color: rgba(16, 185, 129, 0.5);
            color: #34d399;
            box-shadow: var(--glow-emerald);
        }
        .speedtest-panel .st-node-chip.selected {
            background: rgba(16, 185, 129, 0.15);
            border-color: #34d399;
            color: #34d399;
            box-shadow: var(--glow-emerald);
            font-weight: 700;
        }
        .speedtest-panel .st-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 44px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.3px;
            cursor: pointer;
            background: var(--gradient-edge);
            color: #fff;
            border: none;
            transition: all 0.35s;
            box-shadow: var(--glow-emerald);
            position: relative;
            z-index: 1;
        }
        .speedtest-panel .st-btn:hover {
            box-shadow: 0 0 50px rgba(16, 185, 129, 0.45);
            transform: translateY(-3px);
        }
        .speedtest-panel .st-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }
        .speedtest-panel .st-progress-wrap {
            height: 6px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            overflow: hidden;
            margin-top: 16px;
            display: none;
            position: relative;
            z-index: 1;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        .speedtest-panel .st-progress-wrap.active {
            display: block;
        }
        .speedtest-panel .st-progress-bar {
            height: 100%;
            background: var(--gradient-edge);
            border-radius: 6px;
            width: 0%;
            transition: width 0.1s linear;
        }
        .speedtest-panel .st-result {
            margin-top: 16px;
            font-size: 15px;
            color: #e2e8f0;
            display: none;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.4s ease;
        }
        .speedtest-panel .st-result.show {
            display: block;
        }
        .speedtest-panel .st-result .result-big {
            font-size: 38px;
            font-weight: 900;
            color: #34d399;
            letter-spacing: -1px;
        }

        /* ========== 节点身份验证中心 ========== */
        .verify-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }
        .verify-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all 0.3s;
        }
        .verify-card:hover {
            border-color: rgba(167, 139, 250, 0.3);
            box-shadow: var(--glow-violet);
        }
        .verify-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }
        .verify-card .verify-sub {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 14px;
        }
        .verify-card .fingerprint-box {
            background: #070b14;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 16px 18px;
            font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
            font-size: 11px;
            color: #6ee7b7;
            word-break: break-all;
            line-height: 1.7;
            letter-spacing: 0.3px;
        }
        .verify-card .verify-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4px;
            background: rgba(16, 185, 129, 0.12);
            color: #34d399;
        }
        .verify-card .verify-badge .check-icon {
            font-size: 14px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: #0a0f1a;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .cta-box {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
        }
        .cta-box::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -16%;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-box .cta-text h2 {
            font-size: 26px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 6px;
            letter-spacing: -0.4px;
            position: relative;
            z-index: 1;
        }
        .cta-box .cta-text p {
            font-size: 14.5px;
            color: #94a3b8;
            position: relative;
            z-index: 1;
        }
        .cta-box .cta-btn {
            position: relative;
            z-index: 1;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--gradient-ai);
            color: #fff;
            padding: 14px 34px;
            border-radius: 28px;
            font-size: 15.5px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.3s;
            box-shadow: var(--glow-violet);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }
        .btn-primary:hover {
            box-shadow: 0 0 55px rgba(124, 58, 237, 0.5);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ========== 透明度数据版块 ========== */
        .transparency-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            text-align: center;
        }
        .trans-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 22px 16px;
            transition: all 0.3s;
        }
        .trans-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: var(--glow-emerald);
            transform: translateY(-3px);
        }
        .trans-card .trans-num {
            font-size: 34px;
            font-weight: 900;
            color: #34d399;
            letter-spacing: -0.5px;
        }
        .trans-card .trans-label {
            font-size: 12px;
            color: #64748b;
            letter-spacing: 0.3px;
            margin-top: 4px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #070b14;
            color: #94a3b8;
            padding: 52px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand .logo {
            margin-bottom: 12px;
            font-size: 20px;
        }
        .footer-brand .logo .logo-icon {
            background: var(--gradient-ai);
            -webkit-text-fill-color: #fff;
        }
        .footer-brand p {
            font-size: 13.5px;
            max-width: 280px;
            color: #64748b;
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul a {
            font-size: 13.5px;
            color: #64748b;
            transition: var(--transition);
        }
        .footer-col ul a:hover {
            color: #cbd5e1;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12.5px;
            color: #475569;
        }
        .footer-bottom .links {
            display: flex;
            gap: 18px;
        }
        .footer-bottom .links a {
            color: #475569;
            transition: var(--transition);
            font-size: 12.5px;
        }
        .footer-bottom .links a:hover {
            color: #94a3b8;
        }

        /* ========== 实时更新时间戳 ========== */
        .last-updated {
            text-align: center;
            font-size: 12px;
            color: #475569;
            margin-top: 8px;
            letter-spacing: 0.3px;
        }
        .last-updated .time-val {
            color: #94a3b8;
            font-weight: 600;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .dashboard-summary {
                grid-template-columns: repeat(3, 1fr);
            }
            .nodes-grid {
                grid-template-columns: 1fr 1fr;
            }
            .verify-grid {
                grid-template-columns: 1fr;
            }
            .transparency-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .page-hero h1 {
                font-size: 32px;
            }
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(15, 23, 42, 0.96);
                backdrop-filter: blur(20px);
                padding: 20px 24px;
                gap: 14px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
                z-index: 190;
            }
            .nav.open {
                display: flex;
            }
            .nav a.nav-cta {
                width: 100%;
                text-align: center;
            }
            .mobile-toggle {
                display: flex;
            }
            .page-hero h1 {
                font-size: 26px;
            }
            .page-hero {
                padding: 40px 0 44px;
            }
            .section {
                padding: 44px 0;
            }
            .section-header h2 {
                font-size: 24px;
            }
            .dashboard-summary {
                grid-template-columns: repeat(2, 1fr);
            }
            .nodes-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .transparency-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .cta-box {
                padding: 28px 18px;
                flex-direction: column;
                text-align: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .speedtest-panel {
                padding: 28px 18px;
            }
            .speedtest-panel .st-node-select {
                gap: 6px;
            }
            .speedtest-panel .st-node-chip {
                padding: 6px 12px;
                font-size: 11px;
            }
            .node-card {
                padding: 16px 14px;
            }
            .node-card .node-metrics {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 22px;
            }
            .page-hero .hero-sub {
                font-size: 13px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .dashboard-summary {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .dashboard-card {
                padding: 14px 10px;
            }
            .dashboard-card .dash-value {
                font-size: 22px;
            }
            .transparency-grid {
                grid-template-columns: 1fr;
            }
            .btn-primary {
                padding: 12px 22px;
                font-size: 14px;
            }
            .speedtest-panel .st-btn {
                padding: 12px 28px;
                font-size: 14px;
            }
            .node-card .node-location {
                font-size: 14px;
            }
        }