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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 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 {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
        }

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

        .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 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

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

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

        .kubwen-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .kubwen-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

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

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

        .kubwen-section-title {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .kubwen-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 2px;
        }

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

        .kubwen-feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

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

        .kubwen-feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #667eea;
        }

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

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

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

        .kubwen-platform-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .kubwen-platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .kubwen-platform-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .kubwen-android {
            color: #4CAF50;
        }

        .kubwen-ios {
            color: #007AFF;
        }

        .kubwen-platform-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .kubwen-platform-desc {
            color: #666;
            margin-bottom: 25px;
        }

        .kubwen-download-btn {
            display: inline-block;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .kubwen-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .kubwen-compatibility {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-top: 40px;
        }

        .kubwen-compatibility-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
        }

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

        .kubwen-compatibility-item {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }

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

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

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

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

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

        .kubwen-footer-section h4 {
            margin-bottom: 15px;
            color: #ecf0f1;
        }

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

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

        .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: 32px;
            }

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

            .kubwen-section-title {
                font-size: 24px;
            }

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

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