/* ==========================================================================
           1. 核心变量 (继承自首页视觉家族)
           ========================================================================== */
        :root {
            --bg-core: #0a0b10;
            --bg-surface: #12141d;
            --bg-elevated: #1a1d27;
            --accent: #e8a514;
            --accent-hover: #ffc13b;
            --accent-dim: rgba(232, 165, 20, 0.15);
            --text-prime: #f3f4f6;
            --text-dim: #9ca3af;
            --border-subtle: rgba(255, 255, 255, 0.08);
            
            --radius-sm: 7px;
            --radius-md: 11px;
            --radius-lg: 13px;
            
            --tunnel-width: 1280px;
            --spacing-base: 1rem;
            --transition: 0.25s ease;
        }

        /* ==========================================================================
           2. 基础重置
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* 强制Flex子项不溢出 */
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-core);
            color: var(--text-prime);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        /* 强制文本换行 */
        .cipher, .topic {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .cipher {
            word-break: keep-all; /* 中文词组完整 */
        }
        .topic {
            white-space: normal;
        }

        /* ==========================================================================
           3. 导航栏样式 (强制复用并补充定义)
           ========================================================================== */
        .crown-veil {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .route-radar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--tunnel-width);
            padding: 1rem 1.5rem;
            margin: 0 auto;
        }

        .sigil {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            height: 32px;
        }

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

        .route-array {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }

        .route-wire {
            color: var(--text-prime);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            opacity: 0.8;
        }

        .route-wire:hover,
        .route-wire.active {
            opacity: 1;
            color: var(--accent);
        }

        .route-wire::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width var(--transition);
        }

        .route-wire:hover::after,
        .route-wire.active::after {
            width: 100%;
        }

        .pulse-dial {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            color: #000;
            font-weight: 700;
            border-radius: var(--radius-md);
            box-shadow: 0 4px 20px rgba(232, 165, 20, 0.2);
            transition: all var(--transition);
            cursor: pointer;
        }

        .pulse-dial:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232, 165, 20, 0.35);
        }

        @media (max-width: 992px) {
            .route-array {
                display: none; /* 移动端折叠菜单简易处理，保留核心按钮 */
            }
        }

        /* ==========================================================================
           4. 页面通用容器与排版
           ========================================================================== */
        .veil-tunnel {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            width: 100%;
        }

        .tunnel-inner {
            width: 100%;
            max-width: var(--tunnel-width);
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
        }

        .topic-prime {
            font-weight: 700;
            font-size: clamp(2.5rem, 4vw, 4rem);
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text-prime);
            margin-bottom: 1.5rem;
        }

        .topic-prime span {
            color: var(--accent);
        }

        .topic-node {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-prime);
        }

        .topic-hop {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-prime);
            margin-bottom: 0.75rem;
        }

        .cipher-flow {
            font-size: 1.125rem;
            color: var(--text-dim);
            max-width: 600px;
            margin-bottom: 2rem;
        }

        /* ==========================================================================
           5. Section 1: Hero - 告别高Ping (创意种子: split_diagonal)
           ========================================================================== */
        .portal-apex {
            position: relative;
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            background: var(--bg-core);
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }

        /* 创意对角线切割背景 */
        .portal-apex::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-core) 100%);
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 1;
            border-left: 2px solid var(--accent-dim);
        }

        /* 发光强调 */
        .portal-apex::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
        }

        .portal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .portal-cipher {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: center;
            padding-right: 2rem;
        }

        .portal-batch {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .pulse-ghost {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: var(--text-prime);
            font-weight: 600;
            padding: 0 32px;
            height: 52px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition);
            cursor: pointer;
        }

        .pulse-ghost:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(232, 165, 20, 0.05);
        }

        .portal-lens {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* 纯CSS构建的雷达动效徽章 */
        .radar-glyph {
            position: relative;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            border: 2px dashed var(--border-subtle);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .radar-glyph::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(from 0deg, transparent 70%, var(--accent) 100%);
            animation: spin 4s linear infinite;
            mask-image: radial-gradient(transparent 40%, black 60%);
            -webkit-mask-image: radial-gradient(transparent 40%, black 60%);
        }

        .radar-core {
            width: 120px;
            height: 120px;
            background: var(--bg-elevated);
            border: 1px solid var(--accent);
            border-radius: 50%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px var(--accent-dim);
            z-index: 3;
            color: var(--accent);
            font-weight: 700;
            font-size: 1.5rem;
            flex-direction: column;
        }

        .radar-core span {
            font-size: 0.8rem;
            color: var(--text-dim);
            font-weight: 400;
        }

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

        @media (max-width: 992px) {
            .portal-grid {
                grid-template-columns: 1fr;
            }
            .portal-apex::before {
                display: none;
            }
            .portal-cipher {
                text-align: center;
                align-items: center;
                padding-right: 0;
            }
            .cipher-flow {
                text-align: center;
            }
        }

        /* ==========================================================================
           6. Article: Ping Optimization - 极致路由
           ========================================================================== */
        .cloak-ping {
            background-color: var(--bg-surface);
            position: relative;
        }

        .cloak-ping::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
        }

        .batch-crown {
            width: 100%;
            text-align: center;
            margin-bottom: 4rem;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
        }

        .vault-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .vault-frame {
            background: var(--bg-elevated);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all var(--transition);
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

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

        .vault-frame:hover {
            transform: translateY(-5px);
            border-color: rgba(232, 165, 20, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .vault-frame:hover::before {
            transform: scaleX(1);
        }

        .glyph-box {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: rgba(232, 165, 20, 0.1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .glyph-box svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        /* ==========================================================================
           7. Div: Game Library - 畅玩全球3A大作
           ========================================================================== */
        .tunnel-games {
            background-color: var(--bg-core);
        }

        .band-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .packet-hop {
            background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            transition: all var(--transition);
        }

        .packet-hop:hover {
            background: var(--bg-elevated);
            border-color: var(--accent-dim);
        }

        .packet-hop.span-2 {
            grid-column: span 2;
        }

        @media (max-width: 768px) {
            .packet-hop.span-2 {
                grid-column: span 1;
            }
        }

        .packet-glyph {
            width: 64px;
            height: 64px;
            background: var(--bg-core);
            border-radius: 50%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-subtle);
        }
        
        .packet-glyph svg {
            width: 32px;
            height: 32px;
            fill: var(--text-prime);
        }

        .packet-cipher {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }

        /* ==========================================================================
           8. Aside: Console Support - 主机与掌机
           ========================================================================== */
        .veil-console {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
        }

        .console-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

        .console-visual {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }

        /* 几何徽章：NAT优化模型 */
        .nat-seal {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1;
            background: radial-gradient(circle at center, var(--bg-elevated) 0%, transparent 70%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .nat-ring {
            position: absolute;
            border: 1px solid var(--border-subtle);
            border-radius: 13px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            color: var(--text-dim);
            font-size: 0.85rem;
            background: var(--bg-core);
            padding: 0.5rem 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }

        .ring-a { top: 10%; left: 10%; }
        .ring-b { bottom: 10%; right: 10%; }
        .ring-c { top: 10%; right: 10%; border-color: var(--accent); color: var(--accent); }

        .nat-center {
            width: 160px;
            height: 80px;
            background: var(--accent);
            border-radius: var(--radius-md);
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 10px 30px var(--accent-dim);
        }

        .nat-center span {
            font-size: 0.75rem;
            opacity: 0.8;
            font-weight: 500;
        }

        .console-cipher {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }

        .check-array {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1.25rem;
            margin-top: 1.5rem;
            width: 100%;
        }

        .check-hop {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
        }

        .check-mark {
            margin-top: 4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(232, 165, 20, 0.15);
            color: var(--accent);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }
        
        .check-mark svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        /* ==========================================================================
           9. 页脚
           ========================================================================== */
        .anchor-root {
            background-color: var(--bg-core);
            border-top: 1px solid var(--border-subtle);
            padding: 4rem 1.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .anchor-grid {
            width: 100%;
            max-width: var(--tunnel-width);
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .anchor-brand h3 {
            font-size: 1.5rem;
            color: var(--text-prime);
            margin-bottom: 1rem;
        }

        .anchor-topic {
            font-size: 1.1rem;
            color: var(--text-prime);
            margin-bottom: 1.5rem;
        }

        .anchor-batch {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 0.8rem;
        }

        .anchor-wire {
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        .anchor-wire:hover {
            color: var(--accent);
        }

        .anchor-trail {
            width: 100%;
            max-width: var(--tunnel-width);
            border-top: 1px solid var(--border-subtle);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .anchor-grid {
                grid-template-columns: 1fr;
            }
        }

.route-crown-veil {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--cipher-prime);
}
.route-crown-veil,
.route-crown-veil *,
.route-crown-veil *::before,
.route-crown-veil *::after {
    box-sizing: border-box;
}

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

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

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

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

.route-crown-veil a.route-route-wire {
    --aisite-shell-nav-padding: 8px 0;
    --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-crown-veil a.route-route-wire,
.route-crown-veil a.route-route-wire:hover,
.route-crown-veil a.route-route-wire:focus,
.route-crown-veil a.route-route-wire:active,
.route-crown-veil a.route-route-wire.active,
.route-crown-veil a.route-route-wire[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-crown-veil{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.route-crown-veil .route-route-radar{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-crown-veil .route-route-radar > *{
            min-width: 0;
        }

.route-crown-veil .route-sigil{
            display: flex;
            align-items: center;
        }

.route-crown-veil .route-sigil img{
            height: 32px;
            width: auto;
        }

.route-crown-veil .route-route-array{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

.route-crown-veil .route-route-array > *{
            min-width: 0;
        }

.route-crown-veil .route-route-wire{
            font-size: 0.95rem;
            color: #9ca3af;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }

.route-crown-veil .route-route-wire:hover{
            color: #f3f4f6;
        }

.route-crown-veil .route-route-wire.active{
            color: #e8a514;
        }

.route-crown-veil .route-route-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e8a514;
            border-radius: 2px;
        }

.route-crown-veil .route-pulse-dial{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #e8a514;
            color: #000;
            font-weight: 700;
            font-size: 1.125rem;
            padding: 0 40px;
            height: 56px;
            border-radius: 11px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 20px rgba(232, 165, 20, 0.2);
            align-self: flex-start;
        }

.route-crown-veil .route-pulse-dial:hover{
            background-color: #ffc13b;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(232, 165, 20, 0.3);
        }

@media (max-width: 768px){.route-crown-veil .route-route-array{
                display: none; 
            }}

.route-crown-veil {
    background: rgb(10, 11, 16);
    background-image: none;
}

.anchor-trail-base {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--cipher-prime);
}
.anchor-trail-base,
.anchor-trail-base *,
.anchor-trail-base *::before,
.anchor-trail-base *::after {
    box-sizing: border-box;
}

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

.anchor-trail-base p,
.anchor-trail-base h1,
.anchor-trail-base h2,
.anchor-trail-base h3,
.anchor-trail-base h4,
.anchor-trail-base h5,
.anchor-trail-base h6 {
    text-decoration: none;
}

.anchor-trail-base img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.anchor-trail-base {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.anchor-trail-base a,
.anchor-trail-base a:hover,
.anchor-trail-base a:focus,
.anchor-trail-base a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.anchor-trail-base .anchor-tunnel-core{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
            width: 100%;
        }

.anchor-trail-base{
            background: #12141d;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px;
        }

.anchor-trail-base .anchor-trail-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

.anchor-trail-base .anchor-trail-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f3f4f6;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

.anchor-trail-base .anchor-trail-cipher{
            color: #9ca3af;
            max-width: 400px;
        }

.anchor-trail-base .anchor-trail-topic{
            font-size: 1rem;
            color: #f3f4f6;
            margin-bottom: 24px;
        }

.anchor-trail-base .anchor-trail-batch{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.anchor-trail-base .anchor-trail-wire{
            color: #9ca3af;
            font-size: 0.95rem;
        }

.anchor-trail-base .anchor-trail-wire:hover{
            color: #e8a514;
        }

.anchor-trail-base .anchor-trail-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }

.anchor-trail-base .anchor-trail-bottom > *{
            min-width: 0;
        }

@media (max-width: 1024px){.anchor-trail-base .anchor-trail-grid{
                grid-template-columns: 1fr 1fr;
            }}

@media (max-width: 768px){.anchor-trail-base .anchor-trail-grid{
                grid-template-columns: 1fr;
                gap: 40px;
            }}