/* 核心重置与设计基因：深色沉浸展示型 */
        :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;
            --border: rgba(255, 255, 255, 0.08);
            --radius: 18px;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
            --transition: 0.25s ease;
        }

        * {
            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;
        }

        /* 统一布局容器 */
        .proxy-tunnel {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* 极简与高质感导航 - Nexus Orbit */
        .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 var(--border);
        }

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

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

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

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

        .orbit-path {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 99px;
            transition: var(--transition);
            font-weight: 500;
        }

        .orbit-path:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.05);
        }

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

        /* 顶层主内容区 */
        .proxy-mesh {
            padding-top: 76px;
        }

        /* 1. 更懂你的Windows代理客户端 - Hero (mosaic_collage) */
        .flare-warp {
            padding: 80px 0 100px 0;
            position: relative;
            overflow: hidden;
        }

        .flare-warp::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, rgba(0,0,0,0) 70%);
            z-index: 0;
            pointer-events: none;
        }

        .flare-tunnel {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .flare-byte {
            max-width: 640px;
        }

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

        .flare-peak span {
            color: var(--accent);
            display: inline-block;
        }

        .flare-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.75;
        }

        .flare-lead {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            border-left: 3px solid var(--accent);
            padding-left: 16px;
        }

        .flare-ping-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .dial-hook {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }

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

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

        .dial-hook-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            border-color: var(--border);
        }

        .dial-hook-secondary:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        /* Mosaic Collage Grid Layout */
        .lens-mosaic {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(12, 1fr);
            height: 480px;
            position: relative;
        }

        .lens-hop {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            background: var(--bg-surface);
            transition: var(--transition);
        }

        .lens-hop:hover {
            transform: translateY(-5px);
            border-color: rgba(227, 115, 23, 0.4);
        }

        .lens-hop img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 拼贴网格定位 */
        .lens-hop-1 {
            grid-column: 1 / 8;
            grid-row: 1 / 7;
            z-index: 2;
        }

        .lens-hop-2 {
            grid-column: 7 / 13;
            grid-row: 3 / 10;
            z-index: 1;
        }

        .lens-hop-3 {
            grid-column: 2 / 7;
            grid-row: 7 / 13;
            z-index: 3;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
        }

        .lens-hop-3 svg {
            width: 36px;
            height: 36px;
            fill: var(--accent);
            margin-bottom: 12px;
        }

        .lens-hop-3 h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #ffffff;
        }

        .lens-hop-3 p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .lens-hop-4 {
            grid-column: 8 / 12;
            grid-row: 10 / 13;
            z-index: 2;
            background: rgba(227, 115, 23, 0.05);
            border: 1px dashed rgba(227, 115, 23, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            padding: 10px;
        }

        /* 2. 全协议支持与节点管理 - Feature Protocols */
        .proxy-protocols {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
            position: relative;
        }

        .peer-peak-pool {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .peer-sub {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: block;
        }

        .peer-tunnel-peak {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .peer-sub-byte {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .peer-mesh-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .peer-block {
            background: var(--bg-surface-elevated);
            border-radius: var(--radius);
            padding: 40px;
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .peer-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .peer-block:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-lg);
        }

        .peer-block:hover::before {
            transform: scaleX(1);
        }

        .peer-sign-box {
            width: 56px;
            height: 56px;
            background: rgba(227, 115, 23, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .peer-sign-box svg {
            width: 28px;
            height: 28px;
            fill: var(--accent);
        }

        .peer-block-peak {
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .peer-block-byte {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .peer-bullet-pool {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-top: 1px solid var(--border);
            padding-top: 20px;
        }

        .peer-bullet-hop {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-main);
        }

        .peer-bullet-hop svg {
            width: 16px;
            height: 16px;
            fill: var(--accent);
            flex-shrink: 0;
        }

        /* 3. 直观的测速与状态监控 - Feature Performance */
        .ray-tunnel {
            padding: 100px 0;
            background: var(--bg-deep);
        }

        .ray-flex-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .ray-flex-child {
            flex: 1;
            min-width: 320px;
        }

        .ray-peak {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 24px;
            line-height: 1.3;
        }

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

        .ray-status-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .ray-status-peer {
            background: var(--bg-surface);
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .ray-status-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .ray-status-flag {
            font-size: 0.9rem;
            color: var(--text-main);
            font-weight: 600;
        }

        .ray-media-mask {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            background: var(--bg-surface-elevated);
            position: relative;
        }

        .ray-media-mask img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .ray-media-mask:hover img {
            transform: scale(1.03);
        }

        /* 4. 灵活的智能路由分流 - Feature Routing */
        .warp-tunnel {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface-elevated) 100%);
        }

        .warp-flex-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
            flex-direction: row-reverse;
        }

        .warp-flex-child {
            flex: 1;
            min-width: 320px;
        }

        .warp-peak {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 24px;
            line-height: 1.3;
        }

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

        .warp-tag-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .warp-tag-hop {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 99px;
            font-size: 0.85rem;
            color: var(--text-main);
            font-weight: 500;
        }

        .warp-tag-hop-active {
            background: rgba(227, 115, 23, 0.15);
            border-color: rgba(227, 115, 23, 0.4);
            color: var(--accent);
        }

        .warp-media-mask {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            background: var(--bg-surface);
        }

        .warp-media-mask img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .warp-media-mask:hover img {
            transform: scale(1.03);
        }

        /* 5. 常见问题与故障排查 FAQ - Aside */
        .vault-tunnel {
            padding: 100px 0;
            background: var(--bg-deep);
        }

        .vault-peak-pool {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        .vault-peak {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .vault-byte {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .vault-faq-mesh {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .vault-faq-block {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: var(--transition);
        }

        .vault-faq-block[open] {
            border-color: rgba(227, 115, 23, 0.3);
            background: var(--bg-surface-elevated);
        }

        .vault-faq-summary {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            outline: none;
        }

        .vault-faq-summary::-webkit-details-marker {
            display: none;
        }

        .vault-faq-summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform 0.25s;
        }

        .vault-faq-block[open] .vault-faq-summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        .vault-faq-mask {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* 6. 站内主题导览与路径承接 - Mesh */
        .mesh-explore {
            padding: 80px 0 100px 0;
            background: linear-gradient(180deg, var(--bg-deep) 0%, #000000 100%);
            border-top: 1px solid var(--border);
        }

        .explore-peak-pool {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        .explore-peak {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .explore-byte {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .explore-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .explore-block {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        .explore-block:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .explore-block-peak {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .explore-block-peak svg {
            width: 20px;
            height: 20px;
            fill: var(--text-dark);
            transition: var(--transition);
        }

        .explore-block:hover .explore-block-peak svg {
            fill: var(--accent);
            transform: translateX(4px);
        }

        .explore-block-byte {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .explore-block-path {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* 极简质感页脚 - Crypt Abyss */
        .abyss-edge {
            background: #050507;
            border-top: 1px solid var(--border);
            padding: 80px 0 40px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

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

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

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

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

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

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

        .edge-path {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .edge-path:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .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: var(--text-dark);
        }

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

        .edge-bottom-paths a {
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .edge-bottom-paths a:hover {
            color: var(--text-muted);
        }

        /* 响应式媒体查询 */
        @media (max-width: 1024px) {
            .flare-tunnel {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .flare-byte {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .flare-ping-pool {
                justify-content: center;
            }

            .flare-lead {
                border-left: none;
                border-top: 2px solid var(--accent);
                padding-left: 0;
                padding-top: 16px;
            }

            .lens-mosaic {
                height: 400px;
                max-width: 600px;
                margin: 0 auto;
                width: 100%;
            }
        }

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

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

            .proxy-mesh {
                padding-top: 120px;
            }

            .ray-flex-mesh,
            .warp-flex-mesh {
                gap: 40px;
            }

            .edge-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

            .peer-block {
                padding: 30px;
            }
        }

.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%;
            }}