.quiz-progress-wrap{ margin-bottom:24px; }
.quiz-progress-label{ font-size:13px; color:var(--gold); font-weight:700; margin-bottom:8px; }
.quiz-progress-bar{ width:100%; height:6px; border-radius:999px; background:rgba(255,255,255,0.08); overflow:hidden; }
.quiz-progress-fill{ height:100%; background:linear-gradient(90deg, var(--v-pink), var(--nebula), var(--v-cyan)); transition:width .35s ease; width:0%; }

.quiz-question{ font-size:17px; font-weight:700; color:var(--v-text); margin-bottom:16px; line-height:1.5; }
.quiz-opt{
  display:flex; align-items:center; padding:14px 18px; margin-bottom:10px;
  border:1px solid rgba(255,233,168,0.2); border-radius:14px; cursor:pointer;
  font-size:14.5px; color:var(--v-text); opacity:0.85;
  transition:background .15s ease, border-color .15s ease, transform .1s ease;
}
.quiz-opt:hover{ background:rgba(255,255,255,0.04); border-color:rgba(255,233,168,0.4); transform:translateX(2px); }
.quiz-opt.selected{ background:rgba(254,44,85,0.18); border-color:var(--v-pink); opacity:1; }

.quiz-cta{ margin-top:20px; padding-top:20px; border-top:1px solid rgba(255,233,168,0.15); text-align:center; }
.quiz-cta-btn{ display:block; text-decoration:none; }
.quiz-cta-secondary{
  display:inline-block; margin-top:12px; font-size:13.5px; color:var(--v-cyan);
  text-decoration:none; border-bottom:1px dashed var(--v-cyan);
}
.quiz-cta-secondary:hover{ opacity:0.8; }
