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

    /* 🎯 Ruban Alphabet */
    .alphabet-ribbon {
      overflow-x: auto;
      white-space: nowrap;
      background: #111;
      border-bottom: 1px solid #333;
      padding: 0.5rem 1rem;
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .alphabet-scroll {
      display: flex;
      gap: 0.6rem;
      animation: scrollInfinite 25s linear infinite;
    }

    .alphabet-scroll:hover {
      animation-play-state: paused;
    }

    .alphabet-scroll a {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      padding: 6px 10px;
      border-radius: 6px;
      border: 1px solid transparent;
    }

    .alphabet-scroll a:hover {
      background: #FFD700;
      color: #000;
    }

    @keyframes scrollInfinite {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* 💿 Discographie */
    .container {
      max-width: 1800px;
      margin: auto;
      padding: 2rem;
      background: #111;
      border-radius: 12px;
    }

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

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

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

    .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) {
      .main-layout {
        flex-direction: column;
      }
      .album-preview {
        flex-direction: column;
      }
    }

