/* 视觉基因与变量系统 */
:root {
    --bg-dark: #0a0e0b;
    --bg-surface: #121814;
    --bg-surface-elevated: #1a231d;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --primary-color: #62c73a;
    --primary-color-dim: rgba(98, 199, 58, 0.15);
    --radius-soft: 18px;
    --radius-pill: 999px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition-speed: 0.15s ease;
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 8px 24px rgba(98, 199, 58, 0.2);
}

/* 基础重置与排版规范 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 强制安全排版规则 */
.byte-wrap {
    word-break: break-word;
    overflow-wrap: break-word;
}
.byte-zh {
    word-break: keep-all;
}
.head-wrap {
    white-space: normal;
}

/* 强制Flexbox/Grid规则 */
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-wrap > * {
    min-width: 0;
}

/* 布局壳层 */
.skin {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.root-vault {
    flex: 1;
    display: block;
    width: 100%;
    padding-top: 80px; /* 预留导航栏高度 */
}

/* --- 导航栏组件 (复用强制结构) --- */
.apex {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(10, 14, 11, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-subtle);
}

.bios {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
}

.crest {
    display: flex;
    align-items: center;
}
.crest img {
    height: 32px;
    width: auto;
    display: block;
}

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

.wire {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.wire:hover,
.wire:focus {
    color: var(--text-primary);
}

.wire.active {
    color: var(--primary-color);
}

/* --- 第一屏幕 (Acquire Ventoy) - 创意种子变体 --- */
.splash {
    max-width: 1320px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.splash-cluster {
    display: grid;
    /* 创意种子: HERO:asymmetric_grid */
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.splash-byte-vault {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.head-mega {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.head-mega span {
    color: var(--primary-color);
}

.byte-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.ignite-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-surface);
    border: var(--border-subtle);
    border-radius: var(--radius-soft);
    margin-top: 1rem;
}

.meta-entry {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-entry strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.meta-entry span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.splash-pixel-vault {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.splash-pixel-vault::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px rgba(98, 199, 58, 0.05);
    pointer-events: none;
    border-radius: 24px;
}

.pixel-fluid {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.02); /* 防止边缘漏色 */
}

/* --- 第二屏幕 (Download Matrix) --- */
.dock {
    max-width: 1320px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.head-core {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.byte-center {
    text-align: center;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

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

.chunk-iso {
    background: linear-gradient(145deg, var(--bg-surface-elevated), var(--bg-surface));
    border-radius: 24px;
    border: var(--border-subtle);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.chunk-iso:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(98, 199, 58, 0.3);
}

.glyph-vault {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--bg-dark);
    border: var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.glyph-vault svg {
    width: 28px;
    height: 28px;
}

.chunk-head {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chunk-byte {
    color: var(--text-secondary);
    flex: 1;
}

.plug {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    border: 1px solid transparent;
    transition: all var(--transition-speed);
    cursor: pointer;
    width: 100%;
}

.plug:hover,
.plug:focus {
    background-color: #73d94b;
    box-shadow: 0 12px 30px rgba(98, 199, 58, 0.4);
    transform: scale(1.02);
}

.plug-alt {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.plug-alt:hover,
.plug-alt:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
    box-shadow: none;
}

/* --- 第三屏幕 (Guide - 混用 aside 容器) --- */
.vault-highlight {
    max-width: 1320px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.highlight-skin {
    background: var(--bg-surface);
    border-radius: 32px;
    border: var(--border-subtle);
    padding: 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.highlight-skin::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color-dim) 0%, transparent 60%);
    pointer-events: none;
}

.highlight-byte-vault {
    position: relative;
    z-index: 1;
}

.disk-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.disk-chunk {
    background: var(--bg-dark);
    border: var(--border-subtle);
    border-radius: var(--radius-soft);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.disk-chunk.active {
    border-color: var(--primary-color);
    background: linear-gradient(90deg, var(--bg-dark), rgba(98, 199, 58, 0.05));
}

.disk-chunk.active::after {
    content: '更新区域';
    position: absolute;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(98, 199, 58, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.disk-chunk-head {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.disk-chunk-byte {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- 第四屏幕 (Preview - 混用 div 容器) --- */
.skin-stage {
    max-width: 1320px;
    margin: 4rem auto 8rem auto;
    padding: 0 2rem;
}

.stage-skin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.stage-head-vault {
    text-align: center;
    max-width: 680px;
}

.pixel-stage {
    width: 100%;
    max-width: 960px;
    height: auto;
    border-radius: 24px;
    border: var(--border-subtle);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: block;
}

/* --- 页脚区域 --- */
.base {
    background-color: var(--bg-surface);
    border-top: var(--border-subtle);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: auto;
}

.base-vault {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.base-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.sector-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.sector-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sector-head {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.sector-wire {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

.sector-wire:hover,
.sector-wire:focus {
    color: var(--primary-color);
}

.base-bottom {
    max-width: 1320px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
    border-top: var(--border-subtle);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* 响应式断点 */
@media (max-width: 992px) {
    .splash-cluster {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .highlight-skin {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .apex {
        position: static; /* 移动端取消固定，避免遮挡 */
    }
    .root-vault {
        padding-top: 0;
    }
    .bios {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .array {
        gap: 1rem;
    }
    .splash {
        padding: 3rem 1.5rem;
    }
    .dock, .vault-highlight, .skin-stage {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .cluster-matrix {
        grid-template-columns: 1fr;
    }
    .base-vault {
        flex-direction: column;
    }
    .sector-cluster {
        gap: 2rem;
        flex-direction: column;
    }
}

.bios-apex .bios-flex-wrap{
            display: flex;
            flex-wrap: wrap;
        }

.bios-apex .bios-flex-wrap > *{
            min-width: 0;
        }

.bios-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 14, 11, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1rem 0;
        }

.bios-apex .bios-bios{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            justify-content: space-between;
            align-items: center;
        }

.bios-apex .bios-crest{
            display: flex;
            align-items: center;
            height: 36px;
        }

.bios-apex .bios-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.bios-apex .bios-array{
            display: flex;
            gap: 2rem;
            align-items: center;
        }

.bios-apex .bios-wire{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
        }

.bios-apex .bios-wire:hover, .bios-apex .bios-wire:focus, .bios-apex .bios-wire.active{
            color: #62c73a;
        }

@media (max-width: 768px){.bios-apex .bios-array{
                display: none; 
            }}

.bios-apex {
    background: rgb(10, 14, 11);
    background-image: none;
}

.root-skin {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
}
.root-skin,
.root-skin *,
.root-skin *::before,
.root-skin *::after {
    box-sizing: border-box;
}

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

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

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

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

.root-skin a,
.root-skin a:hover,
.root-skin a:focus,
.root-skin a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.root-skin .root-flex-wrap{
            display: flex;
            flex-wrap: wrap;
        }

.root-skin .root-flex-wrap > *{
            min-width: 0;
        }

.root-skin .root-byte-wrap{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.root-skin .root-byte-cn{
            word-break: keep-all;
        }

.root-skin{
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

.root-skin .root-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 14, 11, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1rem 0;
        }

.root-skin .root-bios{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            justify-content: space-between;
            align-items: center;
        }

.root-skin .root-crest{
            display: flex;
            align-items: center;
            height: 36px;
        }

.root-skin .root-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.root-skin .root-array{
            display: flex;
            gap: 2rem;
            align-items: center;
        }

.root-skin .root-wire{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
        }

.root-skin .root-wire:hover, .root-skin .root-wire:focus, .root-skin .root-wire.active{
            color: #62c73a;
        }

.root-skin .root-dock{
            flex: 1;
            width: 100%;
        }

.root-skin .root-splash{
            max-width: 1320px;
            margin: 6rem auto 8rem;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

@media (min-width: 1024px){.root-skin .root-splash{
                
                grid-template-columns: 1fr 1.85fr;
            }}

.root-skin .root-ignite-byte{
            order: 2;
        }

@media (min-width: 1024px){.root-skin .root-ignite-byte{
                order: 1;
            }}

.root-skin .root-head-mega{
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #a3b8a9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.root-skin .root-byte-lead{
            font-size: 1.125rem;
            color: #9ca3af;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

.root-skin .root-plug{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: #62c73a;
            color: #000;
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            border-radius: 999px;
            transition: all 0.15s ease;
            box-shadow: 0 8px 24px rgba(98, 199, 58, 0.3);
            border: 1px solid transparent;
        }

.root-skin .root-plug:hover, .root-skin .root-plug:focus{
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(98, 199, 58, 0.3);
            background-color: #6ed942;
        }

.root-skin .root-ignite-pixel{
            order: 1;
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(145deg, #121814, #0a0e0b);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 80px rgba(98, 199, 58, 0.05),
                        0 20px 40px rgba(0,0,0,0.4);
        }

@media (min-width: 1024px){.root-skin .root-ignite-pixel{
                order: 2;
                min-height: 600px;
            }}

.root-skin .root-ignite-glyph{
            width: 80%;
            height: 80%;
            filter: drop-shadow(0 0 30px rgba(98, 199, 58, 0.3));
        }

.root-skin .root-vault{
            padding: 8rem 0;
            background: #121814;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

.root-skin .root-vault-inner{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            align-items: center;
            gap: 4rem;
        }

@media (min-width: 1024px){.root-skin .root-vault-inner{
                display: grid;
                grid-template-columns: 1fr 1fr;
            }}

.root-skin .root-head-shell{
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

.root-skin .root-cluster-array{
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.root-skin .root-chunk-point{
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

.root-skin .root-glyph-check{
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: #62c73a;
            margin-top: 4px;
        }

.root-skin .root-pixel-showcase{
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 24px 48px rgba(0,0,0,0.5);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.15s ease;
        }

.root-skin .root-pixel-showcase:hover{
            transform: scale(1.02);
        }

.root-skin{
            padding: 8rem 0;
            background: radial-gradient(circle at center, #1a231d 0%, #0a0e0b 100%);
        }

.root-skin .root-skin-inner{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-skin .root-head-center{
            text-align: center;
            margin-bottom: 4rem;
        }

.root-skin .root-iso-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

.root-skin .root-iso-iso{
            background: rgba(26, 35, 29, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            padding: 2.5rem;
            backdrop-filter: blur(12px);
            transition: all 0.15s ease;
        }

.root-skin .root-iso-iso:hover{
            background: rgba(26, 35, 29, 0.8);
            border-color: rgba(98, 199, 58, 0.3);
            transform: translateY(-5px);
        }

.root-skin .root-glyph-feature{
            width: 48px;
            height: 48px;
            color: #62c73a;
            margin-bottom: 1.5rem;
        }

.root-skin .root-head-iso{
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

.root-skin .root-byte-iso{
            color: #9ca3af;
            font-size: 0.95rem;
        }

.root-skin .root-cluster-stats{
            max-width: 1320px;
            margin: 0 auto;
            padding: 6rem 2rem;
            text-align: center;
        }

.root-skin .root-stat-mega{
            font-size: clamp(4rem, 8vw, 7rem);
            font-weight: 900;
            color: #62c73a;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(98, 199, 58, 0.3);
        }

.root-skin .root-stat-byte{
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

.root-skin .root-vault-ecosystem{
            background: #121814;
            padding: 6rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

.root-skin .root-eco-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-skin .root-disk-eco{
            padding: 2rem;
            border-radius: 18px;
            background: #0a0e0b;
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

.root-skin .root-wire-eco{
            margin-top: auto;
            padding-top: 1.5rem;
            color: #62c73a;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.15s ease;
        }

.root-skin .root-disk-eco:hover .root-wire-eco{
            gap: 0.8rem;
        }

.root-skin .root-base{
            background: #050706;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4rem 0 2rem;
        }

.root-skin .root-root{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

.root-skin .root-head-base{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

.root-skin .root-sector-links{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.root-skin .root-socket{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.root-skin .root-socket:hover{
            color: #62c73a;
        }

.root-skin .root-base-bottom{
            max-width: 1320px;
            margin: 0 auto;
            padding: 2rem 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
        }

@media (max-width: 768px){.root-skin .root-array{
                display: none; 
            }}