/* ============================================================
   TeachingChess — playstyle-quiz.css
   Styling for the playstyle onboarding quiz. Uses the site's
   existing brand variables - load after main.css.
   ============================================================ */

.pq-wrap{max-width:520px;margin:0 auto}

.pq-progress{font-size:.72rem;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-dim);margin-bottom:10px}
.pq-question{font-size:1.2rem;font-weight:700;color:var(--text-strong);margin-bottom:18px;line-height:1.4}
.pq-options{display:flex;flex-direction:column;gap:10px}
.pq-opt{
  text-align:start;padding:14px 16px;border-radius:10px;
  background:var(--bg-4);border:1px solid var(--line);
  color:var(--text-strong);font-size:.95rem;cursor:pointer;
  transition:border-color .15s, background .15s;
}
.pq-opt:hover{border-color:var(--accent);background:rgba(204,165,100,.08)}

.pq-result{text-align:center;padding:10px}
.pq-result-icon{font-size:2.6rem;margin-bottom:8px}
.pq-result-title{font-size:1.5rem;font-weight:800;color:var(--text-strong);margin-bottom:8px}
.pq-result-desc{color:var(--text-dim);font-size:.95rem;line-height:1.7;margin-bottom:18px}
.pq-result-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}
