:root {
            --p21sl-primary: #62e286;
            --p21sl-primary-dark: #4bc96f;
            --p21sl-accent: #2c3e50;
            --p21sl-bg-light: #f8fafc;
            --p21sl-text: #1e293b;
            --p21sl-text-muted: #64748b;
            --p21sl-white: #ffffff;
            --p21sl-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --p21sl-radius: 10px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--p21sl-text);
            background-color: var(--p21sl-bg-light);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 导航栏复用风格 */
        .p21sl-drift {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .p21sl-orbit {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .p21sl-logo {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .p21sl-logo img {
            height: 100%;
            width: auto;
        }

        .p21sl-orbit-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .p21sl-orbit-links a {
            text-decoration: none;
            color: var(--p21sl-text);
            font-weight: 500;
            transition: color 0.35s ease;
            font-size: 15px;
        }

        .p21sl-orbit-links a:hover,
        .p21sl-orbit-links a.active {
            color: var(--p21sl-primary-dark);
        }

        /* Hero区 - Fullbleed Overlay */
        .p21sl-blaze {
            position: relative;
            min-height: 500px;
            padding-top: 70px;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .p21sl-warp {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
            padding: 60px 20px;
            color: var(--p21sl-white);
        }

        .p21sl-warp h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
        }

        .p21sl-warp p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* 核心内容容器 */
        .p21sl-vessel {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 章节通用样式 */
        .p21sl-strobe {
            padding: 80px 0;
        }

        /* 下载矩阵布局 */
        .p21sl-nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        .p21sl-replica {
            background: var(--p21sl-white);
            border-radius: var(--p21sl-radius);
            padding: 40px;
            flex: 1;
            min-width: 320px;
            box-shadow: var(--p21sl-shadow);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-top: 4px solid var(--p21sl-primary);
        }

        .p21sl-replica:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
        }

        .p21sl-glyph {
            width: 80px;
            height: 80px;
            background: rgba(98, 226, 134, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--p21sl-primary-dark);
        }

        .p21sl-glyph svg {
            width: 40px;
            height: 40px;
            fill: currentColor;
        }

        .p21sl-replica h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--p21sl-accent);
        }

        .p21sl-replica p {
            color: var(--p21sl-text-muted);
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .p21sl-pulse {
            display: inline-block;
            background: var(--p21sl-primary);
            color: var(--p21sl-white);
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 4px 15px rgba(98, 226, 134, 0.4);
            margin-bottom: 15px;
        }

        .p21sl-pulse:hover {
            background: var(--p21sl-primary-dark);
            box-shadow: 0 6px 20px rgba(98, 226, 134, 0.6);
        }

        .p21sl-snap {
            font-size: 0.85rem;
            color: var(--p21sl-text-muted);
            text-decoration: none;
            border-bottom: 1px dashed var(--p21sl-text-muted);
            transition: color 0.35s ease;
        }

        .p21sl-snap:hover {
            color: var(--p21sl-primary-dark);
            border-bottom-color: var(--p21sl-primary-dark);
        }

        /* 详情列表区域 */
        .p21sl-vault {
            background: var(--p21sl-white);
            border-radius: var(--p21sl-radius);
            padding: 50px;
            margin-top: 60px;
            box-shadow: var(--p21sl-shadow);
        }

        .p21sl-vault h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            color: var(--p21sl-accent);
        }

        .p21sl-vault-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .p21sl-vault-item {
            display: flex;
            gap: 20px;
        }

        .p21sl-vault-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: var(--p21sl-primary);
        }

        .p21sl-vault-text h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .p21sl-vault-text p {
            font-size: 0.9rem;
            color: var(--p21sl-text-muted);
        }

        /* 版本日志 */
        .p21sl-log-list {
            margin-top: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .p21sl-log-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .p21sl-log-version {
            font-weight: 700;
            color: var(--p21sl-accent);
            background: rgba(98, 226, 134, 0.1);
            padding: 4px 12px;
            border-radius: 4px;
        }

        .p21sl-log-date {
            color: var(--p21sl-text-muted);
            font-size: 0.9rem;
        }

        /* 页脚区域 */
        .p21sl-trace {
            background: var(--p21sl-accent);
            color: var(--p21sl-white);
            padding: 60px 0 30px;
            margin-top: 100px;
        }

        .p21sl-origin {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        .p21sl-origin .p21sl-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .p21sl-origin-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px 0;
        }

        .p21sl-origin-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.35s ease;
        }

        .p21sl-origin-links a:hover {
            color: var(--p21sl-primary);
        }

        .p21sl-copyright {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .p21sl-orbit {
                height: auto;
                padding: 15px 20px;
            }
            .p21sl-orbit-links {
                width: 100%;
                justify-content: center;
                margin-top: 10px;
                gap: 15px;
            }
            .p21sl-nexus {
                margin-top: 40px;
            }
            .p21sl-vault {
                padding: 30px 20px;
            }
            .p21sl-strobe {
                padding: 50px 0;
            }
        }

