.wizard-progress {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wizard-question {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wizard-option-btn {
  padding: 10px 14px;
  background: #3959b0;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}
.wizard-option-btn:hover {
  background: #cffe61;
  color: #000;
}

.wizard-back-btn {
  margin-top: 12px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
}
.wizard-back-btn:hover { color: #cffe61; }

.wizard-result {
  text-align: center;
}
.wizard-result-link {
  display: inline-block;
  margin: 12px 0;
  padding: 10px 16px;
  background: #cffe61;
  color: #3959b0;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.wizard-restart-btn {
  display: block;
  margin: 8px auto 0;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
}
.wizard-restart-btn:hover { color: #cffe61; }