/* Fond général et police */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #fdfbfb 0%, #fd16c4 100%);
  margin: 0;
  padding: 0;
  color: #333;
}

/* Conteneur central */
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #c6f1f5;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Titre */
h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Liste */
ul {
  list-style-type: none;
  padding: 0;
}

/* Chaque élément de liste */
li {
  background: #e89fcf;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.1em;
}

/* Effet au survol */
li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #e8f0fe;
}

/* Lien du post */
a {
  color: #0077ff;
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px;
}

a:hover {
  text-decoration: underline;
}

/* Texte de l'utilisateur en gras */
li strong {
  font-weight: bold;
}
