/* Help Page Styles */

.section-subtitle {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

/* Quick Start */
.quick-start {
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.1) 0%, rgba(255, 69, 69, 0.1) 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content code {
    background: var(--bg-card);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Commands Grid */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.command-card {
    background: var(--bg-hover);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.command-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 71, 255, 0.2);
}

.command-card.mod {
    border-left-color: var(--gold);
}

.command-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.command-name {
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    color: var(--primary);
}

.mod-badge {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.command-desc {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.command-usage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    padding: 0.75rem;
    border-radius: 4px;
}

.command-usage code {
    font-family: 'Courier New', monospace;
    color: var(--text);
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

/* Tips */
.tips {
    display: grid;
    gap: 1.5rem;
}

.tip {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-hover);
    border-radius: 8px;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content h3 {
    margin-bottom: 0.5rem;
}

.tip-content code {
    background: var(--bg-card);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-hover);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-item summary {
    font-weight: bold;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item summary::before {
    content: '▶';
    transition: transform 0.2s;
}

.faq-item[open] summary::before {
    transform: rotate(90deg);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}
