/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Circular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #191414;
  color: #ffffff;
  overflow-x: hidden;
}

/* App Layout */
.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: linear-gradient(180deg, #1db954 0%, #191414 15%);
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 100vh;
  background-color: #000000;
  padding: 24px;
  z-index: 100;
  overflow-y: auto;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: bold;
  color: #1db954;
}

.logo i {
  font-size: 28px;
  margin-right: 12px;
}

.main-nav ul {
  list-style: none;
  margin-bottom: 32px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-item:hover,
.nav-item.active {
  color: #ffffff;
}

.nav-item i {
  margin-right: 16px;
  font-size: 20px;
  width: 24px;
}

.playlists-section h3 {
  color: #b3b3b3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.playlists-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.create-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s;
}

.create-btn:hover {
  background-color: #282828;
  color: #ffffff;
}

.playlists-list {
  list-style: none;
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #b3b3b3;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.playlist-item:hover,
.playlist-item.active {
  color: #ffffff;
  background-color: #282828;
  padding-left: 8px;
}

/* Main Content */
.main-content {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #191414;
  min-height: calc(100vh - 180px);
  padding-bottom: 180px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-nav {
  display: flex;
  gap: 16px;
}

.nav-back,
.nav-forward {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.nav-back:hover,
.nav-forward:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-back:disabled,
.nav-forward:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.search-container {
  position: relative;
  flex: 1;
  max-width: 364px;
  margin: 0 24px;
}

.search-container i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #b3b3b3;
  z-index: 2;
}

#search-input {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 6px 36px 6px 36px;
  font-size: 14px;
  color: #000000;
  outline: none;
  position: relative;
  z-index: 2;
}

#search-input::placeholder {
  color: #666666;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-top: 4px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s;
}

.search-suggestion-item:hover {
  background-color: #f8f8f8;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(135deg, #1db954, #1ed760);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.search-suggestion-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 2px 0;
}

.search-suggestion-info p {
  font-size: 12px;
  color: #666666;
  margin: 0;
}

.search-suggestion-type {
  font-size: 11px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dropdown Styles */
.dropdown-content {
  padding: 8px 0;
}

.dropdown-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: #ffffff;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
  width: 16px;
  text-align: center;
  color: #b3b3b3;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #b3b3b3;
}

.empty-state h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.empty-state p {
  font-size: 14px;
  color: #b3b3b3;
}

/* Queue Modal */
.queue-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.queue-content {
  background: #282828;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.queue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.queue-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.close-queue {
  background: none;
  border: none;
  color: #b3b3b3;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
}

.close-queue:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.queue-info {
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.queue-info p {
  font-size: 14px;
  color: #1db954;
  font-weight: 600;
  margin: 0;
}

.queue-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.queue-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.queue-item.current {
  background-color: rgba(29, 185, 84, 0.1);
}

.queue-item.current .queue-title {
  color: #1db954;
}

.queue-number {
  width: 24px;
  text-align: center;
  font-size: 14px;
  color: #b3b3b3;
  font-weight: 600;
}

.queue-item .queue-info {
  flex: 1;
  padding: 0;
  border: none;
}

.queue-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.queue-artist {
  font-size: 14px;
  color: #b3b3b3;
}

.queue-duration {
  font-size: 14px;
  color: #b3b3b3;
  font-weight: 600;
}

.user-menu {
  display: flex;
  align-items: center;
}

.user-btn {
  background-color: #000000;
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Area */
.content-area {
  flex: 1;
  padding: 24px 32px;
  overflow-y: auto;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

/* Page Headers */
.page-header {
  margin-bottom: 32px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
}

.genre-tabs {
  display: flex;
  gap: 16px;
}

.genre-tab {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.genre-tab:hover,
.genre-tab.active {
  background-color: #1db954;
}

/* Albums Grid */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Artists Grid */
.artists-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: #b3b3b3 transparent;
}

.artists-grid::-webkit-scrollbar {
  height: 6px;
}

.artists-grid::-webkit-scrollbar-track {
  background: transparent;
}

.artists-grid::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
  border-radius: 3px;
}

.artists-grid::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff;
}

.artist-card {
  background: #181818;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  width: 180px;
  flex-shrink: 0;
}

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

.artist-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100px;
}

.artist-fallback {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, #1db954, #1ed760);
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100px;
}

.artist-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.artist-info p {
  font-size: 14px;
  color: #b3b3b3;
}

.album-card {
  background: #181818;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.album-card:hover {
  background: #282828;
  transform: translateY(-4px);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #1db954, #1ed760);
}

.album-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-info p {
  font-size: 14px;
  color: #b3b3b3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Album View */
.album-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}

/* Artist View */
.artist-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}

