:root {
            --q7m8-primary: #23f0df;
            --q7m8-bg: #0a0f12;
            --q7m8-surface: #161d21;
            --q7m8-text: #e0e6ed;
            --q7m8-text-dim: #94a3b8;
            --q7m8-radius: 18px;
            --q7m8-transition: 0.25s ease;
        }

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

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

        /* 强制复用首页导航栏风格 */
        .q7m8-relay {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 15, 18, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(35, 240, 223, 0.1);
        }

        .q7m8-glide-nexus {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 24px;
        }

        .q7m8-logo img {
            height: 32px;
            display: block;
        }

        .q7m8-glide {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .q7m8-nav-link {
            text-decoration: none;
            color: var(--q7m8-text-dim);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--q7m8-transition);
        }

        .q7m8-nav-link:hover, .q7m8-nav-link.active {
            color: var(--q7m8-primary);
        }

        .q7m8-ping-group {
            display: flex;
            min-width: 0;
        }

        .q7m8-fuse {
            background: var(--q7m8-primary);
            color: #000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--q7m8-transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .q7m8-fuse:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(35, 240, 223, 0.3);
        }

        /* Hero: mosaic_collage 布局 */
        .q7m8-beacon-pulse {
            max-width: 1300px;
            margin: 40px auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 20px;
        }

        .q7m8-bloom-nexus {
            grid-column: span 2;
            grid-row: span 2;
            background: linear-gradient(135deg, rgba(35, 240, 223, 0.15) 0%, rgba(10, 15, 18, 1) 100%);
            border: 1px solid rgba(35, 240, 223, 0.2);
            border-radius: var(--q7m8-radius);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }

        .q7m8-bloom-nexus h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--q7m8-primary);
        }

        .q7m8-bloom-nexus p {
            font-size: 1.1rem;
            color: var(--q7m8-text-dim);
            max-width: 500px;
            word-break: break-word;
        }

        .q7m8-echo-parcel {
            background: var(--q7m8-surface);
            border-radius: var(--q7m8-radius);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--q7m8-transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-width: 0;
        }

        .q7m8-echo-parcel:hover {
            border-color: var(--q7m8-primary);
            background: rgba(35, 240, 223, 0.03);
        }

        .q7m8-parcel-icon {
            width: 48px;
            height: 48px;
            background: rgba(35, 240, 223, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .q7m8-parcel-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--q7m8-primary);
        }

        .q7m8-parcel-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .q7m8-parcel-meta {
            font-size: 0.85rem;
            color: var(--q7m8-text-dim);
        }

        /* 下载主要区域 */
        .q7m8-hull-nexus {
            max-width: 1100px;
            margin: 80px auto;
            padding: 0 24px;
        }

        .q7m8-cradle-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .q7m8-cradle-header h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .q7m8-cradle-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .q7m8-cradle-item {
            flex: 1;
            min-width: 300px;
            background: var(--q7m8-surface);
            padding: 40px;
            border-radius: var(--q7m8-radius);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .q7m8-cradle-item h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .q7m8-cradle-list {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
            color: var(--q7m8-text-dim);
        }

        .q7m8-cradle-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .q7m8-cradle-list li::before {
            content: "•";
            color: var(--q7m8-primary);
            font-weight: bold;
        }

        /* 页脚区域 */
        .q7m8-depth-trace {
            background: #050708;
            padding: 80px 24px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 100px;
        }

        .q7m8-trace-nexus {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .q7m8-trace-brand {
            flex: 1;
            min-width: 200px;
        }

        .q7m8-trace-brand h4 {
            font-size: 1.5rem;
            color: var(--q7m8-primary);
            margin-bottom: 15px;
        }

        .q7m8-trace-brand p {
            color: var(--q7m8-text-dim);
            font-size: 0.9rem;
        }

        .q7m8-trace-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .q7m8-trace-col h5 {
            margin-bottom: 20px;
            font-size: 1rem;
            color: var(--q7m8-text);
        }

        .q7m8-trace-col a {
            display: block;
            color: var(--q7m8-text-dim);
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.9rem;
            transition: var(--q7m8-transition);
        }

        .q7m8-trace-col a:hover {
            color: var(--q7m8-primary);
        }

        .q7m8-trace-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--q7m8-text-dim);
            font-size: 0.8rem;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .q7m8-beacon-pulse {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }
            .q7m8-bloom-nexus {
                grid-column: span 2;
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .q7m8-glide {
                display: none;
            }
            .q7m8-bloom-nexus h1 {
                font-size: 2.2rem;
            }
            .q7m8-cradle-item {
                flex: none;
                width: 100%;
            }
            .q7m8-beacon-pulse {
                grid-template-columns: 1fr;
            }
            .q7m8-bloom-nexus {
                grid-column: span 1;
            }
        }

.q7m8-hdr-relay {
    font-family: var(--q7m8-font);
    line-height: 1.7;
    word-break: keep-all;
    color: var(--q7m8-text);
}
.q7m8-hdr-relay,
.q7m8-hdr-relay *,
.q7m8-hdr-relay *::before,
.q7m8-hdr-relay *::after {
    box-sizing: border-box;
}

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

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

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

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

.q7m8-hdr-relay a.q7m8-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 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;
}

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

