.quiz-main {
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.quiz-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}

.lang-selector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #6b6b6b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: #111111;
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
  color: #111111;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.08);
}

.lang-divider {
  color: #e5e0d8;
  font-size: 12px;
}

.quiz-progress-wrapper {
  margin-bottom: 40px;
}

.quiz-progress-bar {
  height: 8px;
  background: #f0ebe3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: #111111;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
  font-size: 13px;
  color: #6b6b6b;
  font-weight: 500;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a87b5a;
  margin-bottom: 8px;
}

.question-title {
  font-size: 24px;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 32px;
}

.options-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.option-card {
  padding: 16px 20px;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  background: #ffffff;
  text-align: left;
}

.option-card:hover {
  border-color: #111111;
  background: #fafafa;
}

.option-card.selected {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.helper-link {
  margin-top: 16px;
}

.helper-link a {
  font-size: 14px;
  color: #068b7a;
  text-decoration: none;
  font-weight: 500;
}

.helper-link a:hover {
  text-decoration: underline;
}

.quiz-navigation {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.flex-spacer {
  flex: 1;
}

.hidden {
  display: none !important;
}

/* Result Styles */
.result-container {
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.match-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #e8f5f3;
  color: #068b7a;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.result-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.result-description {
  font-size: 16px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.picks-title {
  font-size: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .quiz-main {
    padding: 20px 0;
  }
  
  .quiz-container, .result-container {
    padding: 24px;
  }
  
  .question-title {
    font-size: 20px;
  }
  
  .result-title {
    font-size: 24px;
  }
  
  .result-actions {
    flex-direction: column;
  }
}