.artist-cover-large {
  width: 232px;
  height: 232px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.artist-cover-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-tracks {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
}

.album-cover-large {
  width: 232px;
  height: 232px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  background: linear-gradient(135deg, #1db954, #1ed760);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.album-info {
  flex: 1;
  color: #ffffff;
}

.album-info h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
}

.album-info h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.album-info p {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 24px;
}

.album-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-btn {
  background-color: #1db954;
  border: none;
  color: #000000;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.play-btn:hover {
  background-color: #1ed760;
  transform: scale(1.04);
}

.action-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
}

.action-btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Tracks List */
.album-tracks,
.playlist-tracks {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
}

.tracks-header {
  display: grid;
  grid-template-columns: 40px 1fr 80px;
  gap: 16px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.track-item {
  display: grid;
  grid-template-columns: 40px 1fr auto 80px;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.track-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.track-item.playing {
  background-color: rgba(29, 185, 84, 0.1);
}

.track-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #b3b3b3;
}

.track-item:hover .track-number,
.track-item.playing .track-number {
  color: transparent;
}

.track-item:hover .track-play-btn,
.track-item.playing .track-play-btn {
  display: flex;
}

.track-play-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

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

.track-title {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
}

.track-artist {
  font-size: 14px;
  color: #b3b3b3;
}

.track-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.track-item:hover .track-actions {
  opacity: 1;
}

.add-to-playlist-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
  font-size: 16px;
}

.add-to-playlist-btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.track-duration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  color: #b3b3b3;
}

/* Bottom Player */
.bottom-player {
  height: 90px;
  background: linear-gradient(90deg, #282828, #191414);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.current-song-cover {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #1db954, #1ed760);
  flex-shrink: 0;
}

.current-song-details {
  min-width: 0;
  flex: 1;
}

.song-name {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.song-artist {
  font-size: 12px;
  color: #b3b3b3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.like-song-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s;
}

.like-song-btn:hover,
.like-song-btn.liked {
  color: #1db954;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.control-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.control-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s;
}

.control-btn:hover {
  color: #ffffff;
}

.control-btn.main-play {
  background-color: #ffffff;
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn.main-play:hover {
  background-color: #1ed760;
  transform: scale(1.04);
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
}

.time-current,
.time-total {
  font-size: 11px;
  color: #b3b3b3;
  min-width: 40px;
}

.time-current {
  text-align: right;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

#progress {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

#progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.progress-bar:hover #progress::-webkit-slider-thumb {
  opacity: 1;
}

.player-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.option-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  transition: all 0.2s;
}

.option-btn:hover {
  color: #ffffff;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.volume-control i {
  font-size: 16px;
  color: #b3b3b3;
}

#volume {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

#volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

/* Search Results */
.search-results {
  margin-top: 24px;
}

.search-categories {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.category-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn:hover,
.category-btn.active {
  background-color: #1db954;
}

/* Library */
.library-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.library-header h1 {
  font-size: 32px;
  font-weight: 900;
}

.library-filters {
  display: flex;
  gap: 16px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #1db954;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: #282828;
  padding: 32px;
  border-radius: 8px;
  min-width: 400px;
  max-width: 90vw;
}

.modal-content h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
}

#new-playlist-name {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 16px;
  color: #000000;
  margin-bottom: 24px;
  outline: none;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.btn-primary {
  background-color: #1db954;
  border: none;
  color: #000000;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: #1ed760;
}

.btn-secondary {
  background: none;
  border: 1px solid #b3b3b3;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .bottom-player {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: auto;
    padding: 16px;
    gap: 8px;
  }
  
  .player-info {
    grid-column: 1 / -1;
  }
  
  .player-controls {
    grid-column: 1;
    grid-row: 2;
  }
  
  .player-options {
    grid-column: 2;
    grid-row: 2;
  }
  
  .albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .album-cover-large {
    width: 180px;
    height: 180px;
    font-size: 80px;
  }
  
  .album-info h1 {
    font-size: 48px;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 16px;
}