/* CSS Variables - Technical Light Theme */
        :root {
            --fc-bg-main: #F8FAFC;
            --fc-bg-surface: #FFFFFF;
            --fc-text-primary: #0F172A;
            --fc-text-secondary: #475569;
            --fc-text-tertiary: #94A3B8;
            --fc-accent: #2563EB;
            --fc-accent-hover: #1D4ED8;
            --fc-accent-light: #EFF6FF;
            --fc-border: #E2E8F0;
            --fc-success: #10B981;
            
            --spacing-1: 8px;
            --spacing-2: 16px;
            --spacing-3: 24px;
            --spacing-4: 32px;
            --spacing-6: 48px;
            --spacing-8: 64px;
            --spacing-12: 96px;
            
            --container-width: 1100px;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--fc-bg-main);
            color: var(--fc-text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Mandatory Rules */
        .p6od-iyagaw, .p6od-jeke, .p6od-sule, .p6od-fiweye, .p6od-omomay, 
        .p6od-zizika, .p6od-ujisoh, .p6od-azugig, .p6od-zajoxuy, 
        .p6od-niselog, .p6od-rebuma, .p6od-avuji {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            white-space: normal;
            line-height: 1.2;
            color: var(--fc-text-primary);
            margin-bottom: var(--spacing-2);
        }

        p {
            word-break: keep-all;
            margin-bottom: var(--spacing-2);
            color: var(--fc-text-secondary);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* Navigation (Reused Structure, Styled uniquely for this theme) */
        .p6od-iyagaw {
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--fc-border);
            position: sticky;
            top: 0;
            z-index: 100;
            justify-content: center;
        }

        .p6od-iyagaw .p6od-jeke {
            width: 100%;
            max-width: var(--container-width);
            padding: var(--spacing-2) var(--spacing-3);
            justify-content: space-between;
            align-items: center;
        }

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

        .p6od-sule {
            gap: var(--spacing-3);
            align-items: center;
        }

        .p6od-nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--fc-text-secondary);
            padding: var(--spacing-1) var(--spacing-2);
            border-radius: 6px;
        }

        .p6od-nav-link:hover {
            color: var(--fc-accent);
            background: var(--fc-accent-light);
        }

        .p6od-nav-link.active {
            color: var(--fc-accent);
            font-weight: 700;
            background: var(--fc-accent-light);
        }

        /* Download Splash Header */
        .p6od-fiweye {
            width: 100%;
            background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
            padding: var(--spacing-8) var(--spacing-3);
            justify-content: center;
            border-bottom: 1px dashed var(--fc-border);
        }

        .p6od-fiweye .p6od-jeke {
            width: 100%;
            max-width: var(--container-width);
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .p6od-fiweye .p6od-zizika {
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            width: 100%;
        }

        .p6od-zizika-badge {
            background: #DBEAFE;
            color: var(--fc-accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: var(--spacing-3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .p6od-zizika-badge svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .p6od-fiweye h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: var(--spacing-3);
            color: var(--fc-text-primary);
        }

        .p6od-fiweye p {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            max-width: 600px;
            margin-bottom: var(--spacing-4);
        }

        /* Main Content Container */
        .p6od-ujisoh {
            width: 100%;
            justify-content: center;
            padding: var(--spacing-8) var(--spacing-3);
        }

        .p6od-ujisoh > .p6od-jeke {
            width: 100%;
            max-width: var(--container-width);
            flex-direction: column;
        }

        /* Section Titles */
        .p6od-section-title {
            width: 100%;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: var(--spacing-4);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--fc-text-primary);
        }
        
        .p6od-section-title::before {
            content: '';
            display: block;
            width: 24px;
            height: 4px;
            background: var(--fc-accent);
            border-radius: 2px;
        }

        /* Download Options Grid */
        .p6od-azugig {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--spacing-4);
            margin-bottom: var(--spacing-8);
        }

        /* Download Card */
        .p6od-zajoxuy {
            background: var(--fc-bg-surface);
            border: 1px solid var(--fc-border);
            border-radius: 12px;
            padding: var(--spacing-4);
            flex-direction: column;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .p6od-zajoxuy:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
            border-color: var(--fc-accent);
        }

        .p6od-zajoxuy-featured {
            border: 2px solid var(--fc-accent);
        }

        .p6od-zajoxuy-featured::after {
            content: '推荐版';
            position: absolute;
            top: 12px;
            right: -24px;
            background: var(--fc-accent);
            color: white;
            font-size: 12px;
            font-weight: bold;
            padding: 4px 24px;
            transform: rotate(45deg);
        }

        .p6od-zajoxuy-icon {
            width: 48px;
            height: 48px;
            background: var(--fc-accent-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--spacing-3);
        }

        .p6od-zajoxuy-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--fc-accent);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .p6od-zajoxuy h3 {
            font-size: 1.25rem;
            margin-bottom: var(--spacing-1);
        }

        .p6od-zajoxuy-meta {
            display: flex;
            gap: var(--spacing-2);
            font-size: 13px;
            color: var(--fc-text-tertiary);
            margin-bottom: var(--spacing-3);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        }

        .p6od-zajoxuy p {
            font-size: 14px;
            flex-grow: 1;
            margin-bottom: var(--spacing-4);
        }

        /* Buttons */
        .p6od-qabujiy {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: var(--fc-accent);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            gap: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .p6od-qabujiy:hover {
            background: var(--fc-accent-hover);
        }

        .p6od-qabujiy svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .p6od-mozunot {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: var(--fc-bg-main);
            color: var(--fc-text-primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            gap: 8px;
            border: 1px solid var(--fc-border);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .p6od-mozunot:hover {
            background: var(--fc-border);
        }

        /* Checksum & Technical Area */
        .p6od-niselog {
            width: 100%;
            background: #0F172A;
            border-radius: 16px;
            padding: var(--spacing-6);
            color: #F8FAFC;
            position: relative;
            overflow: hidden;
        }

        .p6od-niselog::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2563EB, #00FFCC);
        }

        .p6od-niselog .p6od-section-title {
            color: #F8FAFC;
        }
        
        .p6od-niselog .p6od-section-title::before {
            background: #00FFCC;
        }

        .p6od-omomay-table {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 13px;
        }

        .p6od-omomay-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .p6od-omomay-col-name {
            color: #94A3B8;
            min-width: 120px;
        }

        .p6od-omomay-col-hash {
            color: #00FFCC;
            word-break: break-all;
            flex-grow: 1;
            text-align: right;
        }

        /* Footer */
        .p6od-rebuma {
            width: 100%;
            background: var(--fc-bg-surface);
            border-top: 1px solid var(--fc-border);
            padding: var(--spacing-8) var(--spacing-3) var(--spacing-4);
            justify-content: center;
            margin-top: auto;
        }

        .p6od-rebuma .p6od-ujisoh {
            width: 100%;
            max-width: var(--container-width);
            flex-direction: column;
            padding: 0;
        }

        .p6od-rebuma .p6od-niselog {
            width: 100%;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-4);
            background: transparent;
            padding: 0;
            border-radius: 0;
        }

        .p6od-rebuma .p6od-niselog::before {
            display: none;
        }

        .p6od-avuji {
            flex-direction: column;
            gap: 12px;
        }

        .p6od-footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--fc-text-primary);
            margin-bottom: var(--spacing-1);
        }

        .p6od-avuji h4 {
            font-size: 14px;
            color: var(--fc-text-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: var(--spacing-2);
        }

        .p6od-footer-link {
            font-size: 14px;
            color: var(--fc-text-secondary);
        }

        .p6od-footer-link:hover {
            color: var(--fc-accent);
        }

        .p6od-footer-bottom {
            width: 100%;
            border-top: 1px solid var(--fc-border);
            margin-top: var(--spacing-6);
            padding-top: var(--spacing-4);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--fc-text-tertiary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .p6od-sule {
                display: none; /* Mobile menu logic handled by JS ideally, simplified here */
            }
            .p6od-rebuma .p6od-niselog {
                grid-template-columns: 1fr;
            }
            .p6od-omomay-row {
                flex-direction: column;
                gap: 8px;
            }
            .p6od-omomay-col-hash {
                text-align: left;
            }
            .p6od-footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

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