.kviz {
  padding: 6rem 0;
}

.quiz-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  display: none;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #f0d8b4, #5c463e);
  border-radius: 10px;
  transition: width 0.3s ease;
  width: 0%;
}

/* Start Screen */
.start-screen {
  background: #f0d8b4;
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.start-screen h1 {
  color: var(--boja_01, #db5727);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Question Card */
.question-card {
  border-radius: 20px;
  background: #f0d8b4;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  min-height: 400px;
  animation: fadeIn 0.3s ease-in;
}

.kvizlead {
  color: #5c463e;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1rem 0;
  max-width: 466px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-number {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.question-title {
  color: var(--boja_01, #db5727);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.answer-option {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.answer-option:hover {
  background: #db5727;
}

.answer-option.selected {
  background: #db5727;
  color: white;
  border-color: #fff;
}

.answer-option input[type="radio"] {
  margin-right: 12px;
}

.answer-option label {
  cursor: pointer;
  flex-grow: 1;
  font-size: 20px;
  line-height: 1.3;
}

/* Result Card */
.result-card {
  border-radius: 20px;
  background: #f0d8b4;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  text-align: center;
  animation: fadeIn 0.3s ease-in;
}

.result-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.result-score {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.result-message {
  color: #000;
  text-align: center;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Result Classes */
.result-excellent {
  color: var(--boja_01, #db5727);
  text-align: center;

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.result-good {
  color: var(--boja_01, #db5727);
  text-align: center;

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.result-poor {
  color: var(--boja_01, #db5727);
  text-align: center;

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Buttons */
.btn {
  padding: 18px 36px;
  font-size: 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 10px;
  background: #5c463e;
}

.btn-primary {
  border-radius: 10px;
  background: #5c463e;
}

.btn-primary:hover {
  background: #db5727;
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
