.hidden { display: none !important; }

.voice-main { padding: 60px 0 100px; min-height: 70vh; }

.voice-screen { max-width: 700px; margin: 0 auto; text-align: center; }

.voice-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 24px 0 16px;
}

.voice-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.5;
}

.progress-wrap { margin-bottom: 30px; text-align: left; }
.progress-text { font-size: 14px; color: #666; margin-bottom: 8px; font-weight: 600; }
.progress-bar {
  height: 8px;
  background: #eee;
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #e30613;
  width: 10%;
  transition: width 0.4s ease;
}

.question-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
}

.question-text {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.voice-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #fafafa;
  border-radius: 10px;
}

.mic-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}
.mic-indicator.listening {
  background: #e30613;
  animation: pulse 1.2s infinite;
}
.mic-indicator.speaking {
  background: #0a7;
  animation: pulse 0.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.status-text { font-size: 14px; color: #666; margin: 0; }

.voice-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-mic {
  background: #e30613;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-mic:hover { background: #b00510; }
.btn-mic:disabled { background: #ccc; cursor: not-allowed; }

.answer-input {
  width: 100%;
  min-height: 100px;
  padding: 14px 16px;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 24px;
}
.answer-input:focus {
  outline: none;
  border-color: #e30613;
}

.nav-buttons { display: flex; justify-content: space-between; gap: 10px; }

button { cursor: pointer; border: none; font-family: inherit; }

.review-list { text-align: left; margin-bottom: 30px; }
.review-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.review-q { font-size: 14px; color: #666; font-weight: 600; margin-bottom: 8px; }
.review-a {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  min-height: 50px;
  resize: vertical;
}

.review-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid #fff0f1;
  border-top-color: #e30613;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 30px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .voice-title { font-size: 30px; }
  .question-card { padding: 24px 18px; }
  .question-text { font-size: 20px; }
}
