body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}

 .banner img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-bottom: 4px solid #FFD700;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #000;
      color: #fff;
    }

    /* 📚 Alphabet + Home fusionné */
    .abc-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      background: #111;
      padding: 15px 20px;
      overflow-x: auto;
      gap: 10px;
      border-bottom: 2px solid #FFD700;
    }

    .abc-container::-webkit-scrollbar {
      height: 8px;
    }

    .abc-container::-webkit-scrollbar-thumb {
      background: #FFD700;
      border-radius: 10px;
    }

    .abc-link, .home-link {
      background: linear-gradient(145deg, #1a1a2e, #0f3460);
      color: #FFD700;
      font-weight: bold;
      font-size: 18px;
      padding: 10px 18px;
      border-radius: 999px;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 4px 6px rgba(255, 204, 0, 0.4);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .abc-link:hover, .home-link:hover {
      background: #FFD700;
      color: #111;
      box-shadow: 0 0 25px #FFD700, 0 0 50px rgba(255, 204, 0, 0.7);
      transform: scale(1.1);
    }

    .search-bar {
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .search-form {
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 500px;
      width: 90%;
    }

    .search-form input[type="text"] {
      flex: 1;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #FFD700;
      background: #111;
      color: #fff;
      font-size: 16px;
    }

    .search-form button {
      padding: 10px 20px;
      border: none;
      background-color: #FFD700;
      color: #000;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
    }

    .search-form button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

/* Résultats */
.artist-list {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}

.results-container {
  background: linear-gradient(135deg, #0a0a23, #111);
  padding: 30px;
  border-radius: 12px;
  max-width: 1800px;
  width: 100%;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

    .container {
      max-width: 1850px;
      margin: auto;
      padding: 2rem;
      background: #111;
      border-radius: 12px;
    }

    .artist-header {
      display: flex;
      gap: 2rem;
      background: #111827;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .artist-photo img {
      width: 180px;
      height: 180px;
      border-radius: 12px;
      object-fit: cover;
    }

    .artist-info {
      flex: 1;
      min-width: 250px;
      color: #eee;
    }

    .artist-info p {
      margin: 0.5rem 0;
      font-size: 14px;
      line-height: 1.5;
    }

    .artist-badges {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 2rem auto;
    }

    .badge {
      background: #000;
      color: #FFD700;
      border: 1px solid #FFD700;
      padding: 6px 12px;
      font-size: 13px;
      border-radius: 999px;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .badge:hover {
      background: #333;
    }

    .badge.active {
      background: #FFD700;
      color: #000;
    }

    .main-layout {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .sidebar {
      flex: 1;
      min-width: 300px;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      max-height: 70vh;
      overflow-y: auto;
    }

    .album-item {
      opacity: 0;
      transform: translateY(10px);
      animation: fadeInUp 0.4s ease forwards;
      background: #222;
      padding: 0.5rem;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border: 1px solid #333;
      cursor: pointer;
    }

    .album-item:hover,
    .album-item.active {
      background: #333;
    }

    .album-item img {
      width: 60px;
      height: 60px;
      border-radius: 6px;
      object-fit: cover;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .album-preview {
      flex: 2;
      min-width: 280px;
      background: #111827;
      padding: 1.5rem;
      border-radius: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .cover-and-info {
      max-width: 300px;
      flex: 1;
    }

    .cover-and-info img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 1rem;
    }

    .album-meta p {
      font-size: 14px;
      color: #ccc;
      margin: 4px 0;
    }

    .tracklist-container {
      flex: 2;
    }

    .tracklist-container ol {
      padding-left: 1rem;
    }

    .tracklist-container li {
      background: #1f2937;
      margin-bottom: 0.4rem;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 14px;
    }

    .badge-format {
      background: #2563eb;
      color: #fff;
    }

    @media (max-width: 768px) {
      .artist-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .main-layout {
        flex-direction: column;
      }

      .album-preview {
        flex-direction: column;
      }

      .artist-info {
        text-align: left;
      }
    }

.album-item {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.album-item:hover {
  transform: scale(1.03);
}

.album-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 15px;
}

.album-cover {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.album-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.album-info h2 {
  margin: 0;
  color: #FFD700;
}

.album-info p {
  margin: 5px 0;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .album-link {
    flex-direction: column;
    align-items: center;
  }
  .album-cover {
    width: 100%;
    height: auto;
  }
}


