.help-layout {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 30px !important;
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 40px !important;
    min-height: 800px !important;
}

.help-sidebar {
    background: #1a1a1d;
    border-radius: 12px;
    padding: 30px 20px;
    position: sticky;
    top: 30px;
    height: fit-content;
}

.sidebar-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.sidebar-header h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
}

.sidebar-header p {
    font-size: 13px;
    color: #888;
}

.category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-menu-item {
    margin-bottom: 5px;
}

.category-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: #ccc;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.category-menu-link:hover,
.category-menu-link.active {
    background: #2a2a2f;
    color: #4ade80;
}

.category-menu-link .icon {
    font-size: 18px;
    margin-right: 12px;
}

.category-menu-link .count {
    background: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #888;
}

.category-menu-link:hover .count,
.category-menu-link.active .count {
    background: #4ade80;
    color: #000;
}

.sidebar-divider {
    height: 1px;
    background: #333;
    margin: 20px 0;
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid #333;
}

.contact-box {
    background: linear-gradient(135deg, #2a2a2f, #1a1a1d);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-box h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-box p {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #4ade80;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #22c55e;
}

.help-content {
    background: #1a1a1d;
    border-radius: 12px;
    padding: 40px;
    min-height: 700px;
}

.content-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
}

.content-header h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
}

.content-header p {
    color: #888;
    font-size: 16px;
}

.search-section {
    margin-bottom: 35px;
}

.search-wrapper {
    display: flex;
    gap: 12px;
}

.search-input-large {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #0f0f12;
    color: #fff;
    font-size: 16px;
}

.search-input-large:focus {
    outline: none;
    border-color: #4ade80;
}

.search-btn-large {
    padding: 16px 30px;
    background: #4ade80;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn-large:hover {
    background: #22c55e;
}

.quick-links {
    margin-top: 25px;
}

.quick-links-title {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.quick-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-link {
    padding: 8px 16px;
    background: #2a2a2f;
    color: #ccc;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.quick-link:hover {
    background: #4ade80;
    color: #000;
}

.article-list-new {
    margin-top: 30px !important;
}

.article-list-new .article-item {
    display: block !important;
    background: #2a2a2f !important;
    padding: 25px !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    border-left: 4px solid transparent !important;
    text-decoration: none !important;
}

.article-list-new .article-item:hover {
    background: #333 !important;
    border-left-color: #4ade80 !important;
    transform: translateX(5px) !important;
}

.article-list-new .article-item h3 {
    color: #fff !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
}

.article-list-new .article-item h3 .article-icon {
    font-size: 20px !important;
}

.article-list-new .article-item p {
    color: #888 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.article-detail-new {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-detail-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
}

.article-detail-header h1 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-body {
    color: #ccc;
    line-height: 1.9;
    font-size: 16px;
}

.article-detail-body h2 {
    color: #fff;
    font-size: 24px;
    margin: 30px 0 15px;
}

.article-detail-body h3 {
    color: #fff;
    font-size: 20px;
    margin: 25px 0 12px;
}

.article-detail-body h4 {
    color: #fff;
    font-size: 18px;
    margin: 20px 0 10px;
}

.article-detail-body p {
    margin: 15px 0;
}

.article-detail-body ul,
.article-detail-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-detail-body li {
    margin: 10px 0;
}

.article-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-detail-body table th,
.article-detail-body table td {
    padding: 12px 15px;
    border: 1px solid #444;
    text-align: left;
}

.article-detail-body table th {
    background: #2a2a2f;
    color: #fff;
}

.article-detail-body table td {
    background: #0f0f12;
}

.article-detail-body strong {
    color: #fff;
}

.article-nav {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    padding: 12px 24px;
    background: #2a2a2f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #3a3a3f;
}

.helpful-section {
    text-align: center;
    padding: 25px;
    background: #2a2a2f;
    border-radius: 10px;
}

.helpful-section p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 15px;
}

.helpful-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.helpful-btn {
    padding: 10px 25px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.helpful-btn:hover {
    background: #4ade80;
    color: #000;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.no-results p {
    color: #888;
}

.loading {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

@media (max-width: 1024px) {
    .help-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .help-sidebar {
        position: static;
    }
    
    .category-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .help-layout {
        padding: 20px 15px;
    }
    
    .help-content {
        padding: 20px;
    }
    
    .search-wrapper {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 15px;
    }
}

.user-status-link a { color: #9ca3af; }
.category-icon-margin { margin-right: 10px; }
.article-list-title { color: #fff; margin-bottom: 20px; font-size: 20px; }
