/* 🎨 CHANGESLOG SPECIFIC STYLE */

/* Conteneur principal */
.container {
  max-width: 900px;
  margin: 80px auto 60px auto; /* marge top pour éviter la navbar fixe */
  padding: 20px;
}

/* 🏷️ Titre principal */
h1 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, #007bff, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 📦 Carte de version */
.card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.2rem;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* 🧾 En-tête de version */
.card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #007bff;
}

.card small {
  color: #6c757d;
  font-weight: 400;
}

/* 📋 Liste des changements */
.card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.8rem;
}

.card li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card li:last-child {
  border-bottom: none;
}

/* ✅ Puces personnalisées */
.card li::before {
  content: "•";
  color: #6610f2;
  font-weight: bold;
  display: inline-block;
  width: 14px;
  text-align: center;
}

/* ✨ Animation d’apparition */
.card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
  .card h4 {
    flex-direction: column;
    align-items: flex-start;
  }
}
