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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .xiqi-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .xiqi-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .xiqi-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .xiqi-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #4285f4;
            text-decoration: none;
        }

        .xiqi-logo img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .xiqi-nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .xiqi-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .xiqi-nav-link:hover {
            color: #4285f4;
        }

        .xiqi-nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #4285f4;
            transition: width 0.3s ease;
        }

        .xiqi-nav-link:hover::after {
            width: 100%;
        }

        .xiqi-main {
            padding: 60px 0;
        }

        .xiqi-hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .xiqi-hero-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .xiqi-hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .xiqi-download-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
        }

        .xiqi-download-title {
            font-size: 32px;
            color: #333;
            text-align: center;
            margin-bottom: 30px;
        }

        .xiqi-download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .xiqi-download-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .xiqi-download-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .xiqi-platform-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #4285f4;
        }

        .xiqi-platform-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .xiqi-version-info {
            color: #666;
            margin-bottom: 20px;
        }

        .xiqi-download-btn {
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
        }

        .xiqi-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
        }

        .xiqi-features-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
        }

        .xiqi-features-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

        .xiqi-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .xiqi-feature-item {
            text-align: center;
            padding: 20px;
        }

        .xiqi-feature-icon {
            font-size: 40px;
            color: #4285f4;
            margin-bottom: 15px;
        }

        .xiqi-feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .xiqi-feature-desc {
            color: #666;
            line-height: 1.6;
        }

        .xiqi-system-requirements {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
        }

        .xiqi-requirements-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
            text-align: center;
        }

        .xiqi-requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .xiqi-requirement-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
        }

        .xiqi-requirement-platform {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #4285f4;
        }

        .xiqi-requirement-list {
            list-style: none;
        }

        .xiqi-requirement-list li {
            padding: 5px 0;
            color: #666;
        }

        .xiqi-requirement-list li::before {
            content: '✓';
            color: #34a853;
            font-weight: bold;
            margin-right: 10px;
        }

        .xiqi-cta-section {
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }

        .xiqi-cta-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .xiqi-cta-desc {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .xiqi-cta-btn {
            background: white;
            color: #4285f4;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .xiqi-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .xiqi-footer {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 40px 0;
            text-align: center;
            color: #666;
        }

        .xiqi-footer-content {
            margin-bottom: 20px;
        }

        .xiqi-footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .xiqi-footer-link {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .xiqi-footer-link:hover {
            color: #4285f4;
        }

        .xiqi-copyright {
            font-size: 14px;
            color: #999;
        }

        @media (max-width: 768px) {
            .xiqi-nav-menu {
                display: none;
            }

            .xiqi-hero-title {
                font-size: 32px;
            }

            .xiqi-hero-subtitle {
                font-size: 16px;
            }

            .xiqi-download-section,
            .xiqi-features-section,
            .xiqi-system-requirements,
            .xiqi-cta-section {
                padding: 30px 20px;
            }

            .xiqi-footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
    