/* Help Center Specific Styles */
.help-body {
    background-color: #0d1117;
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.help-header {
    padding: 1.5rem 0;
    background-color: #0d1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.help-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.help-hero h1 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.help-hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #8b949e;
    line-height: 1.5;
}

.help-hero .search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: block !important;
}

.help-hero .help-search {
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #161b22;
    color: #e6edf3;
    font-size: 1.1rem;
    padding-right: 50px;
    display: block !important;
}

.help-hero .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    display: block !important;
}

.help-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.help-sidebar {
    padding: 2rem 0;
    text-align: left;
}

.help-sidebar h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #e6edf3;
    text-align: left;
    padding-left: 0.5rem;
}

.help-sidebar h2:first-child {
    margin-top: 0;
}

.help-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.help-topics li {
    margin-bottom: 0.7rem;
}

.help-topics li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 1.15rem;
    display: block;
    padding: 0.5rem;
    transition: all 0.2s;
    border-radius: 4px;
    text-align: left;
}

.help-topics li a:hover {
    color: #58a6ff;
    background-color: rgba(56, 139, 253, 0.1);
}

.help-topics li.active a {
    color: #ffffff;
    font-weight: 500;
    background-color: #3B82F6;
}

/* New article container styling */
.article-container {
    padding: 2rem 0;
    max-width: 800px;
}

.article-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-align: left;
}

.last-updated {
    color: #8b949e;
    font-size: 1rem;
    margin-bottom: 2rem;
    display: block;
    text-align: left;
}

/* Article content styling */
.article-content {
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.article-content h3 {
    font-size: 1.65rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #ffffff;
}

.article-content h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #ffffff;
}

.article-content p {
    margin-bottom: 1rem;
    color: #c9d1d9;
    font-size: 1.05rem;
}

.article-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #c9d1d9;
    font-size: 1.05rem;
}

.help-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.help-footer h3 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.help-footer p {
    color: #8b949e;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.help-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-button {
    background-color: #3B82F6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    font-size: 1.05rem;
}

.contact-button:hover {
    background-color: #2563EB;
}

.discord-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.discord-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.discord-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Responsive styles */
@media (max-width: 900px) {
    .help-content {
        grid-template-columns: 1fr;
    }
    
    .help-sidebar {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .article-container {
        padding-top: 1rem;
    }
}

@media (max-width: 600px) {
    .help-hero h1 {
        font-size: 2.2rem;
    }
    
    .help-buttons {
        flex-direction: column;
    }
} 