  /* Animation pour les points de chargement */
@keyframes dot-pulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@-webkit-keyframes dot-pulse {
  0%, 80%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #000000;
}

.app-loading p {
  display: block;
  font-size: 1.17em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  font-weight: normal;
}

/* Container du loader */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Logo dans le loader */
.loader-logo {
  width: 200px;
  height: auto;
  max-width: 90vw;
  animation: logo-fade-in 0.8s ease-in;
}

@keyframes logo-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container des points de chargement */
.loading-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Style des points */
.loading-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #8B5CF6; /* Violet pour correspondre au logo */
  opacity: 0.3;
  animation: dot-pulse 1.4s ease-in-out infinite;
}

/* Animation séquentielle pour chaque point */
.loading-dots .dot-1 {
  animation-delay: 0s;
}

.loading-dots .dot-2 {
  animation-delay: 0.2s;
}

.loading-dots .dot-3 {
  animation-delay: 0.4s;
}

.loading-dots .dot-4 {
  animation-delay: 0.6s;
}
