/* CSS Reset & Base */
        :root {
            --brand-primary: #FC5A24;
            --brand-gradient: linear-gradient(135deg, #FF7A00 0%, #E63900 100%);
            --bg-dark: #0B0E14;
            --bg-surface: #151A23;
            --bg-surface-light: #1F2633;
            --text-main: #FFFFFF;
            --text-muted: #94A3B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --space-8: 8px;
            --space-16: 16px;
            --space-24: 24px;
            --space-32: 32px;
            --space-48: 48px;
            --space-64: 64px;
            --space-96: 96px;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        /* Typography */
        h1, h2, h3, h4, h5, p {
            margin: 0;
            white-space: normal;
        }

        /* Essential Flexbox Rules */
        .hiLxq-wefimef, .hiLxq-uhuwi, .hiLxq-xugupe-list {
            display: flex;
            flex-wrap: wrap;
        }
        .hiLxq-wefimef > *, .hiLxq-uhuwi > *, .hiLxq-xugupe-list > * {
            min-width: 0;
        }

        /* Essential Text Wrap Rules */
        .hiLxq-pawu, .hiLxq-udutuc, .hiLxq-cawojih, .hiLxq-akoqumi {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Container */
        .hiLxq-kazuw {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-24);
            box-sizing: border-box;
        }

        /* --- Navigation (Reused Structure) --- */
        .hiLxq-veca {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(11, 14, 20, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .hiLxq-veca .hiLxq-wefimef {
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .hiLxq-logo img {
            height: 32px;
        }
        .hiLxq-xugupe-list {
            gap: var(--space-32);
        }
        .hiLxq-xugupe {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        .hiLxq-xugupe:hover {
            color: var(--text-main);
        }
        .hiLxq-xugupe.active {
            color: var(--brand-primary);
        }
        .hiLxq-xugupe.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand-primary);
        }

        /* --- Top Display Area (Pawu) --- */
        .hiLxq-pawu {
            position: relative;
            padding: 160px 0 100px;
            min-height: 60vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hiLxq-pawu::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('images/download_hero.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        .hiLxq-pawu::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgba(11,14,20,0) 0%, #0B0E14 100%);
            z-index: 1;
        }
        .hiLxq-pawu .hiLxq-kazuw {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .hiLxq-pawu h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-24);
            background: linear-gradient(to right, #ffffff, #a0aabf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }
        .hiLxq-pawu p {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto var(--space-48);
        }

        /* Platform Anchor Links (Zuvacot) */
        .hiLxq-zuvacot {
            display: flex;
            justify-content: center;
            gap: var(--space-24);
            flex-wrap: wrap;
        }
        .hiLxq-sexocu {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            color: var(--text-main);
            font-weight: 500;
            backdrop-filter: blur(8px);
            transition: all 0.3s;
        }
        .hiLxq-sexocu:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hiLxq-sexocu svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* --- Download Sections (Udutuc) --- */
        .hiLxq-udutuc {
            padding: var(--space-96) 0;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }
        .hiLxq-udutuc:last-of-type {
            border-bottom: none;
        }
        .hiLxq-udutuc .hiLxq-wefimef {
            align-items: center;
            gap: var(--space-64);
        }
        
        .hiLxq-udutuc-content {
            flex: 1 1 400px;
        }
        .hiLxq-udutuc-visual {
            flex: 1 1 500px;
            position: relative;
        }

        /* Alternating Layout */
        .hiLxq-udutuc.reverse .hiLxq-wefimef {
            flex-direction: row-reverse;
        }

        /* Visual Treatment */
        .hiLxq-udutuc-visual img {
            border-radius: 24px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .hiLxq-udutuc-visual:hover img {
            transform: scale(1.02) translateY(-10px);
        }
        .hiLxq-visual-glow {
            position: absolute;
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            background: var(--brand-primary);
            filter: blur(120px);
            opacity: 0.15;
            z-index: -1;
            border-radius: 50%;
        }

        /* Content Styling */
        .hiLxq-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--bg-surface-light);
            border-radius: 8px;
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: var(--space-24);
        }
        .hiLxq-badge svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        .hiLxq-udutuc h2 {
            font-size: clamp(2rem, 3vw + 1rem, 3rem);
            font-weight: 700;
            margin-bottom: var(--space-24);
            line-height: 1.2;
        }
        .hiLxq-udutuc > .hiLxq-wefimef > .hiLxq-udutuc-content > p {
            color: var(--text-muted);
            font-size: 1.125rem;
            margin-bottom: var(--space-32);
        }

        /* Feature Cards (Cawojih) */
        .hiLxq-cawojih-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-24);
            margin-bottom: var(--space-48);
        }
        .hiLxq-cawojih {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .hiLxq-cawojih-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(252, 90, 36, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
        }
        .hiLxq-cawojih-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .hiLxq-cawojih-text h4 {
            font-size: 1.125rem;
            margin-bottom: 4px;
            color: var(--text-main);
        }
        .hiLxq-cawojih-text p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Download Action Area */
        .hiLxq-action-area {
            display: flex;
            align-items: center;
            gap: var(--space-24);
            flex-wrap: wrap;
        }
        .hiLxq-ihojaqa {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 40px;
            background: var(--brand-gradient);
            color: #fff;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(252, 90, 36, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .hiLxq-ihojaqa:hover {
            box-shadow: 0 12px 32px rgba(252, 90, 36, 0.5);
            transform: translateY(-3px);
        }
        .hiLxq-ihojaqa svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }
        
        /* Version Info Card (Akoqumi) */
        .hiLxq-akoqumi {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 0.875rem;
            color: var(--text-muted);
            border-left: 2px solid var(--border-color);
            padding-left: 16px;
        }
        .hiLxq-akoqumi span {
            display: block;
        }
        .hiLxq-akoqumi strong {
            color: var(--text-main);
            font-weight: 500;
        }

        /* Mobile specific layout twist */
        .hiLxq-mobile-block {
            background: var(--bg-surface);
            border-radius: 32px;
            padding: var(--space-64);
            margin-top: var(--space-64);
            border: 1px solid var(--border-color);
        }
        .hiLxq-mobile-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: var(--space-48);
            align-items: center;
        }
        .hiLxq-mobile-col {
            display: flex;
            flex-direction: column;
            gap: var(--space-32);
        }
        .hiLxq-mobile-center-img {
            max-width: 300px;
            margin: 0 auto;
        }

        /* --- Footer (Reused Structure) --- */
        .hiLxq-ibotoba {
            background: #000000;
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-color);
        }
        .hiLxq-ibotoba .hiLxq-wefimef {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
        }
        .hiLxq-ibotoba-brand {
            flex: 1 1 300px;
        }
        .hiLxq-ibotoba-brand h4 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 16px;
        }
        .hiLxq-ibotoba-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .hiLxq-ibotoba-links {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
        }
        .hiLxq-ugej-group h5 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 24px;
        }
        .hiLxq-ugej-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .hiLxq-ugej-list li {
            margin-bottom: 12px;
        }
        .hiLxq-ugej {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        .hiLxq-ugej:hover {
            color: var(--brand-primary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hiLxq-mobile-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hiLxq-mobile-col {
                align-items: center;
            }
            .hiLxq-mobile-block {
                padding: var(--space-32);
            }
            .hiLxq-mobile-center-img {
                grid-row: 1; /* Move image to top on mobile */
            }
        }

        @media (max-width: 768px) {
            .hiLxq-veca .hiLxq-xugupe-list {
                display: none; /* Simplistic approach for header links on mobile without JS */
            }
            .hiLxq-udutuc .hiLxq-wefimef, 
            .hiLxq-udutuc.reverse .hiLxq-wefimef {
                flex-direction: column;
            }
            .hiLxq-action-area {
                flex-direction: column;
                align-items: flex-start;
            }
            .hiLxq-akoqumi {
                border-left: none;
                border-top: 2px solid var(--border-color);
                padding-left: 0;
                padding-top: 16px;
                width: 100%;
            }
            .hiLxq-cawojih-grid {
                grid-template-columns: 1fr;
            }
        }

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

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

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

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

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

.hiLxq-hdr-veca a.hiLxq-hdr-xugupe {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: flex;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.hiLxq-hdr-veca a.hiLxq-hdr-xugupe,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe:hover,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe:focus,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe:active,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe.active,
.hiLxq-hdr-veca a.hiLxq-hdr-xugupe[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);
}

.hiLxq-hdr-veca .hiLxq-hdr-kazuw{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.hiLxq-hdr-veca .hiLxq-hdr-wefimef{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.hiLxq-hdr-veca .hiLxq-hdr-uhuwi{
            word-break: break-word;
            overflow-wrap: break-word;
            position: relative;
        }

.hiLxq-hdr-veca{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
        }

.hiLxq-hdr-veca .hiLxq-hdr-wefimef{
            justify-content: space-between;
            align-items: center;
        }

.hiLxq-hdr-veca .hiLxq-hdr-logo{
            flex: 0 0 auto;
            min-width: 0;
        }

.hiLxq-hdr-veca .hiLxq-hdr-logo img{
            height: 36px;
            display: block;
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe-list{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            list-style: none;
            gap: 8px;
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe{
            text-decoration: none;
            color: #333333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe:hover{
            color: #ff6a00;
            background: rgba(255, 106, 0, 0.05);
        }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe.active{
            background: #ff6a00;
            color: #fff;
        }

@media (max-width: 768px){.hiLxq-hdr-veca .hiLxq-hdr-wefimef{
                flex-direction: column;
                gap: 16px;
            }

.hiLxq-hdr-veca .hiLxq-hdr-xugupe-list{
                justify-content: center;
            }}

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

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

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

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

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

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

.hiLxq-ftr-ibotoba .hiLxq-ftr-kazuw{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-wefimef{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.hiLxq-ftr-ibotoba{
            background: #1a1a1a;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-wefimef{
            justify-content: space-between;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-brand{
            flex: 1;
            min-width: 260px;
            margin-bottom: 40px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-brand h4{
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-links{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            gap: 64px;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej-group h5{
            color: #fff;
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej-list{
            list-style: none;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej{
            display: block;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-ugej:hover{
            color: #ff6a00;
        }

.hiLxq-ftr-ibotoba .hiLxq-ftr-copyright{
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

@media (max-width: 768px){.hiLxq-ftr-ibotoba .hiLxq-ftr-ibotoba-links{
                gap: 32px;
            }}