        *, *::before, *::after {
            box-sizing: border-box;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulseGlow {
            0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2); }
            70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
        }
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #1e293b;
            background-color: #f8fafc;
            line-height: 1.625;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 76px;
            display: table;
            width: 100%;
        }
        .logo-box {
            display: table-cell;
            vertical-align: middle;
            width: 280px;
        }
        .logo-link {
            text-decoration: none;
            color: #0f172a;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: -0.5px;
        }
        .logo-img {
            vertical-align: middle;
            margin-right: 12px;
            width: 34px;
            height: 34px;
            object-fit: contain;
        }
        .menu-box {
            display: table-cell;
            vertical-align: middle;
            text-align: right;
        }
        .menu-box a {
            color: #475569;
            text-decoration: none;
            margin-left: 32px;
            font-size: 15px;
            font-weight: 600;
            transition: color 0.25s ease;
            vertical-align: middle;
        }
        .menu-box a:hover, .menu-box a.active {
            color: #2563eb;
        }
        .github-btn {
            display: inline-block;
            background: #0f172a;
            color: #ffffff !important;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px !important;
            font-weight: 600;
            margin-left: 32px;
            transition: all 0.25s ease !important;
            border: 1px solid #0f172a;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        }
        .github-btn:hover {
            background: #1e293b !important;
            border-color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
        }
        .github-btn svg {
            vertical-align: middle;
            margin-right: 6px;
            fill: #ffffff;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .page-header {
            text-align: center;
            padding: 60px 0 40px 0;
            animation: fadeIn 0.6s ease-out;
        }
        .page-header h1 {
            font-size: 38px;
            color: #0f172a;
            font-weight: 800;
            margin: 0 0 16px 0;
            letter-spacing: -0.5px;
        }
        .page-header p {
            font-size: 16px;
            color: #475569;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .download-grid {
            display: table;
            width: 100%;
            table-layout: fixed;
            border-collapse: separate;
            border-spacing: 20px;
            margin-bottom: 40px;
            animation: fadeIn 0.8s ease-out 0.1s both;
        }
        .download-row {
            display: table-row;
        }
        .download-card {
            display: table-cell;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 36px 28px;
            text-align: center;
            vertical-align: top;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
        }
        .download-card:hover {
            border-color: #cbd5e1;
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06), 0 10px 10px -5px rgba(0,0,0,0.03);
        }
        .platform-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px auto;
            background: #f8fafc;
            border-radius: 12px;
            line-height: 64px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .download-card:hover .platform-icon {
            background: #eff6ff;
        }
        .platform-icon svg {
            vertical-align: middle;
            fill: #475569;
            transition: fill 0.3s;
        }
        .download-card:hover .platform-icon svg {
            fill: #2563eb;
        }
        .download-card h2 {
            font-size: 22px;
            color: #0f172a;
            margin: 0 0 8px 0;
            font-weight: 700;
        }
        .version-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: #2563eb;
            background: #eff6ff;
            padding: 2px 10px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .platform-desc {
            font-size: 14px;
            color: #64748b;
            margin: 0 0 28px 0;
            min-height: 44px;
            line-height: 1.5;
        }
        .btn-download {
            display: block;
            width: 100%;
            padding: 12px 16px;
            background-color: #2563eb;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            border: 1px solid #2563eb;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
        }
        .btn-download:hover {
            background-color: #1d4ed8;
            border-color: #1d4ed8;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
        }
        .sub-links {
            margin-top: 16px;
            font-size: 13px;
        }
        .sub-links a {
            color: #64748b;
            text-decoration: none;
            margin: 0 8px;
            transition: color 0.2s;
        }
        .sub-links a:hover {
            color: #2563eb;
        }
        .info-section {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 40px;
            margin-top: 20px;
            margin-bottom: 60px;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }
        .info-section h3 {
            font-size: 20px;
            color: #0f172a;
            margin: 0 0 20px 0;
            font-weight: 700;
            border-left: 4px solid #2563eb;
            padding-left: 12px;
        }
        .info-list {
            margin: 0;
            padding-left: 20px;
            color: #475569;
            font-size: 14.5px;
            line-height: 1.8;
        }
        .info-list li {
            margin-bottom: 12px;
        }
        .info-list strong {
            color: #0f172a;
        }
        footer {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 24px;
            font-size: 14px;
            border-top: 1px solid #1e293b;
            margin-top: 100px;
        }
        .footer-layout {
            display: table;
            width: 100%;
        }
        .footer-left {
            display: table-cell;
            width: 60%;
            vertical-align: top;
        }
        .footer-right {
            display: table-cell;
            width: 40%;
            text-align: right;
            vertical-align: top;
        }
        .footer-left p {
            margin: 0 0 12px 0;
            line-height: 1.6;
        }
        .footer-right p {
            margin: 0 0 12px 0;
        }
        .footer-links {
            margin-top: 20px;
        }
        .footer-links a {
            color: #64748b;
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: #cbd5e1;
        }
        @media (max-width: 992px) {
            .download-grid {
                display: block;
                border-spacing: 0;
            }
            .download-row {
                display: block;
            }
            .download-card {
                display: block;
                width: 100%;
                margin-bottom: 24px;
                padding: 32px 24px;
            }
        }
        @media (max-width: 768px) {
            .nav-container, .footer-layout {
                display: block;
                width: 100%;
            }
            .logo-box, .menu-box, .footer-left, .footer-right {
                display: block;
                width: 100%;
                text-align: left;
                padding: 0;
            }
            .logo-box {
                padding-top: 16px;
            }
            .menu-box {
                padding: 16px 0;
            }
            .menu-box a {
                margin-left: 0;
                margin-right: 24px;
                display: inline-block;
                margin-bottom: 12px;
            }
            .github-btn {
                margin-left: 0;
                margin-top: 4px;
                display: inline-block;
            }
            .footer-right {
                margin-top: 32px;
            }
            .footer-links a {
                margin-left: 0;
                margin-right: 20px;
            }
        }
    