.quiz-container {
  min-height: calc(100vh - 200px);
  padding: 200px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: 60px;
}

.quiz-header h1 {
  font-size: 48px;
  color: #F6AD55;
  margin-bottom: 15px;
}

.quiz-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667EEA 0%, #764BA2 100%);
  transition: width 0.3s ease;
  width: 14.28%; /* 1/7 questions */
}

.progress-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.quiz-content {
  background: rgba(26, 15, 46, 0.5);
  border: 2px solid rgba(246, 173, 85, 0.3);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
}

.question {
  display: none;
}

.question.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.question h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.answers {
  display: grid;
  gap: 20px;
}

.answer-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(246, 173, 85, 0.3);
  color: white;
  padding: 25px;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.answer-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: #667EEA;
  transform: translateX(10px);
}

.answer-btn:active {
  transform: scale(0.98);
}

.quiz-result {
  text-align: center;
  padding: 60px 20px;
}

.quiz-result.hidden {
  display: none;
}

.result-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  border: 3px solid #F6AD55;
  border-radius: 30px;
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
}

.result-card h2 {
  font-size: 32px;
  color: #F6AD55;
  margin-bottom: 20px;
}

.result-archetype {
  font-size: 56px;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.result-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Email Capture */
.email-capture {
  margin-top: 40px;
}

.email-prompt {
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

#emailForm {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

#emailInput {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

#emailInput:focus {
  border-color: #FFD700;
}

#emailInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Post-Capture */
.post-capture.hidden {
  display: none;
}

.post-capture {
  margin-top: 40px;
}

.capture-success {
  font-size: 18px;
  color: #48BB78;
  margin-bottom: 24px;
}

.secondary-link {
  display: inline-block;
  margin-top: 12px;
  background: transparent !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.secondary-link:hover {
  border-color: #FFD700 !important;
  color: white !important;
}

@media (max-width: 768px) {
  .quiz-container {
    padding: 150px 20px 40px;
  }
  
  .quiz-content {
    padding: 30px 20px;
  }
  
  .question h2 {
    font-size: 22px;
  }
  
  .answer-btn {
    padding: 20px;
    font-size: 14px;
  }
  
  .result-card {
    padding: 40px 20px;
  }
  
  .result-archetype {
    font-size: 42px;
  }

  #emailForm {
    flex-direction: column;
  }

  .email-prompt {
    font-size: 16px;
  }
}
