h1, h2 {
  text-align: center;
  text-shadow: 1px 1px #000;
}

.category {
  margin: 20px 0;
}

.albums {
  gap: 20px;
  padding: 10px;
}

.album {
  display: flex;
  align-items: center;      /* aliniaza coperta, textul și butonul pe verticală */
  justify-content: space-between; /* textul ocupă spațiul dintre coperta și buton */
  background: #5c3a87;
  border: 2px solid #fceaff;
  border-radius: 2px;
  padding: 10px;
  gap: 15px;
}

.album img {
  width: 100px;   /* coperta fixă */
  height: auto;
}

.album-text {
  display: flex;
  flex-direction: column; /* titlu+artist deasupra, subtitlu sub ele */
  flex: 1;                /* ocupă spațiul disponibil între coperta și buton */
  margin-left: 10px;
}

.title-artist {
  font-weight: bold;
  font-size: 16px;
  color: #fceaff;
}

.subtitle {
  font-size: 14px;
  color: #ffd966;
  margin-top: 4px;
}

.review-btn {
  white-space: nowrap;      /* nu se sparge textul butonului */
  padding: 6px 12px;
  background-color: #ffd966;
  color: #43256E;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
}

.review-btn:hover {
  background-color: #f5c000;
}
