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

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

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

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

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

        .l8uo-logo img {
            height: 40px;
            width: auto;
        }

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

        .l8uo-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 25px;
        }

        .l8uo-nav-link:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .l8uo-hero-section {
            padding: 80px 0;
            text-align: center;
            color: white;
        }

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

        .l8uo-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: l8uo-fadeInUp 1s ease-out 0.2s both;
        }

        .l8uo-download-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 40px auto;
            max-width: 800px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: l8uo-fadeInUp 1s ease-out 0.4s both;
        }

        .l8uo-version-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .l8uo-info-item {
            text-align: center;
            padding: 20px;
            background: #f8f9ff;
            border-radius: 12px;
            border: 2px solid #e8ecff;
        }

        .l8uo-info-label {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 8px;
        }

        .l8uo-info-value {
            font-size: 1.1rem;
            color: #333;
        }

        .l8uo-download-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 20px 50px;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            text-decoration: none;
            display: inline-block;
            margin: 20px 0;
        }

        .l8uo-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        .l8uo-features-section {
            background: white;
            padding: 80px 0;
        }

        .l8uo-section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #333;
        }

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

        .l8uo-feature-card {
            background: #f8f9ff;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .l8uo-feature-card:hover {
            transform: translateY(-5px);
            border-color: #667eea;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .l8uo-feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #667eea;
        }

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

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

        .l8uo-system-requirements {
            background: #f8f9ff;
            padding: 60px 0;
        }

        .l8uo-requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .l8uo-requirement-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .l8uo-requirement-title {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

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

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

        .l8uo-requirement-list li:before {
            content: "✓";
            color: #4CAF50;
            font-weight: bold;
            margin-right: 10px;
        }

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

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

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

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

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

        .l8uo-footer-section h4 {
            margin-bottom: 15px;
            color: #667eea;
        }

        .l8uo-footer-section a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .l8uo-footer-section a:hover {
            color: #667eea;
        }

        .l8uo-copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            color: #bbb;
        }

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

        @media (max-width: 768px) {
            .l8uo-nav-menu {
                flex-direction: column;
                gap: 10px;
            }

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

            .l8uo-download-card {
                margin: 20px;
                padding: 30px 20px;
            }

            .l8uo-version-info {
                grid-template-columns: 1fr;
            }
        }
    