:root {
            --fc-bg-base: #060910;
            --fc-bg-surface: #0e1424;
            --fc-bg-surface-alt: #161e33;
            --fc-accent-cyan: #00f0ff;
            --fc-accent-cyan-dim: rgba(0, 240, 255, 0.15);
            --fc-accent-orange: #ff5500;
            --fc-accent-orange-dim: rgba(255, 85, 0, 0.15);
            --fc-text-main: #f0f4f8;
            --fc-text-muted: #8b9bb4;
            --fc-border: #212d45;
            --fc-spacing-xs: 8px;
            --fc-spacing-sm: 16px;
            --fc-spacing-md: 24px;
            --fc-spacing-lg: 48px;
            --fc-spacing-xl: 96px;
            --fc-font-title: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            --fc-font-body: ui-sans-serif, system-ui, sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--fc-bg-base);
            color: var(--fc-text-main);
            font-family: var(--fc-font-body);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a { text-decoration: none; }
        
        /* 强制复用的导航栏样式 (根据要求需包含对应的类名基础样式，以防外部CSS缺失时裸奔) */
        .p6od-iyagaw {
            background: rgba(6, 9, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--fc-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: var(--fc-spacing-sm) 0;
        }
        .p6od-jeke {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--fc-spacing-md);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .p6od-logo img {
            height: 32px;
            display: block;
        }
        .p6od-sule {
            display: flex;
            flex-wrap: wrap;
            gap: var(--fc-spacing-md);
        }
        .p6od-nav-link {
            color: var(--fc-text-main);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        .p6od-nav-link:hover, .p6od-nav-link.active {
            color: var(--fc-accent-cyan);
        }

        /* 页面级通用布局规则 */
        .p6od-fiweye, .p6od-omomay, .p6od-zizika {
            padding: var(--fc-spacing-xl) 0;
            position: relative;
        }
        
        .p6od-niselog, .p6od-zajoxuy, .p6od-azugig, .p6od-ujisoh, .p6od-avuji {
            min-width: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Hero 区域设计 (fiweye) */
        .p6od-fiweye {
            background: radial-gradient(circle at 80% 20%, var(--fc-accent-cyan-dim) 0%, transparent 40%),
                        radial-gradient(circle at 20% 80%, var(--fc-bg-surface-alt) 0%, transparent 50%);
            border-bottom: 1px solid var(--fc-border);
        }
        .p6od-fiweye .p6od-jeke {
            display: flex;
            flex-wrap: wrap;
            gap: var(--fc-spacing-lg);
            align-items: center;
        }
        .p6od-fiweye .p6od-niselog {
            flex: 1 1 500px;
        }
        .p6od-fiweye .p6od-zajoxuy {
            flex: 1 1 400px;
            position: relative;
        }
        .p6od-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            background: var(--fc-accent-cyan-dim);
            color: var(--fc-accent-cyan);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: var(--fc-spacing-md);
            letter-spacing: 1px;
        }
        .p6od-title-mega {
            font-family: var(--fc-font-title);
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 var(--fc-spacing-md) 0;
            white-space: normal;
            background: linear-gradient(135deg, #fff 0%, #a0b0c0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .p6od-desc-lead {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--fc-text-muted);
            margin-bottom: var(--fc-spacing-lg);
            max-width: 600px;
        }
        
        /* 交互按钮 */
        .p6od-qabujiy {
            display: inline-flex;
            align-items: center;
            gap: var(--fc-spacing-xs);
            padding: 14px 32px;
            background: linear-gradient(90deg, var(--fc-accent-cyan) 0%, #0099ff 100%);
            color: #000;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .p6od-qabujiy:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 240, 255, 0.3);
        }
        .p6od-qabujiy.ghost {
            background: transparent;
            color: var(--fc-accent-cyan);
            border: 1px solid var(--fc-accent-cyan);
        }
        .p6od-qabujiy.ghost:hover {
            background: var(--fc-accent-cyan-dim);
            box-shadow: none;
        }

        /* 抽象数据流图形 */
        .p6od-data-flow {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 30px var(--fc-accent-cyan-dim));
        }

        /* Benchmark 1 区域 (omomay) - 海量小文件 */
        .p6od-omomay {
            background-color: var(--fc-bg-surface);
        }
        .p6od-section-header {
            text-align: center;
            margin-bottom: var(--fc-spacing-xl);
        }
        .p6od-section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin: 0 0 var(--fc-spacing-sm) 0;
            color: #fff;
        }
        .p6od-section-subtitle {
            color: var(--fc-text-muted);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .p6od-vs-grid {
            display: flex;
            flex-wrap: wrap;
            gap: var(--fc-spacing-lg);
            align-items: stretch;
        }
        
        .p6od-azugig {
            flex: 1 1 350px;
            background: var(--fc-bg-surface-alt);
            border: 1px solid var(--fc-border);
            border-radius: 12px;
            padding: var(--fc-spacing-lg);
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .p6od-azugig:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }
        .p6od-azugig.winner {
            background: linear-gradient(180deg, var(--fc-bg-surface-alt) 0%, rgba(0, 240, 255, 0.05) 100%);
            border-color: rgba(0, 240, 255, 0.3);
        }
        .p6od-azugig.winner:hover {
            border-color: var(--fc-accent-cyan);
            box-shadow: 0 0 40px var(--fc-accent-cyan-dim);
        }
        
        .p6od-card-icon {
            width: 48px;
            height: 48px;
            margin-bottom: var(--fc-spacing-md);
        }
        .p6od-card-title {
            font-size: 1.4rem;
            color: #fff;
            margin: 0 0 var(--fc-spacing-xs) 0;
        }
        .p6od-card-meta {
            font-size: 0.9rem;
            color: var(--fc-text-muted);
            margin-bottom: var(--fc-spacing-md);
            padding-bottom: var(--fc-spacing-md);
            border-bottom: 1px dashed var(--fc-border);
        }
        .p6od-stat-value {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            font-family: var(--fc-font-title);
            line-height: 1;
            margin-bottom: var(--fc-spacing-xs);
        }
        .p6od-azugig.loser .p6od-stat-value { color: var(--fc-accent-orange); }
        .p6od-azugig.winner .p6od-stat-value { color: var(--fc-accent-cyan); }
        
        .p6od-stat-label {
            font-size: 1rem;
            color: #fff;
            margin-bottom: var(--fc-spacing-md);
        }
        .p6od-stat-desc {
            font-size: 0.95rem;
            color: var(--fc-text-muted);
        }

        /* 效率倍数徽章 */
        .p6od-multiplier {
            position: absolute;
            top: var(--fc-spacing-md);
            right: var(--fc-spacing-md);
            background: rgba(0, 240, 255, 0.1);
            color: var(--fc-accent-cyan);
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.2rem;
            border: 1px solid rgba(0, 240, 255, 0.2);
        }

        /* Benchmark 2 区域 (zizika) - 超大单体文件 */
        .p6od-zizika {
            background: linear-gradient(135deg, #020408 0%, var(--fc-bg-surface) 100%);
            border-top: 1px solid var(--fc-border);
            border-bottom: 1px solid var(--fc-border);
        }
        .p6od-zizika .p6od-jeke {
            display: flex;
            flex-wrap: wrap;
            gap: var(--fc-spacing-xl);
            align-items: center;
            flex-direction: row-reverse; /* 反向布局 */
        }
        
        .p6od-data-board {
            background: rgba(0,0,0,0.4);
            border: 1px solid var(--fc-border);
            border-radius: 16px;
            padding: var(--fc-spacing-lg);
            width: 100%;
        }
        .p6od-data-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: var(--fc-spacing-sm) 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .p6od-data-row:last-child { border-bottom: none; }
        .p6od-data-label { color: var(--fc-text-muted); }
        .p6od-data-val { font-weight: 600; color: #fff; text-align: right; }
        .p6od-data-highlight { color: var(--fc-accent-cyan); font-size: 1.2rem; }
        .p6od-data-alert { color: var(--fc-accent-orange); }

        /* 进阶特性网格 */
        .p6od-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--fc-spacing-md);
            margin-top: var(--fc-spacing-xl);
        }
        .p6od-zajoxuy-feature {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--fc-border);
            padding: var(--fc-spacing-md);
            border-radius: 8px;
            transition: background 0.3s;
        }
        .p6od-zajoxuy-feature:hover {
            background: rgba(255,255,255,0.05);
        }
        .p6od-zajoxuy-feature h3 { margin-top: 0; color: #fff; font-size: 1.1rem; }
        .p6od-zajoxuy-feature p { margin-bottom: 0; color: var(--fc-text-muted); font-size: 0.9rem; }

        /* 页脚区域 (rebuma) */
        .p6od-rebuma {
            background-color: var(--fc-bg-base);
            padding: var(--fc-spacing-xl) 0 var(--fc-spacing-md) 0;
            border-top: 1px solid var(--fc-border);
        }
        .p6od-ujisoh {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--fc-spacing-md);
            display: flex;
            flex-wrap: wrap;
            gap: var(--fc-spacing-lg);
        }
        .p6od-avuji {
            flex: 1 1 200px;
        }
        .p6od-avuji-brand {
            flex: 2 1 300px;
        }
        .p6od-footer-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            display: block;
            margin-bottom: var(--fc-spacing-sm);
            font-family: var(--fc-font-title);
        }
        .p6od-avuji h4 {
            color: #fff;
            margin-bottom: var(--fc-spacing-md);
            font-size: 1.1rem;
        }
        .p6od-footer-link {
            display: block;
            color: var(--fc-text-muted);
            margin-bottom: var(--fc-spacing-xs);
            transition: color 0.2s;
        }
        .p6od-footer-link:hover { color: var(--fc-accent-cyan); }
        .p6od-footer-bottom {
            max-width: 1280px;
            margin: var(--fc-spacing-lg) auto 0;
            padding: var(--fc-spacing-md) var(--fc-spacing-md) 0;
            border-top: 1px solid var(--fc-border);
            text-align: center;
            color: var(--fc-text-muted);
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .p6od-fiweye .p6od-jeke { flex-direction: column; text-align: center; }
            .p6od-zizika .p6od-jeke { flex-direction: column; }
            .p6od-sule { display: none; /* 移动端导航简化，实际项目应有汉堡菜单 */ }
            .p6od-desc-lead { margin: 0 auto var(--fc-spacing-lg); }
            .p6od-qabujiy { width: 100%; justify-content: center; margin-bottom: var(--fc-spacing-xs); }
        }

.p6od-hdr-iyagaw {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.p6od-hdr-iyagaw,
.p6od-hdr-iyagaw *,
.p6od-hdr-iyagaw *::before,
.p6od-hdr-iyagaw *::after {
    box-sizing: border-box;
}

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

.p6od-hdr-iyagaw p,
.p6od-hdr-iyagaw h1,
.p6od-hdr-iyagaw h2,
.p6od-hdr-iyagaw h3,
.p6od-hdr-iyagaw h4,
.p6od-hdr-iyagaw h5,
.p6od-hdr-iyagaw h6 {
    text-decoration: none;
}

.p6od-hdr-iyagaw img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.p6od-hdr-iyagaw {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.p6od-hdr-iyagaw a.p6od-hdr-nav-link {
    --aisite-shell-nav-padding: 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;
}

.p6od-hdr-iyagaw a.p6od-hdr-nav-link,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link:hover,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link:focus,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link:active,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link.active,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link[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);
}

.p6od-hdr-iyagaw .p6od-hdr-jeke{
            width: 100%;
            display: block;
        }

.p6od-hdr-iyagaw{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            height: 72px;
        }

.p6od-hdr-iyagaw .p6od-hdr-jeke{
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.p6od-hdr-iyagaw .p6od-hdr-logo{
            flex: 0 0 auto;
        }

.p6od-hdr-iyagaw .p6od-hdr-logo img{
            height: 36px;
            width: auto;
            display: block;
        }

.p6od-hdr-iyagaw .p6od-hdr-sule{
            display: flex;
            gap: 32px;
            align-items: center;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link{
            text-decoration: none;
            color: #1d1d1f;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link:hover{
            color: #0066cc;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link.active{
            color: #0066cc;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #0066cc;
        }

@media (max-width: 768px){.p6od-hdr-iyagaw .p6od-hdr-sule{
                display: none; 
            }}

.p6od-ftr-rebuma {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.p6od-ftr-rebuma,
.p6od-ftr-rebuma *,
.p6od-ftr-rebuma *::before,
.p6od-ftr-rebuma *::after {
    box-sizing: border-box;
}

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

.p6od-ftr-rebuma p,
.p6od-ftr-rebuma h1,
.p6od-ftr-rebuma h2,
.p6od-ftr-rebuma h3,
.p6od-ftr-rebuma h4,
.p6od-ftr-rebuma h5,
.p6od-ftr-rebuma h6 {
    text-decoration: none;
}

.p6od-ftr-rebuma img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.p6od-ftr-rebuma {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.p6od-ftr-rebuma a,
.p6od-ftr-rebuma a:hover,
.p6od-ftr-rebuma a:focus,
.p6od-ftr-rebuma a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.p6od-ftr-rebuma .p6od-ftr-ujisoh{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.p6od-ftr-rebuma .p6od-ftr-niselog{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

.p6od-ftr-rebuma{
            background: #f5f5f7;
            padding: 80px 0 40px;
            border-top: 1px solid #e5e5e7;
        }

.p6od-ftr-rebuma .p6od-ftr-niselog{
            justify-content: space-between;
            margin-bottom: 60px;
        }

.p6od-ftr-rebuma .p6od-ftr-avuji{
            flex: 1;
            min-width: 200px;
        }

.p6od-ftr-rebuma .p6od-ftr-avuji h4{
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            color: #1d1d1f;
        }

.p6od-ftr-rebuma .p6od-ftr-footer-brand{
            font-size: 24px;
            font-weight: 800;
            color: #1d1d1f;
            margin-bottom: 16px;
            display: block;
        }

.p6od-ftr-rebuma .p6od-ftr-footer-link{
            display: block;
            text-decoration: none;
            color: #6e6e73;
            font-size: 14px;
            margin-bottom: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

.p6od-ftr-rebuma .p6od-ftr-footer-link:hover{
            color: #0066cc;
        }

.p6od-ftr-rebuma .p6od-ftr-copyright{
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: #6e6e73;
            font-size: 13px;
        }