* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: 'Press Start 2P', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 80%;
}

.titre {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 40px;
  letter-spacing: 4px;
}

.barre-fond {
  width: 100%;
  height: 60px;
  background-color: #d4d4d4;
  border: 5px solid #000000;
  border-radius: 10px;
  overflow: hidden;
}

.barre-remplissage {
  height: 100%;
  width: 0%;
  background-color: #3be521;
  border-radius: 6px;
  transition: width 1s ease;
}

.pourcentage {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #000000;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.barre-remplissage {
  background: linear-gradient(
    90deg,
    #21e52b 40%,
    #6eff6b 50%,
    #21e528 60%
  );
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
}


.particules {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particule {
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  animation: flotter 6s infinite alternate;
}

@keyframes flotter {
  0%   { transform: translate3d(0, 0, 0); opacity: 0.8; }
  50%  { transform: translate3d(var(--x), var(--y), 0); opacity: 0.2; }
  100% { transform: translate3d(0, 0, 0); opacity: 0.8; }
}

.container {
  position: relative;
  z-index: 1;
}

.dates {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.6rem;
  color: #000000;
}

.titre {
  font-size: 3rem;
}

.subtitle {
    font-size: 1rem;
}

.statut {
  margin-top: 10px;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.timeline {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.3;
  transition: opacity 0.5s ease, transform 0.3s ease;
}

.milestone.atteint {
  opacity: 1;
  transform: translateX(6px);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d4d4d4;
  border: 2px solid #000;
  flex-shrink: 0;
  transition: background 0.5s ease;
}

.milestone.atteint .dot {
  background: #000000;
  color: black;
  display: flex;
  align-items: center;
}

.label {
  font-size: 0.45rem;
  color: #000000;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.motivation {
  margin-top: 30px;
  font-size: 0.5rem;
  color: #010101;
  letter-spacing: 1px;
  font-style: bold;
  min-height: 20px;
  display: flex;
  align-items: center;
}

.label {
  font-family: Verdana, sans-serif;
  font-size: 10pt;
  font-weight: bold;
  color : black;
  display: flex;
  align-items: center;
}



.statut {
  font-family: Verdana, sans-serif;
  font-size: 10pt;
  font-weight: bold;
  color : black;
}
