/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.campaign-header {
  margin-top: 20px;
  text-align: center;
}

.campaign-header h1 {
  font-size: 28px;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.campaign-description {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Section description de l'offre */
.offer-description {
  text-align: center;
  margin: 15px 0;
  padding: 0 20px;
}

.simple-description {
  color: #999999;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.logo-placeholder {
  display: inline-block;
}

.logo-img {
  height: 150px;
  max-width: 200px;
  object-fit: contain;
  /* Pas de filtre - affichage du logo en couleurs originales */
}

.logo-box {
  width: 120px;
  height: 60px;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Indicateur de progression */
.progress-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 0 20px;
  position: relative;
}

.progress-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: #333;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step.active .step-number,
.step.completed .step-number {
  background-color: #ffffff;
  color: #000000;
}

.step-label {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.step.active .step-label,
.step.completed .step-label {
  color: #ffffff;
}

/* Contenu des étapes */
.step-content {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.step-content.active {
  display: block;
}

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

/* Formulaire */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #333;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.step-description {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #000;
  color: #ffffff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Boutons */
.button-container {
  text-align: center;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-primary:disabled {
  background-color: #333;
  color: #666;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Préparation */
.preparation-container {
  max-width: 800px;
  margin: 0 auto;
}

.preparation-container h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* Bloc d'information principal */
.interview-info-block {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #0f0f0f;
  border-radius: 15px;
  border: 2px solid #333;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.info-header i {
  font-size: 28px;
  margin-right: 15px;
  color: #ffffff;
}

.info-header h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.info-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  font-size: 16px;
}

.info-content p:last-child {
  margin-bottom: 0;
}

.warning-text {
  background-color: #1a1a0f !important;
  border: 1px solid #444422 !important;
  border-radius: 8px !important;
  padding: 15px !important;
  margin-top: 20px !important;
  color: #ffeb3b !important;
}

.warning-text i {
  margin-right: 10px;
  color: #ffeb3b;
}

.instructions {
  margin-bottom: 40px;
}

.instruction-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #111;
  border-radius: 10px;
  border: 1px solid #333;
}

.instruction-item i {
  font-size: 24px;
  margin-right: 20px;
  margin-top: 5px;
  color: #ffffff;
}

.instruction-item h3 {
  margin-bottom: 5px;
  color: #ffffff;
}

.instruction-item p {
  color: #ccc;
}

.time-friendly {
  margin-top: 10px !important;
  font-size: 14px !important;
  color: #aaa !important;
  font-style: italic;
}

/* Styles pour l'upload de fichier */
.file-upload-container {
  border: 2px dashed #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background-color: #0a0a0a;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.file-upload-container:hover {
  border-color: #666;
  background-color: #111;
}

.file-upload-container.dragover {
  border-color: #ffffff;
  background-color: #111;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ccc;
  pointer-events: none;
}

.file-upload-info i {
  font-size: 24px;
  color: #666;
}

.file-upload-info span {
  font-size: 14px;
  color: #999;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 12px;
  margin-top: 10px;
}

.file-preview i {
  color: #ffffff;
  font-size: 16px;
}

.file-preview .file-name {
  color: #ffffff;
  font-weight: 500;
  flex: 1;
  text-align: left;
}

.file-preview .file-size {
  color: #999;
  font-size: 12px;
}

.file-preview .remove-file {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.file-preview .remove-file:hover {
  background-color: #333;
  color: #ffffff;
}

.file-error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 8px;
  text-align: left;
}

/* Prévisualisation caméra */
.camera-preview {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
  background-color: #111;
  display: none !important; /* Masqué par défaut jusqu'à validation RGPD */
}

/* Classe pour afficher la section caméra quand autorisé */
.camera-preview.show {
  display: block !important;
}

.camera-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.camera-overlay.hidden {
  display: none;
}

.camera-overlay i {
  font-size: 48px;
  margin-bottom: 15px;
}

/* Compte à rebours */
.countdown-container {
  text-align: center;
  padding: 60px 20px;
}

.countdown-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.countdown-container p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
}

.countdown-display {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 72px;
  font-weight: bold;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Entretien vidéo */
.interview-container {
  max-width: 900px;
  margin: 0 auto;
}

.interview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #111;
  border-radius: 10px;
  border: 1px solid #333;
}

.question-info {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: space-between;
}

.question-counter {
  font-size: 18px;
  font-weight: 600;
}

.timer-container {
  display: flex;
  align-items: center;
}

.timer-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.timer-circle.warning {
  border-color: #ff4444;
  color: #ff4444;
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.question-display {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #111;
  border-radius: 10px;
  border: 1px solid #333;
}

.question-display h3 {
  font-size: 24px;
  line-height: 1.4;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recording-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 0, 0, 0.8);
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.interview-controls {
  text-align: center;
}

/* Remerciements */
.thank-you-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 72px;
  color: #00ff00;
  margin-bottom: 30px;
}

.thank-you-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.summary {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: left;
}

.summary h3 {
  margin-bottom: 20px;
  text-align: center;
}

.summary ul {
  list-style: none;
}

.summary li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #000;
  border-radius: 5px;
}

.summary li i {
  margin-right: 15px;
  width: 20px;
  color: #ffffff;
}

/* Messages d'erreur et loading */
.error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ff4444;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 600;
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.loading-content {
  text-align: center;
  max-width: 400px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.loading-content h3 {
  color: white;
  margin: 20px 0;
  font-size: 1.4rem;
  font-weight: 300;
}

.loading-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 15px 0 0 0;
  font-size: 0.9rem;
}

/* Barre de progression */
.progress-container {
  margin: 25px 0;
  width: 100%;
}

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

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #45a049);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.9rem;
}

#progress-percentage {
  font-weight: bold;
  color: #4caf50;
}

