/* Style2.css - Clean 80s Metal Music Browser */

body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

/* Album Cards */
.album-card {
  transition: all 0.2s ease;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.album-cover {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid #27272a;
}

/* Artist Cards */
.artist-card {
  transition: all 0.2s ease;
}

.artist-card:hover {
  transform: translateY(-4px);
}

/* Segmented Control Active State */
#btn-artists.active,
#btn-albums.active {
  background-color: white;
  color: black;
  font-weight: 600;
}

/* Tracklist */
.track-row {
  transition: background-color 0.1s ease;
}

.track-row:hover {
  background-color: #18181b;
}

/* Mobile Accordion */
@media (max-width: 768px) {
  .album-card {
    cursor: pointer;
  }
}
