
    * {
        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: #fff;
    }

    /* Header */
    .l8uo-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .l8uo-nav {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }

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

    .l8uo-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .l8uo-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

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

    .l8uo-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }

    .l8uo-nav-menu a:hover,
    .l8uo-nav-menu a.active {
        color: #2196F3;
    }

    .l8uo-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    /* Support Header */
    .l8uo-support-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
    }

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

    .l8uo-support-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

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

    /* Search Section */
    .l8uo-search-section {
        background: white;
        padding: 40px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .l8uo-search-box {
        position: relative;
        margin-bottom: 30px;
    }

    .l8uo-search-input {
        width: 100%;
        padding: 15px 50px 15px 20px;
        font-size: 1.1rem;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        outline: none;
        transition: border-color 0.3s;
    }

    .l8uo-search-input:focus {
        border-color: #2196F3;
    }

    .l8uo-search-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #2196F3;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

    .l8uo-search-btn:hover {
        background: #1976D2;
    }

    .l8uo-quick-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .l8uo-quick-link {
        background: #f5f5f5;
        color: #666;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .l8uo-quick-link:hover {
        background: #2196F3;
        color: white;
    }

    /* Main Content */
    .l8uo-main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 60px;
    }

    /* Categories Sidebar */
    .l8uo-categories {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .l8uo-categories-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 25px;
        color: #333;
    }

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

    .l8uo-category-item {
        margin-bottom: 15px;
    }

    .l8uo-category-link {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        text-decoration: none;
        color: #666;
        border-radius: 8px;
        transition: all 0.3s;
        font-weight: 500;
    }

    .l8uo-category-link:hover,
    .l8uo-category-link.active {
        background: #2196F3;
        color: white;
    }

    .l8uo-category-icon {
        margin-right: 10px;
        font-size: 1.2rem;
    }

    /* FAQ Section */
    .l8uo-faq-section {
        background: white;
    }

    .l8uo-section-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 30px;
        color: #333;
    }

    .l8uo-faq-list {
        space-y: 20px;
    }

    .l8uo-faq-item {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        margin-bottom: 20px;
        overflow: hidden;
        transition: box-shadow 0.3s;
    }

    .l8uo-faq-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .l8uo-faq-question {
        padding: 20px;
        background: #f8f9fa;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #333;
        transition: background 0.3s;
    }

    .l8uo-faq-question:hover {
        background: #e9ecef;
    }

    .l8uo-faq-toggle {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    .l8uo-faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
    }

    .l8uo-faq-answer.active {
        padding: 20px;
        max-height: 500px;
    }

    .l8uo-faq-answer p {
        color: #666;
        line-height: 1.8;
    }

    /* Install Guide */
    .l8uo-install-guide {
        margin-top: 60px;
        background: #f8f9fa;
        padding: 40px;
        border-radius: 15px;
    }

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

    .l8uo-install-step {
        background: white;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }

    .l8uo-install-step:hover {
        transform: translateY(-5px);
    }

    .l8uo-step-number {
        width: 50px;
        height: 50px;
        background: #2196F3;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 auto 15px;
    }

    .l8uo-step-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .l8uo-step-desc {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Contact Section */
    .l8uo-contact-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
        margin-top: 60px;
    }

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

    .l8uo-contact-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

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

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

    .l8uo-contact-method {
        background: rgba(255,255,255,0.1);
        padding: 30px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        transition: transform 0.3s;
    }

    .l8uo-contact-method:hover {
        transform: translateY(-5px);
    }

    .l8uo-contact-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .l8uo-contact-method-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .l8uo-contact-method-desc {
        opacity: 0.9;
        font-size: 0.9rem;
    }

    /* Footer */
    .l8uo-footer {
        background: #2c3e50;
        color: white;
        padding: 50px 0 30px;
    }

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

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

    .l8uo-footer-section h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ecf0f1;
    }

    .l8uo-footer-section ul {
        list-style: none;
    }

    .l8uo-footer-section ul li {
        margin-bottom: 10px;
    }

    .l8uo-footer-section ul li a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

    .l8uo-footer-section ul li a:hover {
        color: #3498db;
    }

    .l8uo-footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 30px;
        text-align: center;
        color: #95a5a6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .l8uo-menu-toggle {
            display: flex;
        }

        .l8uo-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .l8uo-nav-menu.active {
            display: flex;
        }

        .l8uo-nav-overlay.active {
            display: block;
        }

        .l8uo-support-title {
            font-size: 2rem;
        }

        .l8uo-main-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .l8uo-categories {
            position: static;
        }

        .l8uo-quick-links {
            justify-content: flex-start;
        }

        .l8uo-install-steps {
            grid-template-columns: 1fr;
        }

        .l8uo-contact-methods {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .l8uo-support-title {
            font-size: 1.5rem;
        }

        .l8uo-search-input {
            font-size: 1rem;
        }

        .l8uo-categories,
        .l8uo-install-guide {
            padding: 20px;
        }
    }
    