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

        body {
            font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fb;
            color: #0f182a;
            line-height: 1.6;
            padding-top: 64px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: #2a6df4;
            text-decoration: none;
        }
        a:hover {
            color: #1a56d6;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 18px;
        }

        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            padding: 8px 18px;
            min-height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: box-shadow 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }

        .navbar .logo {
            font-size: 20px;
            font-weight: 700;
            color: #0f182a;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 2px;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .navbar .logo:hover {
            transform: scale(1.04);
        }
        .navbar .logo .accent {
            color: #2a6df4;
        }
        .navbar .logo .light {
            font-weight: 300;
            color: #8a9bb5;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2px;
            align-items: center;
            justify-content: flex-end;
        }

        .nav-links a {
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            color: #4a5a72;
            transition: all 0.3s;
            position: relative;
            white-space: nowrap;
            min-height: 36px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #2a6df4;
            transition: width 0.3s ease, left 0.3s ease;
            border-radius: 4px;
        }

        .nav-links a:hover::after {
            width: 50%;
            left: 25%;
        }

        .nav-links a:hover {
            background: #eef2f7;
            color: #0f182a;
        }

        .nav-links a.active {
            background: #2a6df4;
            color: #fff;
            box-shadow: 0 4px 12px rgba(42, 109, 244, 0.25);
        }

        .nav-links a.active::after {
            display: none;
        }

        .nav-links a.active:hover {
            background: #1a56d6;
        }

        .nav-links .nav-badge {
            background: rgba(42, 109, 244, 0.12);
            color: #2a6df4;
            font-size: 9px;
            font-weight: 700;
            padding: 0px 8px;
            border-radius: 30px;
            line-height: 18px;
            letter-spacing: 0.2px;
        }

        .nav-links a.active .nav-badge {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        
        .btn-dl {
            background: #2a6df4;
            color: #fff;
            border: none;
            padding: 16px 24px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: inherit;
            width: 100%;
            max-width: 280px;
            box-shadow: 0 8px 24px rgba(42, 109, 244, 0.2);
            min-height: 54px;
            touch-action: manipulation;
            position: relative;
            overflow: hidden;
        }

        .btn-dl:hover {
            background: #1a56d6;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 40px rgba(42, 109, 244, 0.35);
            color: #fff;
        }

        .btn-dl:active {
            transform: scale(0.95);
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: scale(0);
            animation: rippleAnim 0.6s linear;
            pointer-events: none;
        }

        @keyframes rippleAnim {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        
        .page-header {
            text-align: center;
            padding: 24px 0 16px;
        }
        .page-header h1 {
            font-size: 26px;
            font-weight: 700;
            color: #0f182a;
        }
        .page-header p {
            color: #5a6e8a;
            font-size: 15px;
            margin-top: 2px;
        }

        
        .download-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            margin: 16px 0 20px;
        }

        .download-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 18px 30px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }

        .download-card:hover {
            border-color: #2a6df4;
            box-shadow: 0 12px 44px rgba(42, 109, 244, 0.08);
            transform: translateY(-8px) scale(1.01);
        }

        .download-card .icon {
            font-size: 42px;
            margin-bottom: 4px;
            transition: transform 0.4s;
        }

        .download-card:hover .icon {
            transform: scale(1.15) rotate(-4deg);
        }

        .download-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0f182a;
        }
        .download-card .sub {
            color: #5a6e8a;
            font-size: 13px;
            margin-bottom: 4px;
        }
        .download-card .desc {
            color: #4a5a72;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .download-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            justify-content: center;
            margin-bottom: 16px;
        }
        .download-card .tags span {
            background: #f0f3f8;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 11px;
            color: #4a5a72;
            transition: all 0.3s;
        }

        .download-card .tags span.highlight {
            background: rgba(42, 109, 244, 0.08);
            color: #2a6df4;
            font-weight: 500;
        }

        .download-card .tags span:hover {
            transform: translateY(-2px);
            background: #2a6df4;
            color: #fff;
        }

        
        .download-note {
            background: #f0f3f8;
            border-radius: 14px;
            padding: 14px 18px;
            text-align: center;
            margin: 6px 0 16px;
            transition: all 0.4s;
        }

        .download-note:hover {
            background: #e8edf5;
            transform: scale(1.01);
        }

        .download-note p {
            color: #4a5a72;
            font-size: 13px;
            margin: 0;
            line-height: 1.7;
        }
        .download-note p strong {
            color: #2a6df4;
            font-weight: 600;
        }

        
        .footer {
            text-align: center;
            padding: 24px 0 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            margin-top: 12px;
            color: #8a9bb5;
            font-size: 12px;
        }

        .footer .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 18px;
            margin-bottom: 6px;
        }

        .footer .links a {
            color: #5a6e8a;
            font-size: 12px;
            transition: all 0.3s;
            position: relative;
        }

        .footer .links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: #2a6df4;
            transition: width 0.3s;
        }

        .footer .links a:hover::after {
            width: 100%;
        }

        .footer .links a:hover {
            color: #2a6df4;
        }

        
        @media (min-width: 768px) {
            body {
                padding-top: 76px;
            }

            .container {
                padding: 0 32px;
            }

            .navbar {
                padding: 0 32px;
                height: 76px;
                min-height: 76px;
            }

            .navbar .logo {
                font-size: 24px;
            }

            .nav-links {
                gap: 4px;
            }

            .nav-links a {
                padding: 8px 20px;
                font-size: 14px;
                min-height: 42px;
            }

            .nav-links .nav-badge {
                font-size: 10px;
                padding: 1px 10px;
                line-height: 20px;
            }

            .btn-dl {
                max-width: 200px;
                padding: 14px 36px;
                font-size: 16px;
                min-height: 50px;
            }

            .page-header h1 {
                font-size: 34px;
            }
            .page-header p {
                font-size: 17px;
            }

            .download-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                margin: 20px 0 30px;
            }

            .download-card {
                padding: 34px 24px 36px;
            }
            .download-card .icon {
                font-size: 48px;
            }
            .download-card h3 {
                font-size: 24px;
            }

            .download-note p {
                font-size: 14px;
            }

            .footer .links {
                gap: 28px;
            }
            .footer .links a {
                font-size: 14px;
            }
            .footer {
                font-size: 14px;
                padding: 32px 0 18px;
            }
        }

        
        @media (max-width: 360px) {
            .container {
                padding: 0 12px;
            }

            .navbar {
                padding: 6px 12px;
                min-height: 56px;
            }

            .navbar .logo {
                font-size: 17px;
            }

            .nav-links a {
                font-size: 11px;
                padding: 4px 8px;
                min-height: 30px;
            }

            .nav-links .nav-badge {
                font-size: 8px;
                padding: 0px 6px;
                line-height: 16px;
            }

            .page-header h1 {
                font-size: 22px;
            }

            .download-card {
                padding: 20px 14px 24px;
            }
            .download-card .icon {
                font-size: 36px;
            }
            .download-card h3 {
                font-size: 19px;
            }

            .btn-dl {
                font-size: 14px;
                padding: 12px 16px;
                min-height: 44px;
            }
        }
    