* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff5f5 0%, #ffe8e8 100%);
  padding: 1.5rem;
}

.card {
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 48px;
  box-shadow: 0 30px 60px -20px rgba(180, 60, 60, 0.3);
  border: 1px solid rgba(255, 200, 200, 0.4);
  text-align: center;
  transition: 0.3s;
}

.step {
  display: none;
  animation: fadeUp 0.5s ease;
}
.step.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2.2rem;
  color: #b03a3a;
  margin-bottom: 0.25rem;
}
h2 {
  font-size: 1.8rem;
  color: #b03a3a;
  margin-bottom: 1.5rem;
}
.sub {
  font-size: 1.3rem;
  color: #a05555;
  margin-bottom: 2rem;
}

.choices {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  background: #f0e0e0;
  color: #5a3a3a;
}
.btn.primary {
  background: #d94f4f;
  color: white;
  box-shadow: 0 8px 20px -8px #d94f4f80;
}
.btn.primary:hover {
  background: #c03a3a;
  transform: scale(1.02);
}
.btn.choice {
  background: #fce8e8;
  border: 2px solid #ecc0c0;
  flex: 1;
  min-width: 100px;
}
.btn.choice:hover {
  background: #fcd0d0;
  border-color: #d94f4f;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #4a2a2a;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  border: 2px solid #ecd0d0;
  font-size: 1rem;
  background: white;
  transition: 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d94f4f;
  outline: none;
  box-shadow: 0 0 0 4px #d94f4f20;
}
.form-group textarea {
  resize: vertical;
}

.footer {
  margin-top: 2.5rem;
  color: #b07a7a;
  font-size: 0.95rem;
}
.footer a {
  color: #b03a3a;
  text-decoration: none;
  font-weight: 500;
}

#selected-answer {
  color: #b03a3a;
  font-weight: 600;
}