@charset "UTF-8";
:root {
  --bg-base: #121212;
  --bg-elevated: #181818;
  --bg-highlight: #282828;
  --bg-press: #000000;
  --bg-header: #3a5a40;
  --text-base: #ffffff;
  --text-subdued: #a7a7a7;
  --text-bright: #ffffff;
  --accent-color: #00bcd4;
  --accent-hover: #26c6da;
  --divider: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-base);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--album-cover);
  background-size: cover;
  background-position: center;
  filter: blur(80px) brightness(0.4);
  transform: scale(1.2);
  z-index: -1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}

.nav-left {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.04);
}
.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-right {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  border: none;
  color: var(--text-subdued);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.1s ease;
}
.btn-secondary:hover {
  color: var(--text-bright);
  transform: scale(1.04);
}

.btn-primary {
  background-color: var(--text-bright);
  border: none;
  border-radius: 500px;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-primary:hover {
  transform: scale(1.04);
}

.album-header {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 2rem;
  padding-top: 4rem;
}

.album-cover {
  flex-shrink: 0;
  width: 232px;
  height: 232px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  overflow: hidden;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--bg-highlight);
}

.album-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.album-type {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.album-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
  color: var(--text-bright);
}

.album-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.artist-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-highlight);
}

.artist-name {
  color: var(--text-bright);
  font-weight: 700;
  text-decoration: none;
}
.artist-name:hover {
  text-decoration: underline;
}

.meta-separator {
  color: var(--text-subdued);
}

.release-year,
.track-count,
.duration {
  color: var(--text-subdued);
}

.action-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: var(--accent-color);
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.play-btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.04);
}

.shuffle-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--accent-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.1s ease;
}
.shuffle-btn:hover {
  color: var(--accent-hover);
  transform: scale(1.04);
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-subdued);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.1s ease;
}
.icon-btn:hover {
  color: var(--text-bright);
  transform: scale(1.04);
}

.track-list {
  padding: 0 2rem;
}

.track-header {
  display: grid;
  grid-template-columns: 40px 1fr 80px;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--divider);
  color: var(--text-subdued);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.col-index {
  text-align: center;
}

.col-duration {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tracks {
  display: flex;
  flex-direction: column;
}

.track-row {
  display: grid;
  grid-template-columns: 40px 1fr 80px;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.track-row:hover {
  background-color: var(--bg-highlight);
}
.track-row:hover .track-index:not(.playing-icon) {
  visibility: hidden;
}
.track-row:hover .track-index:not(.playing-icon)::after {
  content: "▶";
  visibility: visible;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-bright);
}
.track-row.playing .track-index {
  color: var(--accent-color);
}
.track-row.playing .track-title {
  color: var(--accent-color);
}

.track-index {
  text-align: center;
  color: var(--text-subdued);
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.track-title {
  color: var(--text-bright);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  color: var(--text-subdued);
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-artist:hover {
  text-decoration: underline;
  color: var(--text-bright);
}

.track-duration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--text-subdued);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}

.album-footer {
  padding: 2rem;
  color: var(--text-subdued);
  font-size: 0.6875rem;
}

.release-date {
  margin-bottom: 0.5rem;
}

.copyright p {
  margin: 0;
  line-height: 1.8;
}

.artist-section {
  padding: 2rem;
  margin-top: 2rem;
}
.artist-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
}

.artist-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-elevated);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  max-width: 400px;
}
.artist-stats:hover {
  background-color: var(--bg-highlight);
}

.artist-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-highlight);
}

.artist-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.artist-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-subdued);
}

.artist-link {
  color: var(--text-bright);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.artist-link:hover {
  text-decoration: underline;
}

.monthly-listeners {
  font-size: 0.875rem;
  color: var(--text-subdued);
}

@media (max-width: 768px) {
  .album-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .album-cover {
    width: 192px;
    height: 192px;
  }
  .album-title {
    font-size: 2rem;
  }
  .album-meta {
    justify-content: center;
  }
  .action-bar {
    justify-content: center;
  }
  .navbar {
    padding: 1rem;
  }
  .nav-right .btn-secondary {
    display: none;
  }
  .nav-right .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .album-cover {
    width: 160px;
    height: 160px;
  }
  .album-title {
    font-size: 1.5rem;
  }
  .track-header {
    grid-template-columns: 32px 1fr 60px;
  }
  .track-row {
    grid-template-columns: 32px 1fr 60px;
  }
}

/*# sourceMappingURL=artist.css.map */