.p21sl-hdr-drift {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    word-break: keep-all;
    color: var(--p21sl-dark);
}
.p21sl-hdr-drift,
.p21sl-hdr-drift *,
.p21sl-hdr-drift *::before,
.p21sl-hdr-drift *::after {
    box-sizing: border-box;
}

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

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

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

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

.p21sl-hdr-drift a[href="index.html"],
.p21sl-hdr-drift a[href="download.html"],
.p21sl-hdr-drift a[href="engine.html"],
.p21sl-hdr-drift a[href="sync.html"] {
    --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;
}

.p21sl-hdr-drift a[href="index.html"],
.p21sl-hdr-drift a[href="index.html"]:hover,
.p21sl-hdr-drift a[href="index.html"]:focus,
.p21sl-hdr-drift a[href="index.html"]:active,
.p21sl-hdr-drift a[href="index.html"].active,
.p21sl-hdr-drift a[href="index.html"][aria-current="page"],
.p21sl-hdr-drift a[href="download.html"],
.p21sl-hdr-drift a[href="download.html"]:hover,
.p21sl-hdr-drift a[href="download.html"]:focus,
.p21sl-hdr-drift a[href="download.html"]:active,
.p21sl-hdr-drift a[href="download.html"].active,
.p21sl-hdr-drift a[href="download.html"][aria-current="page"],
.p21sl-hdr-drift a[href="engine.html"],
.p21sl-hdr-drift a[href="engine.html"]:hover,
.p21sl-hdr-drift a[href="engine.html"]:focus,
.p21sl-hdr-drift a[href="engine.html"]:active,
.p21sl-hdr-drift a[href="engine.html"].active,
.p21sl-hdr-drift a[href="engine.html"][aria-current="page"],
.p21sl-hdr-drift a[href="sync.html"],
.p21sl-hdr-drift a[href="sync.html"]:hover,
.p21sl-hdr-drift a[href="sync.html"]:focus,
.p21sl-hdr-drift a[href="sync.html"]:active,
.p21sl-hdr-drift a[href="sync.html"].active,
.p21sl-hdr-drift a[href="sync.html"][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);
}

.p21sl-hdr-drift{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            backdrop-filter: blur(10px);
        }

.p21sl-hdr-drift .p21sl-hdr-orbit{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }

.p21sl-hdr-drift .p21sl-hdr-logo{
            display: flex;
            align-items: center;
        }

.p21sl-hdr-drift .p21sl-hdr-logo img{
            height: 32px;
            width: auto;
        }

.p21sl-hdr-drift .p21sl-hdr-orbit-links{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.p21sl-hdr-drift .p21sl-hdr-orbit-links a{
            text-decoration: none;
            color: #141915;
            font-weight: 600;
            font-size: 1rem;
            transition: 0.35s ease;
            position: relative;
        }

.p21sl-hdr-drift .p21sl-hdr-orbit-links a:hover, .p21sl-hdr-drift .p21sl-hdr-orbit-links a.active{
            color: #62e286;
        }

.p21sl-hdr-drift .p21sl-hdr-orbit-links a.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #62e286;
        }

@media (max-width: 768px){.p21sl-hdr-drift .p21sl-hdr-orbit{
                padding: 1rem;
            }

.p21sl-hdr-drift .p21sl-hdr-orbit-links{
                display: none; 
            }}

.p21sl-hdr-drift {
    background: rgb(255, 255, 255);
    background-image: none;
}

.p21sl-ftr-trace {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    word-break: keep-all;
    color: var(--p21sl-dark);
}
.p21sl-ftr-trace,
.p21sl-ftr-trace *,
.p21sl-ftr-trace *::before,
.p21sl-ftr-trace *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.p21sl-ftr-trace{
            background: #141915;
            color: #ffffff;
            padding: 80px 0 40px;
        }

.p21sl-ftr-trace .p21sl-ftr-origin{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-info{
            flex: 1;
            min-width: 300px;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-info h3{
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #62e286;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-links{
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-group h4{
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-group ul{
            list-style: none;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-group ul li{
            margin-bottom: 0.8rem;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-group ul li a{
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: 0.35s ease;
        }

.p21sl-ftr-trace .p21sl-ftr-origin-group ul li a:hover{
            color: #62e286;
        }

.p21sl-ftr-trace .p21sl-ftr-copyright{
            width: 100%;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
        }