/* ================================
   AEL – Jeu des 7 erreurs (zoom)
   ================================ */

.ael-7e-wrap {
  margin-top: 100px;
  text-align: center;
}

/* Zone image (1 image centrée) */
.ael-7e-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Images */
.ael-7e-images a {
  display: inline-block;
}

.ael-7e-images img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Timer : clignotement lent, 3 fois */
.game-timer.ael-flash {
  animation: aelTimerFlash 0.65s ease-in-out 3; /* 3 clignotements */
}

@keyframes aelTimerFlash {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.06); opacity: 0.25; }
  100% { transform: scale(1); opacity: 1; }
}

/* Stop : aspect “lien” */
.ael-stop {
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.ael-stop:hover {
  text-decoration: underline;
}
