/* Nitrox Quiz – Zusatzstyles
   (Globales /style.css bleibt unangetastet)
*/

.nitrox-quiz-container{
  max-width: 920px;
  margin: 0 auto;
}

.nq-head h1{
  margin: 0 0 0.25rem 0;
}
.nq-head .muted{
  margin: 0 0 1rem 0;
}

.nq-status{
  margin: 0 0 1rem 0;
}

.nq-progress{
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.nq-progress__bar{
  height: 100%;
  background: rgba(66,45,162,0.85);
  width: 0%;
  transition: width 200ms ease;
}

.nq-status__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  font-size: .9rem;
}
.chip--muted{ opacity: .8; }
.chip--score{
  background: rgba(255,234,0,0.35);
}

.nq-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.nq-card__statement{
  font-size: 1.15rem;
  line-height: 1.45;
  padding: .5rem .25rem 1rem .25rem;
}

.nq-actions{
  display:grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  margin-bottom: .9rem;
}

.btn{
  appearance:none;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f8fafc;
  border-radius: 12px;
  padding: .75rem .9rem;
  font-weight: 650;
  cursor:pointer;
}
.btn:hover{ filter: brightness(0.98); }
.btn:disabled{ opacity: .6; cursor: not-allowed; }

.btn--choice{
  text-align:left;
}

.btn--next{
  background: rgba(66,45,162,0.10);
  border-color: rgba(66,45,162,0.25);
}

.nq-feedback{
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px dashed rgba(0,0,0,0.18);
}

.nq-feedback__headline{
  font-weight: 800;
  margin-bottom: .35rem;
}
.nq-feedback__headline.ok{ color: #0f766e; }
.nq-feedback__headline.no{ color: #b45309; }

.nq-feedback__text{
  line-height: 1.45;
  margin-bottom: .5rem;
}

.nq-explain{
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: .6rem .75rem;
  border: 1px solid rgba(0,0,0,0.08);
}
.nq-explain summary{
  cursor:pointer;
  font-weight: 700;
}
.nq-explain__text{
  margin-top: .5rem;
  line-height: 1.45;
}

.nq-next-row{
  margin-top: .75rem;
  display:flex;
  justify-content:flex-end;
}

.nq-finish{
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,234,0,0.20);
  border: 1px solid rgba(0,0,0,0.10);
}
.nq-finish__big{
  font-size: 1.6rem;
  font-weight: 900;
  margin: .25rem 0 .25rem 0;
}

@media (min-width: 720px){
  .nq-actions{
    grid-template-columns: 1fr 1fr 1fr;
  }
  .btn--choice{
    text-align:center;
  }
}
