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

strong {
  color: #FFD700;
}

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

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

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

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

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

.badge:hover {
  background: #333;
}

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

.sidebar {
  width: 45%;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.album-item {
  background: #333;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #444;
  cursor: pointer;
  position: relative;
}

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

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

.album-type-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  color: white;
}

.badge-cd { background: #2563eb; }
.badge-lp { background: #f59e0b; }
.badge-digital { background: #10b981; }

/* === Album Preview Section === */

.album-preview {
  flex: 1;
  background: #111827;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}

.album-preview .top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.album-preview img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.album-info {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

.album-info h2 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #FFD700;
}

.album-info p {
  font-size: 14px;
  margin: 4px 0;
  color: white;
}

.album-info strong {
  color: #FFD700;
}

/* === Tracklist Section === */

.tracklist {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 600px;
}

.tracklist h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.tracklist ol {
  padding-left: 1.5rem;
  margin: 0;
  list-style-position: inside;
}

.tracklist li {
  font-size: 14px;
  color: white;
  line-height: 1.7;
  padding-left: 0;
  margin-left: 0;
  text-indent: 0;
}

.tracklist li::marker {
  color: #FFD700;
}

/* === Pagination === */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pagination button {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.pagination button.active {
  background-color: #FFD700;
  color: #000;
}

/* === Album Count === */

.album-count {
  margin-top: 1rem;
  font-size: 14px;
  color: #d1d5db;
  text-align: center;
}

/* === Responsive Fixes === */

@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    max-height: unset;
  }

  .album-preview {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .album-preview .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .album-preview img {
    margin-bottom: 1rem;
  }

  .album-info {
    margin-left: 0;
    text-align: center;
  }

  .tracklist {
    text-align: left;
    padding: 0 1rem;
  }

  .artist-header {
    flex-direction: column;
    text-align: center;
  }

  .artist-header img {
    width: 150px;
    height: 150px;
  }
}
