body {
    font-family: 'Inter', sans-serif;
    font-style: bold;
    background-color: #f1f1f1;
    color: #2c2c2c;
    margin: 0;
    padding: 0;
    cursor: url("assets/BRETZEL_PICTO_CURSEUR.png") 12 12, auto;
}

.container {
    margin: 40px auto;
    padding: 0;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.music-list {
    list-style: none;
    padding: 0;
    margin: 10;
    width: 100vw;  
    text-align: left;
  }

.music-item {
    border-top: 2px solid rgba(255, 163, 4, 0.8);
    padding: 06px 0;
    cursor: url("assets/BRETZEL_PICTO_CURSEUR.png") 12 12, auto;
    transition: background-color 0.2s ease;
    text-align: left;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.music-item:last-child {
    border-bottom: 2px solid  rgba(255, 163, 4, 0.8);
}

.music-item:hover {
    color: rgba(255, 163, 4, 0.8);
}

.info {
    text-align: left;
  }

.info h2 {
    margin: 0;
    font-size: 1.2rem;
    margin-left: 10px;
}

.info p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: #666;
    margin-left: 10px;
}

.player {
    display: none;
    margin-top: 06px;
}

.player audio {
    width: 30%;
    outline: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f1f1;
    color: #2c2c2c;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Contenu principal */
  .container {
    margin: 40px auto 100px auto; /* espace avant le footer */
    padding: 0;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    cursor: url("assets/BRETZEL_PICTO_CURSEUR.png") 12 12, auto;
  }
  
  .music-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100vw;
    text-align: left;
  }
  
  .music-item {
    border-top: 2px solid rgba(255, 163, 4, 0.8);
    padding: 06px 0;
    cursor: url("assets/BRETZEL_PICTO_CURSEUR.png") 12 12, auto;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: left;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .music-item:last-child {
    border-bottom: 2px solid rgba(255, 163, 4, 0.8);
  }
  
  .music-item:hover {
    color: rgba(255, 163, 4, 0.8);
  }
  
  .info {
    text-align: left;
  }
  
  .info h2 {
    margin: 0;
    font-size: 1.2rem;
    margin-left: 10px;
  }
  
  .info p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: #666;
    margin-left: 10px;
  }
  
  .player {
    display: none;
    margin-top: 6px;
  }
  
  .player audio {
    width: 60%;
    max-width: 350px;
    outline: none;
  }
  
/* === 🎞️ SLIDER DU FOOTER === */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    overflow: hidden;
    z-index: 10;
    cursor: url("assets/BRETZEL_PICTO_CURSEUR.png") 12 12, auto;
  }
  
  .cover-slider {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  
  .slide-track {
    display: flex;
    width: max-content;
    animation: scroll 50s linear infinite;
  }
  
  .slide-track img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  /* Animation fluide parfaitement raccordée */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50%)); /* La moitié de la track (les images dupliquées) */
    }
  }
  
  /* Dégradés discrets sur les bords */
  .cover-slider::before,
  .cover-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 45px;
    height: 100%;
    z-index: 5;
    cursor: url("assets/BRETZEL_PICTO_CURSEUR.png") 12 12, auto;
    pointer-events: none;
  }
  
  .cover-slider::before {
    left: 0;
    background: linear-gradient(to right, #f1f1f1 50%, rgba(241,241,241,0));
  }
  
  .cover-slider::after {
    right: 0;
    background: linear-gradient(to left, #f1f1f1 50%, rgba(241,241,241,0));
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    footer {
      height: 70px;
    }
  
    .slide-track img {
      width: 60px;
      height: 60px;
      margin-right: 10px;
    }
  
    .slide-track {
      animation: scroll 16s linear infinite;
    }
  
    .cover-slider::before,
    .cover-slider::after {
      width: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .slide-track img {
      width: 50px;
      height: 50px;
      margin-right: 8px;
    }
  
    .slide-track {
      animation: scroll 12s linear infinite;
    }
  
    .cover-slider::before,
    .cover-slider::after {
      width: 30px;
    }
  }
  