.hero-artiste, .theme-page {
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.grille-artistes, .grille-themes, .grille-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.carte-artiste, .carte-theme, .album {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.carte-artiste:hover, .carte-theme:hover, .album:hover {
  background: #333;
}
.album img {
  border-radius: 10px;
  margin-bottom: 10px;
}
.titres { list-style: none; margin: 10px 0 0; padding: 0; }
.titres li { margin: 5px 0; }
.titres a { color: #B5CCF8; text-decoration: none; }
.titres a:hover { text-decoration: underline; }

.top-artistes {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.top-artistes h3 {
  margin-top: 0;
  font-size: 1.4em;
}
.top-artistes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-artistes li {
  margin: 5px 0;
}
.top-artistes a {
  color: #B5CCF8;
  text-decoration: none;
}
.top-artistes a:hover {
  text-decoration: underline;
}

.pagination ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 auto;
}
.pagination li a,
.pagination li span {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.pagination li a:hover,
.pagination li span.current {
  background: #B5CCF8;
  color: #000;
}
.autres-artistes a:hover,
.top-artistes a:hover {
  background: #333;
}

/* Grille carrée propre */
.image-carree {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.image-carree img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-carree:hover img {
  transform: scale(1.05);
}

.carte-punchline:hover {
  background: #181818;
}

/* Pagination */
.pagination ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 auto;
}
.pagination li a,
.pagination li span {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.pagination li a:hover,
.pagination li span.current {
  background: #B5CCF8;
  color: #000;
}

/* Liens top & autres artistes */
.autres-artistes a:hover,
.top-artistes a:hover {
  background: #333;
}
