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

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

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

        .kubwen-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 2px 10px 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 img {
            height: 40px;
            width: auto;
        }

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

        .kubwen-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .kubwen-nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

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

        .kubwen-hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .kubwen-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .kubwen-version-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 1.1rem;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

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

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

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

        .kubwen-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px 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: 24px;
            color: white;
        }

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

        .kubwen-feature-desc {
            color: #666;
            line-height: 1.8;
        }

        .kubwen-update-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .kubwen-section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: #2c3e50;
            font-weight: bold;
        }

        .kubwen-update-timeline {
            max-width: 800px;
            margin: 0 auto;
        }

        .kubwen-timeline-item {
            background: white;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #667eea;
        }

        .kubwen-timeline-version {
            font-size: 1.3rem;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 10px;
        }

        .kubwen-timeline-date {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .kubwen-timeline-content {
            color: #666;
            line-height: 1.8;
        }

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

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

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

        .kubwen-download-btn {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .kubwen-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            background: #f8f9fa;
        }

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

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

        .kubwen-footer-section h3 {
            margin-bottom: 20px;
            color: #ecf0f1;
        }

        .kubwen-footer-section p,
        .kubwen-footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        .kubwen-footer-section a:hover {
            color: white;
        }

        .kubwen-copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            color: #95a5a6;
        }

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

            .kubwen-hero-title {
                font-size: 2.5rem;
            }

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

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

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