.help-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.help-section {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.help-section h2 {
    margin-top: 0;
    color: var(--primary);
}

.help-section ul {
    padding-left: 1.5rem;
}

.help-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

details {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

summary {
    font-weight: 600;
}

details[open] p {
    margin-top: 0.75rem;
    color: var(--text-muted);
}

.help-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
}

.help-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}