body {
  font-family: Arial, sans-serif;
  color: white;
  padding: 30px;
  background: radial-gradient( #adadad, #000000);
  background-attachment: fixed;
}

/* TITRE */
h1 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: 300;
}

/* GRID */
#container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #353434;
  padding: 15px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* IMAGE */
.card img {
  width: 100%;
  border-radius: 10px;
}

/* HOVER */
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* TEXTE */
.card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* PAGE DETAIL */
#title {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* GALERIE */
#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#gallery img {
  width: 120px;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.8;
}

/* HOVER GALERIE */
#gallery img:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* TRACKLIST */
#tracks {
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

#tracks li {
  margin: 5px 0;
  color: rgba(255,255,255,0.8);
}

#body2 {
  text-align: center;
  background-attachment: fixed;
}
body {
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
