:root {
            --color-base: #0a0c10;
            --color-surface: #12151c;
            --color-surface-elevated: #1a1e27;
            --color-primary: #35a8ce;
            --color-primary-glow: rgba(53, 168, 206, 0.3);
            --color-text-main: #e2e8f0;
            --color-text-muted: #8ba1b7;
            --color-border: #232936;
            --radius-standard: 12px;
            --radius-sharp: 2px;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

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

        body {
            font-family: var(--font-family);
            background-color: var(--color-base);
            color: var(--color-text-main);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 统一文本换行规范 */
        .hash-break, .hash-muted {
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* ================= Navigation ================= */
        .peak-helm {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            z-index: 1000;
        }

        .mesh-radar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 5vw;
        }

        .sigil img {
            height: 32px;
            width: auto;
            display: block;
        }

        .cluster-routes {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .path-route {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            white-space: nowrap;
        }

        .path-route:hover,
        .path-route.active {
            color: var(--color-primary);
        }

        @media (max-width: 768px) {
            .mesh-radar {
                justify-content: center;
                flex-direction: column;
                gap: 1rem;
            }
            .cluster-routes {
                justify-content: center;
                gap: 1rem;
            }
        }

        /* ================= Global Structure ================= */
        .zone-global {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .tunnel-core {
            flex: 1;
            padding-top: 80px; /* Space for fixed header */
        }

        .zone-layout {
            max-width: 1280px;
            margin: 0 auto;
            padding: 5rem 5vw;
        }

        /* ================= Typography ================= */
        .apex-nexus {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            margin-bottom: 1.5rem;
            white-space: normal;
            letter-spacing: -0.02em;
        }

        .apex-relay {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .apex-node {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.75rem;
            white-space: normal;
        }

        .hash-break {
            font-size: 1.125rem;
            color: var(--color-text-main);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hash-muted {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
        }

        /* ================= Components ================= */
        .ping-jump {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--color-primary);
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            border-radius: var(--radius-standard);
            border: 1px solid transparent;
            box-shadow: 0 4px 15px var(--color-primary-glow);
            transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
            cursor: pointer;
        }

        .ping-jump:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(53, 168, 206, 0.5);
            background-color: #2b8cae;
        }

        .pod-data {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sharp);
            padding: 2.5rem 2rem;
            transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
            position: relative;
            overflow: hidden;
        }

        .pod-data:hover {
            transform: translateY(-5px);
            border-color: var(--color-primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .pod-data::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
            opacity: 0;
            transition: opacity 0.15s ease;
        }

        .pod-data:hover::before {
            opacity: 1;
        }

        .glyph-veil {
            margin-bottom: 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: var(--color-surface-elevated);
            border-radius: var(--radius-standard);
            border: 1px solid var(--color-border);
            color: var(--color-primary);
        }

        /* ================= Sections ================= */
        
        /* 1. Hero / Intro (<article>) */
        .portal-cloak {
            width: 100%;
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 6rem 5vw 4rem;
            background: radial-gradient(circle at 75% 40%, rgba(53, 168, 206, 0.12) 0%, transparent 50%),
                        linear-gradient(to bottom, #0f131a, #0a0c10);
            position: relative;
        }

        .veil-narrative {
            flex: 1 1 500px;
            min-width: 0;
            max-width: 650px;
            z-index: 2;
        }

        .veil-visual-portal {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .glyph-radar {
            width: 100%;
            max-width: 450px;
            height: auto;
            filter: drop-shadow(0 0 20px var(--color-primary-glow));
        }

        /* 2. Ping Optimization (<div>) */
        .veil-comparison {
            background: var(--color-base);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .cluster-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 4rem;
        }

        .cluster-metrics > * {
            flex: 1 1 320px;
            min-width: 0;
        }

        .band-ping {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            background: var(--color-surface-elevated);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-sharp);
            border-left: 4px solid var(--color-primary);
            margin-bottom: 1.5rem;
        }
        
        .hash-ping-val {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-primary);
            font-family: monospace;
        }

        /* 3. Console Support (<aside>) */
        .zone-console {
            background: radial-gradient(ellipse at center, #12151c 0%, #0a0c10 100%);
            position: relative;
        }

        .cluster-platforms {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .pod-platform {
            flex: 1 1 200px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem 1rem;
            background: rgba(18, 21, 28, 0.6);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-standard);
            backdrop-filter: blur(8px);
            transition: all 0.15s ease;
        }

        .pod-platform:hover {
            background: var(--color-surface-elevated);
            border-color: var(--color-text-muted);
            transform: translateY(-3px);
        }

        .pod-platform svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            fill: var(--color-text-muted);
            transition: fill 0.15s ease;
        }

        .pod-platform:hover svg {
            fill: var(--color-primary);
        }

        /* 4. Game Library (<section>) */
        .tunnel-closing {
            text-align: center;
        }

        .tunnel-closing .apex-relay {
            margin-bottom: 3rem;
        }

        .cluster-strands {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .band-strand {
            padding: 0.75rem 1.5rem;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 30px; /* Pill shape for tags */
            font-weight: 500;
            color: var(--color-text-main);
            transition: all 0.15s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .band-strand:hover {
            border-color: var(--color-primary);
            background: var(--color-surface-elevated);
            color: #ffffff;
        }

        /* ================= Footer ================= */
        .tail-anchor {
            background-color: var(--color-base);
            border-top: 1px solid var(--color-border);
            padding: 4rem 5vw;
            margin-top: auto;
        }

        .mesh-tail {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .hash-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .cluster-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .path-tail {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

        .path-tail:hover {
            color: var(--color-primary);
        }

        .hash-copyright {
            width: 100%;
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
            color: var(--color-text-muted);
            font-size: 0.85rem;
        }

.helm-peak-helm {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-main);
}
.helm-peak-helm,
.helm-peak-helm *,
.helm-peak-helm *::before,
.helm-peak-helm *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-peak-helm a.helm-path-route {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.helm-peak-helm a.helm-path-route,
.helm-peak-helm a.helm-path-route:hover,
.helm-peak-helm a.helm-path-route:focus,
.helm-peak-helm a.helm-path-route:active,
.helm-peak-helm a.helm-path-route.active,
.helm-peak-helm a.helm-path-route[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);
}

.helm-peak-helm{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
        }

.helm-peak-helm .helm-mesh-radar{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

.helm-peak-helm .helm-sigil{
            min-width: 0;
            width: 140px;
            flex-shrink: 0;
        }

.helm-peak-helm .helm-cluster-routes{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.helm-peak-helm .helm-path-route{
            font-size: 0.9rem;
            font-weight: 500;
            color: #8ba1b7;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

.helm-peak-helm .helm-path-route:hover, .helm-peak-helm .helm-path-route.active{
            color: #e2e8f0;
        }

.helm-peak-helm .helm-path-route::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #35a8ce;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

.helm-peak-helm .helm-path-route:hover::after, .helm-peak-helm .helm-path-route.active::after{
            width: 100%;
        }

@media (max-width: 768px){.helm-peak-helm{
                padding: 1rem;
            }

.helm-peak-helm .helm-sigil{
                margin-bottom: 1rem;
            }

.helm-peak-helm .helm-cluster-routes{
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }}

.helm-peak-helm {
    background: rgb(10, 12, 16);
    background-image: none;
}

.anchor-veil-global {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-main);
}
.anchor-veil-global,
.anchor-veil-global *,
.anchor-veil-global *::before,
.anchor-veil-global *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-veil-global .anchor-flex-cluster{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-veil-global .anchor-flex-strand{
            min-width: 0;
        }

.anchor-veil-global .anchor-hash-break{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.anchor-veil-global .anchor-hash-cn{
            word-break: keep-all;
            overflow-wrap: break-word;
        }

.anchor-veil-global{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

.anchor-veil-global .anchor-tunnel-core{
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8rem;
            padding-bottom: 8rem;
        }

.anchor-veil-global .anchor-zone-bound{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-veil-global .anchor-peak-helm{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
        }

.anchor-veil-global .anchor-mesh-radar{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

.anchor-veil-global .anchor-sigil{
            min-width: 0;
            width: 140px;
            flex-shrink: 0;
        }

.anchor-veil-global .anchor-cluster-routes{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.anchor-veil-global .anchor-path-route{
            font-size: 0.9rem;
            font-weight: 500;
            color: #8ba1b7;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

.anchor-veil-global .anchor-path-route:hover, .anchor-veil-global .anchor-path-route.active{
            color: #e2e8f0;
        }

.anchor-veil-global .anchor-path-route::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #35a8ce;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

.anchor-veil-global .anchor-path-route:hover::after, .anchor-veil-global .anchor-path-route.active::after{
            width: 100%;
        }

.anchor-veil-global .anchor-ping-jump{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: #35a8ce;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 12px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.15s ease;
            box-shadow: 0 4px 15px rgba(53, 168, 206, 0.3);
            white-space: normal;
        }

.anchor-veil-global .anchor-ping-jump:hover{
            background-color: #2b8ba8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(53, 168, 206, 0.4);
        }

.anchor-veil-global .anchor-ping-ghost{
            background-color: transparent;
            border-color: #232936;
            color: #e2e8f0;
            box-shadow: none;
        }

.anchor-veil-global .anchor-ping-ghost:hover{
            background-color: #1a1e27;
            border-color: #8ba1b7;
            box-shadow: none;
        }

.anchor-veil-global .anchor-portal-cloak{
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5vw 4rem;
            
            background: 
                radial-gradient(circle at 50% 30%, rgba(53, 168, 206, 0.15) 0%, transparent 60%),
                linear-gradient(to bottom, #0f131a, #0a0c10);
            overflow: hidden;
        }

.anchor-veil-global .anchor-portal-cloak::before{
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            z-index: 1;
        }

.anchor-veil-global .anchor-veil-nexus{
            position: relative;
            z-index: 2;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.anchor-veil-global .anchor-apex-nexus{
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            white-space: normal;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

.anchor-veil-global .anchor-hash-nexus{
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #8ba1b7;
            max-width: 700px;
            margin: 0 auto;
        }

.anchor-veil-global .anchor-zone-capability{
            position: relative;
        }

.anchor-veil-global .anchor-veil-matrix{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            align-items: start;
        }

.anchor-veil-global .anchor-cluster-narrative{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.anchor-veil-global .anchor-apex-chapter{
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
            font-size: 2.2rem;
            color: #fff;
            white-space: normal;
        }

.anchor-veil-global .anchor-cluster-panels{
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

.anchor-veil-global .anchor-pod-data{
            background: #12151c;
            border: 1px solid #232936;
            border-radius: 2px; 
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
            transition: border-color 0.15s ease;
        }

.anchor-veil-global .anchor-pod-data:hover{
            border-color: #35a8ce;
        }

.anchor-veil-global .anchor-glyph-metric{
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            fill: #35a8ce;
        }

.anchor-veil-global .anchor-lens-matrix{
            width: 100%;
            height: auto;
            border-radius: 2px;
            border: 1px solid #232936;
            opacity: 0.9;
            filter: grayscale(20%) contrast(1.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }

.anchor-veil-global .anchor-zone-context{
            background-color: #12151c;
            padding: 5rem 0;
            border-top: 1px solid #232936;
            border-bottom: 1px solid #232936;
        }

.anchor-veil-global .anchor-cluster-params{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

.anchor-veil-global .anchor-strand-param{
            padding-left: 1.5rem;
            border-left: 2px solid #232936;
            transition: border-color 0.15s ease;
        }

.anchor-veil-global .anchor-strand-param:hover{
            border-left-color: #35a8ce;
        }

.anchor-veil-global .anchor-apex-param{
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            white-space: normal;
        }

.anchor-veil-global .anchor-zone-gaming{
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            background: linear-gradient(135deg, #1a1e27 0%, #0a0c10 100%);
            border-radius: 12px;
            padding: 4rem;
            border: 1px solid #232936;
        }

.anchor-veil-global .anchor-veil-pricing{
            text-align: center;
        }

.anchor-veil-global .anchor-cluster-tiers{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

.anchor-veil-global .anchor-pod-tier{
            background: #12151c;
            border: 1px solid #232936;
            border-radius: 12px;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.15s ease;
        }

.anchor-veil-global .anchor-pod-tier:hover{
            transform: translateY(-8px);
        }

.anchor-veil-global .anchor-apex-price{
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin: 1rem 0;
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
        }

.anchor-veil-global .anchor-veil-acquire{
            padding-top: 2rem;
        }

.anchor-veil-global .anchor-cluster-devices{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin: 4rem 0;
        }

.anchor-veil-global .anchor-node-device{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 0.7;
            transition: opacity 0.15s ease;
            min-width: 100px;
        }

.anchor-veil-global .anchor-node-device:hover{
            opacity: 1;
        }

.anchor-veil-global .anchor-glyph-device{
            width: 64px;
            height: 64px;
            fill: #8ba1b7;
        }

.anchor-veil-global .anchor-node-device:hover .anchor-glyph-device{
            fill: #e2e8f0;
        }

.anchor-veil-global .anchor-tail-anchor{
            background-color: #050608;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 5vw;
        }

.anchor-veil-global .anchor-veil-tail{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
            max-width: 1280px;
            margin: 0 auto;
        }

.anchor-veil-global .anchor-apex-brand{
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
            white-space: normal;
        }

.anchor-veil-global .anchor-cluster-links{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.anchor-veil-global .anchor-path-tail{
            color: #8ba1b7;
            font-size: 0.95rem;
        }

.anchor-veil-global .anchor-path-tail:hover{
            color: #35a8ce;
        }

.anchor-veil-global .anchor-band-copyright{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: #8ba1b7;
            font-size: 0.85rem;
        }

@media (max-width: 1024px){.anchor-veil-global .anchor-portal-cloak{
                min-height: 80vh;
            }

.anchor-veil-global .anchor-veil-matrix{
                grid-template-columns: 1fr;
            }

.anchor-veil-global .anchor-zone-gaming{
                padding: 3rem 2rem;
            }}

@media (max-width: 768px){.anchor-veil-global .anchor-peak-helm{
                padding: 1rem;
            }

.anchor-veil-global .anchor-sigil{
                margin-bottom: 1rem;
            }

.anchor-veil-global .anchor-cluster-routes{
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }

.anchor-veil-global .anchor-portal-cloak{
                padding-top: 10rem;
            }

.anchor-veil-global .anchor-cluster-params, .anchor-veil-global .anchor-cluster-tiers{
                grid-template-columns: 1fr;
            }

.anchor-veil-global .anchor-cluster-devices{
                gap: 2rem;
            }}