/* Conteneur plein écran */
.app-loading {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Loader */
.bf-loader {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Points */
.dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  opacity: 0;
  animation: fade 1.5s infinite;
}

.red {
  background: #ce1126; /* Rouge BF */
  animation-delay: 0s;
}

.green {
  background: #009e49; /* Vert BF */
  animation-delay: 1s;
}

/* Étoile */
.star {
  font-size: 34px;
  color: #fcd116; /* Jaune BF */
  opacity: 0;
  animation: fade 1.5s infinite;
  animation-delay: 0.5s;
}

/* Animation */
@keyframes fade {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
  }
}
