:root {
            --accent: #e37317;
            --accent-rgb: 227, 115, 23;
            --bg-deep: #0a0a0c;
            --bg-surface: #121216;
            --bg-surface-elevated: #1a1a22;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --text-dark: #6b7280;
            --radius: 18px;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 顶部导航样式 */
        .route-nexus {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 12, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            width: 100%;
        }
        
        .proxy-tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .route-orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .core-sign {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-main);
            font-weight: 700;
            font-size: 1.25rem;
            min-width: 0;
        }

        .core {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .core img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .orbit-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }

        .orbit-path {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            padding: 6px 0;
            position: relative;
        }

        .orbit-path:hover,
        .orbit-path.active {
            color: var(--accent);
        }

        .orbit-path.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        /* 页面主要容器 */
        .proxy-mesh {
            width: 100%;
        }

        /* 第一模块：Hero 引导 */
        .flare-warp {
            padding: 90px 0;
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(227, 115, 23, 0.08) 0%, transparent 60%);
        }

        .peer-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .peer-hop {
            flex: 1 1 45%;
            min-width: 0;
        }

        .dial-ping {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(227, 115, 23, 0.1);
            border: 1px solid rgba(227, 115, 23, 0.2);
            color: var(--accent);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .flare-peak {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1px;
            color: #ffffff;
            margin-bottom: 24px;
            white-space: normal;
        }

        .flare-byte {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 36px;
        }

        .dial-hook {
            display: inline-block;
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            text-align: center;
            min-width: 140px;
        }

        .dial-hook-primary {
            background: var(--accent);
            color: #ffffff;
            box-shadow: 0 8px 24px rgba(227, 115, 23, 0.35);
            border: 1px solid transparent;
        }

        .dial-hook-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(227, 115, 23, 0.5);
        }

        .dial-hook:not(.dial-hook-primary) {
            background: var(--bg-surface);
            color: var(--text-main);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dial-hook:not(.dial-hook-primary):hover {
            background: var(--bg-surface-elevated);
            border-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* 状态微章交互盒 */
        .node-block {
            width: 100%;
            background: var(--bg-surface);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .node-block:hover {
            transform: translateY(-3px);
            border-color: rgba(227, 115, 23, 0.3);
        }

        /* 第二模块：系统代理未生效 */
        .peer-block {
            padding: 90px 0;
            background: var(--bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .peer-peak {
            font-size: 2rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 20px;
            white-space: normal;
        }

        .peer-byte {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .node-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .node-pool-hop {
            flex: 1 1 45%;
            min-width: 280px;
            background: var(--bg-surface-elevated);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        /* 第三模块：测速延迟为 -1 */
        .node-tunnel {
            padding: 90px 0;
            background: var(--bg-deep);
        }

        .node-peak {
            font-size: 2rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 20px;
            white-space: normal;
        }

        .node-byte {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        /* 第四模块：本地端口被占用 */
        .warp-abyss {
            padding: 90px 0;
            background: var(--bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* 页脚样式 */
        .edge-crypt {
            background: var(--bg-deep);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .route-orbit {
                height: auto;
                padding: 16px 0;
                flex-direction: column;
                gap: 16px;
            }
            .orbit-flow {
                justify-content: center;
                gap: 16px;
            }
            .peer-hop {
                flex: 1 1 100%;
            }
            .node-pool-hop {
                flex: 1 1 100%;
            }
            .flare-warp,
            .peer-block,
            .node-tunnel,
            .warp-abyss {
                padding: 60px 0;
            }
        }
    


                                @keyframes spin { 100% { transform: rotate(360deg); } }

.route-route-nexus {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.route-route-nexus,
.route-route-nexus *,
.route-route-nexus *::before,
.route-route-nexus *::after {
    box-sizing: border-box;
}

.route-route-nexus nav,
.route-route-nexus div,
.route-route-nexus section,
.route-route-nexus article,
.route-route-nexus aside,
.route-route-nexus p,
.route-route-nexus h1,
.route-route-nexus h2,
.route-route-nexus h3,
.route-route-nexus h4,
.route-route-nexus h5,
.route-route-nexus h6,
.route-route-nexus a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.route-route-nexus p,
.route-route-nexus h1,
.route-route-nexus h2,
.route-route-nexus h3,
.route-route-nexus h4,
.route-route-nexus h5,
.route-route-nexus h6 {
    text-decoration: none;
}

.route-route-nexus img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.route-route-nexus {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.route-route-nexus a.route-orbit-path {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.route-route-nexus a.route-orbit-path,
.route-route-nexus a.route-orbit-path:hover,
.route-route-nexus a.route-orbit-path:focus,
.route-route-nexus a.route-orbit-path:active,
.route-route-nexus a.route-orbit-path.active,
.route-route-nexus a.route-orbit-path[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.route-route-nexus .route-proxy-tunnel{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.route-route-nexus{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.route-route-nexus .route-route-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.route-route-nexus .route-core-sign{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #f3f4f6;
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.5px;
        }

.route-route-nexus .route-core-sign img{
            height: 36px;
            width: auto;
            display: block;
        }

.route-route-nexus .route-orbit-flow{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

.route-route-nexus .route-orbit-path{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 99px;
            transition: 0.25s ease;
            font-weight: 500;
        }

.route-route-nexus .route-orbit-path:hover{
            color: #f3f4f6;
            background: rgba(255, 255, 255, 0.05);
        }

.route-route-nexus .route-orbit-path.active{
            color: #ffffff;
            background: #e37317;
            box-shadow: 0 4px 12px rgba(227, 115, 23, 0.3);
        }

@media (max-width: 768px){.route-route-nexus .route-route-orbit{
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.route-route-nexus .route-orbit-flow{
                justify-content: center;
                width: 100%;
            }}

.route-route-nexus {
    background: rgb(10, 10, 12);
    background-image: none;
}

.crypt-abyss-edge {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.crypt-abyss-edge,
.crypt-abyss-edge *,
.crypt-abyss-edge *::before,
.crypt-abyss-edge *::after {
    box-sizing: border-box;
}

.crypt-abyss-edge nav,
.crypt-abyss-edge div,
.crypt-abyss-edge section,
.crypt-abyss-edge article,
.crypt-abyss-edge aside,
.crypt-abyss-edge p,
.crypt-abyss-edge h1,
.crypt-abyss-edge h2,
.crypt-abyss-edge h3,
.crypt-abyss-edge h4,
.crypt-abyss-edge h5,
.crypt-abyss-edge h6,
.crypt-abyss-edge a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.crypt-abyss-edge p,
.crypt-abyss-edge h1,
.crypt-abyss-edge h2,
.crypt-abyss-edge h3,
.crypt-abyss-edge h4,
.crypt-abyss-edge h5,
.crypt-abyss-edge h6 {
    text-decoration: none;
}

.crypt-abyss-edge img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.crypt-abyss-edge {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.crypt-abyss-edge a,
.crypt-abyss-edge a:hover,
.crypt-abyss-edge a:focus,
.crypt-abyss-edge a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.crypt-abyss-edge .crypt-proxy-tunnel{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.crypt-abyss-edge{
            background: #050507;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px 0;
            color: #9ca3af;
            font-size: 0.9rem;
        }

.crypt-abyss-edge .crypt-edge-grid{
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

.crypt-abyss-edge .crypt-edge-brand{
            max-width: 320px;
        }

.crypt-abyss-edge .crypt-edge-brand-peak{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
        }

.crypt-abyss-edge .crypt-edge-brand-byte{
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

.crypt-abyss-edge .crypt-edge-col-peak{
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.crypt-abyss-edge .crypt-edge-flow{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.crypt-abyss-edge .crypt-edge-path{
            color: #9ca3af;
            text-decoration: none;
            transition: 0.25s ease;
        }

.crypt-abyss-edge .crypt-edge-path:hover{
            color: #e37317;
            padding-left: 4px;
        }

.crypt-abyss-edge .crypt-edge-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 0.8rem;
            color: #6b7280;
        }

.crypt-abyss-edge .crypt-edge-bottom-paths{
            display: flex;
            gap: 24px;
        }

.crypt-abyss-edge .crypt-edge-bottom-paths a{
            color: #6b7280;
            text-decoration: none;
            transition: 0.25s ease;
        }

.crypt-abyss-edge .crypt-edge-bottom-paths a:hover{
            color: #9ca3af;
        }

@media (max-width: 768px){.crypt-abyss-edge .crypt-edge-grid{
                grid-template-columns: 1fr;
                gap: 30px;
            }

.crypt-abyss-edge .crypt-edge-brand{
                max-width: 100%;
            }}