.q7m8-hdr-relay{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 15, 18, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(35, 240, 223, 0.1);
        }

.q7m8-hdr-relay .q7m8-hdr-glide-nexus{
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 5vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.q7m8-hdr-relay .q7m8-hdr-logo{
            height: 40px;
            display: flex;
            align-items: center;
        }

.q7m8-hdr-relay .q7m8-hdr-logo img{
            height: 100%;
            width: auto;
            border-radius: 0;
        }

.q7m8-hdr-relay .q7m8-hdr-glide{
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

.q7m8-hdr-relay .q7m8-hdr-nav-link{
            font-weight: 500;
            font-size: 0.95rem;
            color: #94a3b8;
            padding: 8px 0;
            position: relative;
        }

.q7m8-hdr-relay .q7m8-hdr-nav-link:hover, .q7m8-hdr-relay .q7m8-hdr-nav-link.active{
            color: #23f0df;
        }

.q7m8-hdr-relay .q7m8-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #23f0df;
            box-shadow: 0 0 10px #23f0df;
        }

.q7m8-hdr-relay .q7m8-hdr-ping-group{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

.q7m8-hdr-relay .q7m8-hdr-fuse{
            background: rgba(255,255,255,0.1);
            color: #fff;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }

.q7m8-hdr-relay .q7m8-hdr-fuse:hover{
            background: rgba(255,255,255,0.2);
            border-color: #23f0df;
        }

@media (max-width: 1024px){.q7m8-hdr-relay .q7m8-hdr-ping-group{
                justify-content: center;
            }}

@media (max-width: 768px){.q7m8-hdr-relay .q7m8-hdr-glide{
                display: none; 
            }}

.q7m8-hdr-relay {
    background: rgb(10, 15, 18);
    background-image: none;
}

.q7m8-ftr-depth {
    font-family: var(--q7m8-font);
    line-height: 1.7;
    word-break: keep-all;
    color: var(--q7m8-text);
}
.q7m8-ftr-depth,
.q7m8-ftr-depth *,
.q7m8-ftr-depth *::before,
.q7m8-ftr-depth *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.q7m8-ftr-depth .q7m8-ftr-ping-group{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

.q7m8-ftr-depth .q7m8-ftr-fuse{
            background: rgba(255,255,255,0.1);
            color: #fff;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }

.q7m8-ftr-depth .q7m8-ftr-fuse:hover{
            background: rgba(255,255,255,0.2);
            border-color: #23f0df;
        }

.q7m8-ftr-depth{
            background: #050708;
            padding: 100px 5vw 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.q7m8-ftr-depth .q7m8-ftr-depth-nexus{
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 60px;
        }

.q7m8-ftr-depth .q7m8-ftr-brand-info h4{
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 20px;
        }

.q7m8-ftr-depth .q7m8-ftr-brand-info p{
            color: #94a3b8;
            max-width: 300px;
            margin-bottom: 30px;
        }

.q7m8-ftr-depth .q7m8-ftr-depth-links h5{
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

.q7m8-ftr-depth .q7m8-ftr-depth-links ul{
            list-style: none;
        }

.q7m8-ftr-depth .q7m8-ftr-depth-links li{
            margin-bottom: 12px;
        }

.q7m8-ftr-depth .q7m8-ftr-depth-links a{
            color: #94a3b8;
            font-size: 0.95rem;
        }

.q7m8-ftr-depth .q7m8-ftr-depth-links a:hover{
            color: #23f0df;
            padding-left: 5px;
        }

.q7m8-ftr-depth .q7m8-ftr-trace{
            max-width: 1400px;
            margin: 80px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            color: #4a5568;
            font-size: 0.85rem;
        }

@media (max-width: 1024px){.q7m8-ftr-depth .q7m8-ftr-ping-group{
                justify-content: center;
            }}

@media (max-width: 768px){.q7m8-ftr-depth .q7m8-ftr-depth-nexus{
                grid-template-columns: 1fr 1fr;
            }

.q7m8-ftr-depth .q7m8-ftr-trace{
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }}