        :root {
            --bg-warm: #fdf8f2;
            --bg-card: #fffdf9;
            --bg-cream: #faf5ed;
            --text-deep: #2c221c;
            --text-mid: #5c4a38;
            --text-light: #7d6b56;
            --accent-amber: #c87d2c;
            --accent-deep: #9e5f1d;
            --accent-glow: #e8a44c;
            --link-teal: #2d7d6c;
            --link-teal-hover: #1e5c4e;
            --header-bg: #1f1a14;
            --header-text: #e8dcc8;
            --border-subtle: #e8ddd0;
            --shadow-card: 0 8px 22px -10px rgba(80, 40, 10, 0.10);
            --shadow-hover: 0 18px 32px -12px rgba(80, 40, 10, 0.18);
            --radius-lg: 1.8rem;
            --radius-md: 1.2rem;
            --radius-sm: 0.7rem;
            --font-stack: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: var(--font-stack);
            background: var(--bg-warm);
            color: var(--text-deep);
            line-height: 1.65;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 1.8rem;
        }

        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: var(--accent-amber);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 200;
            transition: top 0.3s;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Header */
        .site-header {
            background: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 16px rgba(0, 0, 0, 0.25);
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
            gap: 1rem;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, #e8a44c 0%, #c87d2c 60%, #a05c18 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.55rem;
            font-weight: 700;
            color: #e8dcc8;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .logo-badge {
            font-size: 0.65rem;
            background: rgba(232, 164, 76, 0.2);
            padding: 0.18rem 0.55rem;
            border-radius: 20px;
            color: #e8a44c;
            font-weight: 600;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #c4b89a;
            transition: color var(--transition-fast);
            font-size: 0.95rem;
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #e8a44c;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e8a44c;
            border-radius: 1px;
        }

        /* Page Hero */
        .page-hero {
            padding: 3.5rem 0 2rem;
            text-align: center;
            background: var(--bg-cream);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 480px;
            height: 480px;
            background: radial-gradient(circle at 50% 30%, rgba(200, 125, 44, 0.08) 0%, transparent 68%),
                radial-gradient(circle at 30% 60%, rgba(45, 125, 108, 0.05) 0%, transparent 58%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .page-hero>* {
            position: relative;
            z-index: 1;
        }
        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(125deg, #3d2814 0%, #7a4e24 45%, #2d5c4e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.7rem;
            letter-spacing: -0.02em;
        }
        .page-hero .hero-sub {
            font-size: 1.1rem;
            color: #5c4a38;
            max-width: 620px;
            margin: 0 auto 0.4rem;
            font-weight: 460;
        }
        .page-hero .hero-note {
            font-size: 0.9rem;
            color: #7d6b56;
            max-width: 580px;
            margin: 0 auto 1.2rem;
        }
        .version-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            justify-content: center;
            font-size: 0.82rem;
            color: #6b5a45;
            margin-bottom: 1rem;
        }
        .version-badge-row span {
            background: rgba(255, 253, 249, 0.8);
            padding: 0.3rem 0.8rem;
            border-radius: 18px;
            border: 1px solid var(--border-subtle);
            font-weight: 500;
            white-space: nowrap;
        }

        .btn-outline-sm {
            display: inline-block;
            padding: 0.45rem 1.2rem;
            border-radius: 22px;
            border: 1.5px solid #c8a278;
            color: #5c3a1e;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all var(--transition-smooth);
            background: transparent;
            white-space: nowrap;
        }
        .btn-outline-sm:hover {
            background: rgba(200, 125, 44, 0.08);
            border-color: var(--accent-amber);
            color: #3d2814;
            transform: translateY(-1px);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: #3d2814;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            text-align: center;
            color: #6b5a45;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Platform Section */
        .platform-section {
            padding: 2.8rem 0 1rem;
        }
        .platform-section:target {
            animation: highlightPulse 1.2s ease-out;
        }
        @keyframes highlightPulse {
            0% {
                background-color: rgba(232, 164, 76, 0.10);
            }
            100% {
                background-color: transparent;
            }
        }
        .platform-card-full {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2.2rem 2rem;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            margin-bottom: 2rem;
            transition: all var(--transition-smooth);
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            align-items: flex-start;
        }
        .platform-card-full:hover {
            box-shadow: var(--shadow-hover);
            border-color: #dcc8a8;
            background: #fffdf7;
        }
        .platform-icon-col {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            background: #fdf4e5;
        }
        .platform-icon-col.win-bg {
            background: #fef4e5;
        }
        .platform-icon-col.mac-bg {
            background: #e8f5f0;
        }
        .platform-icon-col.linux-bg {
            background: #f5f2ec;
        }
        .platform-icon-col.android-bg {
            background: #faf5ed;
        }
        .platform-icon-col.ios-bg {
            background: #f6f2fa;
        }
        .platform-info {
            flex: 1;
            min-width: 220px;
        }
        .platform-info h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3d2814;
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .platform-info h2 .platform-badge {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.65rem;
            border-radius: 14px;
            letter-spacing: 0.3px;
        }
        .badge-win {
            background: #fef4e5;
            color: #b8701e;
        }
        .badge-mac {
            background: #e8f5f0;
            color: #1e6b56;
        }
        .badge-linux {
            background: #f5f2ec;
            color: #6b4e2e;
        }
        .badge-android {
            background: #faf5ed;
            color: #7c5c3a;
        }
        .badge-ios {
            background: #f6f2fa;
            color: #5c4a6e;
        }
        .platform-info .client-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #5c3a1e;
            margin-bottom: 0.5rem;
        }
        .platform-info .client-desc {
            color: #5c4a38;
            font-size: 0.93rem;
            line-height: 1.6;
            margin-bottom: 0.8rem;
        }
        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }
        .feature-tags span {
            background: #faf5ed;
            color: #6b5a45;
            padding: 0.25rem 0.7rem;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 500;
            border: 1px solid #f0e6d6;
            white-space: nowrap;
        }
        .feature-tags span.highlight-tag {
            background: #fce4c4;
            color: #5c3410;
            font-weight: 600;
            border-color: #e8a44c;
        }
        .download-action-area {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--accent-amber);
            color: #fff;
            padding: 0.65rem 1.6rem;
            border-radius: 32px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 3px 10px rgba(160, 92, 24, 0.25);
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .btn-download:hover {
            background: var(--accent-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(160, 92, 24, 0.35);
        }
        .btn-download-alt {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: transparent;
            color: #5c3a1e;
            padding: 0.6rem 1.4rem;
            border-radius: 32px;
            font-weight: 600;
            text-decoration: none;
            border: 1.5px solid #c8a278;
            transition: all var(--transition-smooth);
            font-size: 0.88rem;
            white-space: nowrap;
        }
        .btn-download-alt:hover {
            background: rgba(200, 125, 44, 0.08);
            border-color: var(--accent-amber);
            color: #3d2814;
            transform: translateY(-2px);
        }
        .extra-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.5rem;
            font-size: 0.82rem;
        }
        .extra-links a {
            color: #8b7358;
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .extra-links a:hover {
            color: var(--accent-amber);
            text-decoration: underline;
        }

        /* Quick Jump */
        .quick-jump {
            padding: 1rem 0 2.5rem;
            text-align: center;
        }
        .quick-jump-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            justify-content: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .quick-jump a {
            display: inline-block;
            padding: 0.45rem 1rem;
            border-radius: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            color: #5c4a38;
            text-decoration: none;
            font-size: 0.84rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .quick-jump a:hover {
            background: #fffdf7;
            border-color: #dcc8a8;
            color: var(--accent-amber);
            transform: translateY(-1px);
        }

        /* Info Banner */
        .info-banner {
            background: linear-gradient(105deg, #fdf4e5 0%, #fef9f0 40%, #f6f2ea 100%);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            margin: 1rem auto 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 780px;
            border: 1px solid #f0dbb8;
        }
        .info-banner p {
            margin: 0;
            width: 100%;
            color: #5c3a1e;
            font-weight: 500;
            font-size: 0.93rem;
            line-height: 1.6;
        }
        .info-banner strong {
            color: #7a4e24;
        }

        /* Footer */
        .site-footer {
            background: #1f1a14;
            color: #c4b89a;
            padding: 2.5rem 0;
            margin-top: 1rem;
            border-top: 1px solid #3d3224;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }
        .copyright {
            font-size: 0.82rem;
            color: #9e8d74;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .footer-links a {
            color: #c4b89a;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .footer-links a:hover {
            color: #e8a44c;
        }

        /* Trust Strip */
        .trust-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 1.5rem 0;
            font-size: 0.88rem;
            color: #7d6b56;
            text-align: center;
        }
        .trust-strip .trust-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-weight: 500;
        }
        .trust-strip .trust-icon {
            font-size: 1.2rem;
        }

        /* Responsive */
        @media (max-width: 720px) {
            .container {
                padding: 0 1.1rem;
            }
            .navbar {
                flex-direction: column;
                gap: 0.6rem;
            }
            .nav-links {
                gap: 0.9rem;
                font-size: 0.85rem;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .page-hero .hero-sub {
                font-size: 0.95rem;
            }
            .platform-card-full {
                flex-direction: column;
                padding: 1.5rem 1.2rem;
                gap: 1rem;
            }
            .platform-icon-col {
                width: 54px;
                height: 54px;
                border-radius: 16px;
                font-size: 1.8rem;
            }
            .platform-info h2 {
                font-size: 1.25rem;
            }
            .section-title {
                font-size: 1.55rem;
            }
            .download-action-area {
                flex-direction: column;
                align-items: flex-start;
            }
            .trust-strip {
                gap: 0.8rem;
                font-size: 0.78rem;
            }
            .quick-jump-inner {
                gap: 0.4rem;
            }
            .quick-jump a {
                font-size: 0.78rem;
                padding: 0.4rem 0.8rem;
            }
        }
        @media (max-width: 420px) {
            .page-hero h1 {
                font-size: 1.5rem;
            }
            .platform-info h2 {
                font-size: 1.1rem;
            }
            .btn-download,
            .btn-download-alt {
                padding: 0.55rem 1.2rem;
                font-size: 0.82rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
                gap: 0.8rem;
            }
        }