#progress-status {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

/* Styles pour l'upload par chunks */
.chunk-info {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.chunk-details {
  font-size: 16px;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 5px;
}

.chunk-size {
  font-size: 12px;
  color: #999;
}

.upload-tips {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(33, 150, 243, 0.1);
  border-radius: 8px;
  border-left: 4px solid #2196f3;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #bbb;
}

.tip-item:last-child {
  margin-bottom: 0;
}

.tip-item i {
  color: #2196f3;
  width: 16px;
  text-align: center;
}

/* Animation pour les chunks */
@keyframes chunk-pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.chunk-info.uploading {
  animation: chunk-pulse 2s infinite;
}

/* Styles pour les grandes vidéos */
.large-file-warning {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(255, 152, 0, 0.1);
  border-radius: 8px;
  border-left: 4px solid #ff9800;
  color: #ff9800;
  font-size: 14px;
}

.large-file-warning i {
  margin-right: 8px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #333;
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .interview-info-block {
    padding: 20px;
    margin-bottom: 30px;
  }

  .info-header h3 {
    font-size: 20px;
  }

  .info-header i {
    font-size: 24px;
  }

  .info-content p {
    font-size: 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-container {
    padding: 30px 20px;
  }

  .progress-indicator {
    padding: 0 10px;
  }

  .step-label {
    font-size: 10px;
  }

  .question-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .instruction-item {
    flex-direction: column;
    text-align: center;
  }

  .instruction-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .camera-preview {
    height: 250px;
  }

  .video-container {
    height: 300px;
  }

  .countdown-display {
    width: 150px;
    height: 150px;
    font-size: 48px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .form-container h2 {
    font-size: 24px;
  }

  .question-display h3 {
    font-size: 20px;
  }

  .thank-you-container h2 {
    font-size: 28px;
  }

  .progress-indicator::before {
    left: 30px;
    right: 30px;
  }
}

/* Styles pour le bloc de consentement RGPD */
.rgpd-consent-container {
  margin: 25px 0;
}

.rgpd-consent-box {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.consent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}

.consent-header i {
  color: #28a745;
  font-size: 20px;
}

.consent-header h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.consent-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.consent-points {
  margin: 15px 0 20px 0;
}

.consent-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  padding: 8px 0;
}

.consent-point i {
  color: #28a745;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consent-point span {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.4;
}

.consent-checkbox-container {
  margin-top: 20px;
  padding: 15px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #555555;
  transition: border-color 0.3s ease;
}

.consent-checkbox-container:has(.consent-checkbox:checked) {
  border-color: #28a745;
  background: #ffffff;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.consent-checkbox {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ced4da;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: white;
  margin-top: 1px;
}

.consent-checkbox:checked + .checkmark {
  background: #28a745;
  border-color: #28a745;
}

.consent-checkbox:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.consent-text {
  color: #000000;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.consent-link {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.consent-link:hover {
  color: #333333;
}

/* Styles pour la modal des conditions générales */
.conditions-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.conditions-modal-content {
  background-color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #404040;
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.conditions-modal-header {
  padding: 20px;
  border-bottom: 1px solid #404040;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.conditions-modal-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.conditions-modal-close {
  background: transparent;
  border: none;
  color: #cccccc;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conditions-modal-close:hover {
  background-color: #333333;
  color: #ffffff;
}

.conditions-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  color: #cccccc;
  line-height: 1.6;
}

.conditions-section {
  margin-bottom: 25px;
}

.conditions-section h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #404040;
  display: flex;
  align-items: center;
  gap: 8px;
}

.conditions-section p {
  margin-bottom: 12px;
  text-align: justify;
}

.conditions-section ul {
  margin-left: 20px;
}

.conditions-section li {
  margin-bottom: 8px;
}

.highlight-box {
  background: #2d2d2d;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #4fc3f7;
  margin: 15px 0;
}

.warning-box {
  background: #3e2723;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
  margin: 15px 0;
}

@media (max-width: 768px) {
  .conditions-modal-content {
    width: 95vw;
    max-height: 85vh;
  }

  .conditions-modal-header,
  .conditions-modal-body {
    padding: 15px;
  }
}

/* Styles pour l'étape 3 simplifiée */
.ready-to-start {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.ready-icon {
  margin-bottom: 20px;
}

.ready-icon i {
  font-size: 64px;
  color: #28a745;
  opacity: 0.9;
}

.interview-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid #dee2e6;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: #495057;
  font-size: 14px;
  font-weight: 500;
}

.summary-item i {
  color: #28a745;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.final-encouragement {
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 12px;
  border-left: 4px solid #f39c12;
}

.final-encouragement p {
  margin: 8px 0;
  color: #856404;
}

.btn-large {
  font-size: 18px;
  padding: 15px 30px;
  min-width: 250px;
}
