* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: serif;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #000;
  text-align: center;
  padding-bottom: 80px;
}

/* Image de couverture */
.cover {
  position: fixed;
  inset: 0;
  background-image: url("cover.jpg"); /* 🔁 remplace par le nom exact */
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;
}

/* Titre */
.album-title {
  margin-top: 30px;
  font-size: 28px;
  font-weight: normal;
}

/* Morceau en cours */
.current-track {
  margin-top: 40px;
  font-size: 18px;
  font-style: italic;
}

/* Lecteur */
#audio-player {
  margin-top: 20px;
  width: 300px;
}

/* Liste des morceaux */
.track-list {
  list-style: none;
  margin-top: 30px;
}

.track-list li {
  margin: 8px 0;
  cursor: pointer;
}

.track-list li:hover {
  text-decoration: underline;
}

/* Compte à rebours */
.countdown {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-style: italic;
  max-width: 220px;
  text-align: right;
}

/* Bas de page */
.footer {
  position: fixed;
  bottom: 20px;
  font-size: 13px;
}

.footer.left {
  left: 20px;
}

.footer.right {
  right: 20px;
  max-width: 300px;
  text-align: right;
}

.footer a {
  color: black;
  text-decoration: none;
}
