progression.css
/* ============================
   PROGRESSION — STYLE GLOBAL
============================ */
.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.progress-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease;
}
.progress-card:hover {
  transform: translateY(-4px);
}
.progress-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
/* ============================
   BARRES DE PROGRESSION
============================ */
.progress-bar {
  width: 100%;
  height: 14px;
  background: #dcdcdc;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0 15px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0033a0, #007bff);
  width: 0%;
  border-radius: 10px;
  transition: width 0.8s ease;
}
/* ============================
   BOUTONS
============================ */
.progress-btn {
  background: #0033a0;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}
.progress-btn:hover {
  background: #0050d4;
}
/* ============================
   BADGES
============================ */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.badge {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.badge span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.badge.locked {
  opacity: 0.5;
}
.badge.unlocked {
  border: 2px solid #00c853;
  background: #eaffea;
  opacity: 1;
}
.badge:hover {
  transform: translateY(-4px);
}
/* ============================
   HISTORIQUE
============================ */
.history-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.history-list li {
  background: var(--card-bg);
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
  .progress-card {
    padding: 15px;
  }
  .badge {
    padding: 15px;
  }
}
