@keyframes blink {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.blink {
  animation: blink 0.6s ease-in-out 2;
}

.progression-bar {
  width: 100%;
  height: 10px;
  background: #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.progression-fill {
  height: 100%;
  width: 0%;
  background: #f5c542;
  transition: width 0.4s ease;
}

#tkd-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  z-index: 9999;
}

#tkd-progress-bar-inner {
  height: 100%;
  width: 0%;
  background: #f5c400;
  transition: width 0.4s ease;
}



.star-btn {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* animation quand elle s'allume */
.star-btn.on {
  transform: scale(1.2);
  opacity: 1;
}
