        :root {
            --primary: #0d9488;
            --primary-deep: #0f766e;
            --primary-dark: #115e59;
            --accent: #f97316;
            --accent-glow: #fb923c;
            --surface: #f8fafc;
            --surface-alt: #f0fdfa;
            --text-main: #1e293b;
            --text-soft: #475569;
            --text-muted: #94a3b8;
            --border-light: #e2e8f0;
            --border-subtle: #f1f5f9;
            --white: #ffffff;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
            --shadow-elevated: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.07);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 22px;
            --transition: 0.22s 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", "Noto Sans SC", sans-serif;
            color: var(--text-main);
            background: linear-gradient(170deg, #f0fdfa 0%, #f8fafc 30%, #fff7ed 70%, #fefce8 100%);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            font-size: 15px;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 22px;
        }
        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 var(--border-subtle);
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .nav-container {
            height: 64px;
        }
        .logo {
            font-size: 1.38rem;
            font-weight: 800;
            color: var(--primary-deep);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }
        .logo .rocket-icon {
            display: inline-block;
            font-size: 1.55rem;
            animation: hover-float 2.8s ease-in-out infinite;
        }
        @keyframes hover-float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        .logo span {
            color: var(--text-main);
            font-weight: 700;
        }
        nav ul {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        nav a {
            font-weight: 500;
            color: var(--text-soft);
            font-size: 0.9rem;
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width var(--transition);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        nav a:hover,
        nav a.active {
            color: var(--primary-deep);
        }
        .nav-cta {
            background: var(--primary);
            color: #fff !important;
            padding: 8px 18px !important;
            border-radius: 22px;
            font-weight: 600 !important;
            font-size: 0.86rem !important;
            transition: background var(--transition), transform var(--transition) !important;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }
        .nav-cta:hover {
            background: var(--primary-deep);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
        }
        .nav-cta::after {
            display: none !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-main);
            border-radius: 3px;
            transition: var(--transition);
        }

        main {
            flex: 1;
            padding: 130px 0 70px;
        }
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .page-tag {
            display: inline-block;
            padding: 5px 14px;
            background: #f0fdfa;
            color: var(--primary-deep);
            border-radius: 18px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .page-header h1 {
            font-size: 2.4rem;
            font-weight: 850;
            margin-bottom: 14px;
            letter-spacing: -0.6px;
            color: var(--text-main);
        }
        .page-header h1 .gradient-text {
            background: linear-gradient(135deg, #0d9488 0%, #0891b2 35%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-subtitle {
            font-size: 1.05rem;
            color: var(--text-soft);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* 节点类型卡片 */
        .protocol-grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 22px;
            margin-bottom: 50px;
        }
        .protocol-card-node {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px 18px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .protocol-card-node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity var(--transition);
        }
        .protocol-card-node:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-elevated);
            border-color: #ccfbf1;
        }
        .protocol-card-node:hover::before {
            opacity: 1;
        }
        .protocol-card-node .node-emoji {
            font-size: 2.4rem;
            margin-bottom: 10px;
        }
        .protocol-card-node h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 5px;
        }
        .protocol-card-node .node-speed {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .protocol-card-node .node-desc {
            font-size: 0.82rem;
            color: var(--text-soft);
            line-height: 1.5;
        }
        .badge-recommend {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 14px;
            letter-spacing: 0.4px;
        }

        /* 场景化推荐区块 */
        .scene-section {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 40px 28px;
            box-shadow: var(--shadow-card);
            margin-bottom: 50px;
            border: 1px solid var(--border-subtle);
        }
        .scene-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
        }
        .scene-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #f0fdfa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        .scene-header h2 {
            font-size: 1.7rem;
            font-weight: 750;
            color: var(--text-main);
        }
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .scene-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 20px;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
        }
        .scene-card:hover {
            border-color: #ccfbf1;
            box-shadow: var(--shadow-card);
        }
        .scene-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .scene-card p {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .scene-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag {
            background: #e6fffa;
            color: #0f766e;
            padding: 3px 12px;
            border-radius: 14px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .tag.orange {
            background: #fff7ed;
            color: #c2410c;
        }

        /* 测速排行 */
        .speed-rank {
            background: var(--surface-alt);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            margin-bottom: 50px;
        }
        .rank-table {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 700px;
            margin: 0 auto;
        }
        .rank-row {
            display: flex;
            align-items: center;
            background: #fff;
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-card);
            gap: 16px;
            transition: var(--transition);
        }
        .rank-row:hover {
            box-shadow: var(--shadow-elevated);
            transform: translateX(4px);
        }
        .rank-pos {
            font-weight: 800;
            font-size: 1.2rem;
            width: 32px;
            text-align: center;
            color: var(--primary-deep);
        }
        .rank-flag {
            font-size: 1.8rem;
        }
        .rank-info {
            flex: 1;
        }
        .rank-info .city {
            font-weight: 700;
            color: var(--text-main);
        }
        .rank-info .protocol {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .rank-latency {
            font-weight: 700;
            color: #10b981;
            font-size: 0.95rem;
        }

        /* GitHub入口 */
        .github-banner {
            background: #f0fdfa;
            border: 1px solid #99f6e4;
            border-radius: var(--radius);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 40px;
        }
        .github-banner p {
            font-weight: 600;
            color: #0f766e;
        }
        .github-banner a {
            background: var(--primary);
            color: #fff;
            padding: 10px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .github-banner a:hover {
            background: var(--primary-deep);
        }

        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 50px 0 18px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 34px;
            margin-bottom: 34px;
            border-bottom: 1px solid #1e293b;
            padding-bottom: 34px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .footer-brand p {
            line-height: 1.68;
            font-size: 0.87rem;
            max-width: 270px;
            color: #94a3b8;
        }
        .footer-col h4 {
            color: #e2e8f0;
            margin-bottom: 14px;
            font-size: 0.95rem;
            font-weight: 600;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col a {
            font-size: 0.86rem;
            color: #94a3b8;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
            font-size: 0.82rem;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 260px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 78px 28px 28px;
                gap: 18px;
                box-shadow: var(--shadow-elevated);
                transition: right var(--transition);
                z-index: 999;
            }
            nav ul.open {
                right: 0;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 22px;
            }
            .github-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.6rem;
            }
            .protocol-grid-cards {
                grid-template-columns: 1fr;
            }
            .scene-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .rank-row {
                flex-wrap: wrap;
            }
        }