:root {
            --p21sl-primary: #62e286;
            --p21sl-primary-dark: #4dc971;
            --p21sl-accent: #1e293b;
            --p21sl-bg: #ffffff;
            --p21sl-text: #334155;
            --p21sl-light: #f8fafc;
            --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;
        }

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

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

        /* 强制复用首页导航栏风格 */
        header.p21sl-drift {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

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

        .p21sl-logo img {
            height: 40px;
            width: auto;
        }

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

        .p21sl-orbit-links a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 15px;
        }

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

        /* Hero区蓝图: fullbleed_overlay */
        .p21sl-blaze {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            padding: 120px 20px 60px;
            text-align: center;
            overflow: hidden;
        }

        .p21sl-blaze::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(98, 226, 134, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .p21sl-vessel {
            position: relative;
            z-index: 2;
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
        }

        .p21sl-blaze h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            white-space: normal;
            word-break: break-word;
        }

        .p21sl-blaze .p21sl-summary {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            word-break: break-word;
        }

        .p21sl-pulse {
            display: inline-block;
            background: var(--p21sl-primary);
            color: #0f172a;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 10px 20px rgba(98, 226, 134, 0.3);
            min-width: 0;
        }

        .p21sl-pulse:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(98, 226, 134, 0.4);
            background: #74f096;
        }

        /* 通用容器与布局 */
        .p21sl-warp {
            padding: 100px 20px;
            background: var(--p21sl-bg);
        }

        .p21sl-strobe {
            padding: 100px 20px;
            background: var(--p21sl-light);
        }

        .p21sl-vault {
            max-width: 1100px;
            margin: 0 auto;
        }

        .p21sl-nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        /* 卡片组件 */
        .p21sl-replica {
            flex: 1;
            min-width: 300px;
            background: #fff;
            padding: 40px;
            border-radius: var(--p21sl-radius);
            box-shadow: var(--p21sl-shadow);
            transition: transform 0.35s ease;
            border: 1px solid rgba(0,0,0,0.03);
            word-break: break-word;
        }

        .p21sl-replica:hover {
            transform: translateY(-8px);
        }

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

        .p21sl-replica h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--p21sl-accent);
        }

        .p21sl-replica p {
            color: #64748b;
            font-size: 16px;
        }

        /* 详细内容区布局 */
        .p21sl-content-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            margin-top: 40px;
        }

        .p21sl-content-text {
            flex: 1;
            min-width: 300px;
        }

        .p21sl-content-text h2 {
            font-size: 32px;
            margin-bottom: 25px;
            color: var(--p21sl-accent);
            position: relative;
            padding-bottom: 15px;
        }

        .p21sl-content-text h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--p21sl-primary);
            border-radius: 2px;
        }

        .p21sl-content-text p {
            margin-bottom: 20px;
            font-size: 17px;
        }

        .p21sl-list {
            list-style: none;
            margin-top: 20px;
        }

        .p21sl-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-weight: 500;
        }

        .p21sl-list li::before {
            content: "✓";
            color: var(--p21sl-primary-dark);
            font-weight: 900;
        }

        .p21sl-snap {
            display: inline-flex;
            align-items: center;
            color: var(--p21sl-primary-dark);
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: gap 0.3s;
        }

        .p21sl-snap:hover {
            gap: 8px;
        }

        /* 页脚 */
        .p21sl-trace {
            background: #0f172a;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 20px 40px;
        }

        .p21sl-origin {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
        }

        .p21sl-origin-brand {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .p21sl-footer-links {
            display: flex;
            gap: 30px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .p21sl-footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        /* 响应式调整 */
        @media (max-width: 768px) {
            .p21sl-orbit {
                justify-content: center;
                gap: 15px;
            }
            .p21sl-orbit-links {
                justify-content: center;
                width: 100%;
                gap: 15px;
            }
            .p21sl-blaze {
                padding-top: 150px;
            }
            .p21sl-content-split {
                flex-direction: column;
            }
            .p21sl-nexus {
                flex-direction: column;
            }
            .p21sl-replica {
                min-width: 100%;
            }
            .p21sl-origin {
                flex-direction: column;
                text-align: center;
            }
            .p21sl-footer-links {
                justify-content: center;
                margin-top: 20px;
            }
        }

.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;
        }