/* TavernWall v6.3.97 Onboarding / Help Guide */

.help-center {
    display: grid;
    gap: 16px;
}

.help-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 16px;
    align-items: center;
}

.help-progress-card {
    border: 1px solid rgba(255, 217, 85, .22);
    border-radius: 18px;
    padding: 14px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 217, 85, .10), transparent 40%),
        rgba(0,0,0,.15);
    display: grid;
    gap: 7px;
}

.help-progress-card span,
.help-progress-card small {
    color: var(--muted, #bfae86);
}

.help-progress-card strong {
    color: var(--gold, #ffd955);
    font-size: 34px;
    line-height: 1;
}

.help-progress-bar {
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 217, 85, .22);
    overflow: hidden;
    background: rgba(0,0,0,.20);
}

.help-progress-bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8a5c24, #ffd955);
}

.help-section-links,
.help-button-row,
.help-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.help-section-links a {
    border: 1px solid rgba(255, 217, 85, .20);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--paper, #eadfbf);
    text-decoration: none;
    background: rgba(0,0,0,.13);
}

.help-section-links a:hover {
    border-color: var(--gold, #ffd955);
    color: var(--gold, #ffd955);
}

.help-step-list {
    display: grid;
    gap: 10px;
}

.help-step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    border: 1px solid rgba(255, 217, 85, .16);
    border-radius: 16px;
    padding: 12px;
    background: rgba(0,0,0,.12);
}

.help-step.done {
    border-color: rgba(128, 232, 115, .36);
}

.help-step-check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 217, 85, .24);
    color: var(--gold, #ffd955);
    background: rgba(0,0,0,.18);
    font-weight: 1000;
}

.help-step.done .help-step-check {
    color: #9eff91;
    border-color: rgba(128, 232, 115, .45);
}

.help-step-copy {
    display: grid;
    gap: 5px;
}

.help-step-copy strong {
    color: var(--gold, #ffd955);
    font-size: 16px;
}

.help-step-copy span {
    color: var(--paper, #eadfbf);
    line-height: 1.35;
}

.help-step-actions form {
    margin: 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.help-topic-card {
    display: grid;
    gap: 10px;
    align-content: start;
}

.help-topic-card h2 {
    margin: 0;
    color: var(--gold, #ffd955);
}

.help-topic-card p,
.help-topic-card li {
    color: var(--paper, #eadfbf);
    line-height: 1.4;
}

.help-topic-card ul {
    margin: 0;
    padding-left: 20px;
}

.help-footer-card {
    text-align: center;
}

.help-footer-card .help-button-row {
    justify-content: center;
}

@media (max-width: 900px) {
    .help-hero-card,
    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .help-step {
        grid-template-columns: 1fr;
    }

    .help-section-links a,
    .help-button-row .button,
    .help-step-actions .button,
    .help-step-actions button {
        width: 100%;
        justify-content: center;
    }
}
