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

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

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

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

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

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

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

        .kubwen-nav-link:hover {
            color: #4a90e2;
        }

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

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

        .kubwen-hero {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
            padding: 80px 0;
            text-align: center;
            margin: 40px 20px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .kubwen-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .kubwen-hero-subtitle {
            font-size: 1.3rem;
            color: #7f8c8d;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .kubwen-download-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px;
            border-radius: 15px;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }

        .kubwen-download-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

        .kubwen-info-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .kubwen-info-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .kubwen-info-value {
            font-size: 1.1rem;
            font-weight: 600;
        }

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

        .kubwen-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6);
        }

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

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

        .kubwen-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .kubwen-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
        }

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

        .kubwen-feature-desc {
            color: #7f8c8d;
            line-height: 1.6;
        }

        .kubwen-system-requirements {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }

        .kubwen-requirements-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #2c3e50;
        }

        .kubwen-requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .kubwen-requirement-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }

        .kubwen-requirement-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .kubwen-requirement-value {
            color: #7f8c8d;
        }

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

        .kubwen-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .kubwen-footer-text {
            margin-bottom: 20px;
            opacity: 0.8;
        }

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

        .kubwen-footer-link {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .kubwen-footer-link:hover {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .kubwen-hero-title {
                font-size: 2.5rem;
            }

            .kubwen-nav-menu {
                display: none;
            }

            .kubwen-download-title {
                font-size: 2rem;
            }

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

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

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