
        * {
            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%);
        }

        .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;
        }

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

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

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

        .xiqi-nav-link:hover {
            color: #4285f4;
            transform: translateY(-2px);
        }

        .xiqi-nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #4285f4;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

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

        .xiqi-hero {
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.9), rgba(219, 68, 55, 0.9));
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .xiqi-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: xiqi-float 20s infinite linear;
        }

        @keyframes xiqi-float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-100px); }
        }

        .xiqi-hero-content {
            position: relative;
            z-index: 2;
        }

        .xiqi-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: xiqi-slideIn 1s ease-out;
        }

        @keyframes xiqi-slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .xiqi-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: xiqi-slideIn 1s ease-out 0.3s both;
        }

        .xiqi-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
            animation: xiqi-slideIn 1s ease-out 0.6s both;
        }

        .xiqi-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
        }

        .xiqi-main-content {
            background: white;
            padding: 80px 0;
        }

        .xiqi-section {
            margin-bottom: 60px;
        }

        .xiqi-section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .xiqi-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 2px;
        }

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

        .xiqi-feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .xiqi-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .xiqi-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }

        .xiqi-feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

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

        .xiqi-version-info {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            border-left: 5px solid #4285f4;
        }

        .xiqi-version-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

        .xiqi-version-item {
            padding: 10px 0;
            border-bottom: 1px solid #dee2e6;
            position: relative;
            padding-left: 25px;
        }

        .xiqi-version-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #34a853;
            font-weight: bold;
        }

        .xiqi-cta-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

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

        .xiqi-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .xiqi-download-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 20px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
        }

        .xiqi-download-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
        }

        .xiqi-footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .xiqi-footer-section h3 {
            margin-bottom: 15px;
            color: #4285f4;
        }

        .xiqi-footer-link {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .xiqi-footer-link:hover {
            color: white;
        }

        .xiqi-copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            color: #bdc3c7;
        }

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

            .xiqi-main-title {
                font-size: 2.5rem;
            }

            .xiqi-features-grid {
                grid-template-columns: 1fr;
            }

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

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