
#app {
  width: 100%;
  max-width: 1400px;
}

.quiz-container {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: #6c139c;
  transition: width 0.3s ease;
  width: 0%;
}

.quiz-content {
  display: flex;
  flex-direction: column;
  padding: 60px 40px;
  flex: 1;
}

.question-title {
  font-size: 32px;
  font-weight: 400;
  color: #6c139c;
  margin-bottom: 60px;
  line-height: 1.4;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
}

.option-btn {
  background-color: #ffffff;
  border: none;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.option-btn:hover {
  background-color: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.option-btn:active {
  transform: translateY(0);
}

.result-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  min-height: 100vh;
}

.result-screen h1 {
  font-size: 48px;
  font-weight: 400;
  color: #6c139c;
  margin-bottom: 40px;
}

.score {
  font-size: 72px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 60px;
}

.restart-btn {
  background-color: #6c139c;
  color: #ffffff;
  border: none;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.restart-btn:hover {
  background-color: #5a0f82;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 19, 156, 0.3);
}

.restart-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .quiz-content {
    padding: 40px 24px;
  }

  .question-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .option-btn {
    padding: 20px 24px;
    font-size: 16px;
  }

  .result-screen h1 {
    font-size: 36px;
  }

  .score {
    font-size: 56px;
  }
}