/* ═══════════════════════════════════════════
   MÜZİK HUB — Oynatıcı, timeline, sözler, video
   ═══════════════════════════════════════════ */

/* ─── Oynatıcı Hub ─── */
.music-player-hub {
  position: relative;
  margin-bottom: clamp(3rem, 8vw, 5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.music-player-hub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 0%, var(--gold-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.player-hub-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 992px) {
  .player-hub-inner {
    grid-template-columns: 340px 1fr;
  }
}

.player-now-playing {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 992px) {
  .player-now-playing {
    border-bottom: none;
    border-right: 1px solid var(--border-subtle);
  }
}

.player-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.player-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.music-player-hub.is-playing .player-cover-wrap img {
  transform: scale(1.03);
}

.player-cover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.player-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

.player-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: player-pulse 1.5s ease-in-out infinite;
}

@keyframes player-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.player-track-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.player-track-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.player-source-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.player-source-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.player-source-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.player-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.7rem 0.35rem 0.6rem;
  font-family: inherit;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: calc(var(--radius-md) - 3px);
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.player-tab::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition), opacity var(--transition);
  opacity: 0;
}

.player-tab:hover {
  background: rgba(255, 255, 255, 0.03);
}

.player-tab:active {
  transform: scale(0.98);
}

.player-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  font-size: 1.05rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.player-tab-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
  text-align: center;
  transition: color var(--transition);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Spotify */
.player-tab--spotify:hover .player-tab-icon {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.28);
  background: rgba(30, 215, 96, 0.07);
}

.player-tab--spotify.active {
  background: rgba(30, 215, 96, 0.07);
  border-color: rgba(30, 215, 96, 0.22);
  box-shadow: inset 0 0 24px rgba(30, 215, 96, 0.06);
}

.player-tab--spotify.active::after {
  width: 1.25rem;
  opacity: 1;
  background: #1ed760;
  box-shadow: 0 0 10px rgba(30, 215, 96, 0.55);
}

.player-tab--spotify.active .player-tab-icon {
  color: #1ed760;
  background: rgba(30, 215, 96, 0.14);
  border-color: rgba(30, 215, 96, 0.4);
  box-shadow: 0 0 18px rgba(30, 215, 96, 0.22);
}

.player-tab--spotify.active .player-tab-label {
  color: #1ed760;
}

/* Apple Music */
.player-tab--apple:hover .player-tab-icon {
  color: #fa5c8c;
  border-color: rgba(250, 92, 140, 0.28);
  background: rgba(250, 92, 140, 0.07);
}

.player-tab--apple.active {
  background: rgba(250, 92, 140, 0.07);
  border-color: rgba(250, 92, 140, 0.22);
  box-shadow: inset 0 0 24px rgba(250, 92, 140, 0.06);
}

.player-tab--apple.active::after {
  width: 1.25rem;
  opacity: 1;
  background: #fa5c8c;
  box-shadow: 0 0 10px rgba(250, 92, 140, 0.55);
}

.player-tab--apple.active .player-tab-icon {
  color: #fa5c8c;
  background: rgba(250, 92, 140, 0.14);
  border-color: rgba(250, 92, 140, 0.4);
  box-shadow: 0 0 18px rgba(250, 92, 140, 0.22);
}

.player-tab--apple.active .player-tab-label {
  color: #fa5c8c;
}

/* YouTube */
.player-tab--youtube:hover .player-tab-icon {
  color: #ff4444;
  border-color: rgba(255, 68, 68, 0.28);
  background: rgba(255, 68, 68, 0.07);
}

.player-tab--youtube.active {
  background: rgba(255, 68, 68, 0.07);
  border-color: rgba(255, 68, 68, 0.22);
  box-shadow: inset 0 0 24px rgba(255, 68, 68, 0.06);
}

.player-tab--youtube.active::after {
  width: 1.25rem;
  opacity: 1;
  background: #ff4444;
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.55);
}

.player-tab--youtube.active .player-tab-icon {
  color: #ff4444;
  background: rgba(255, 68, 68, 0.14);
  border-color: rgba(255, 68, 68, 0.4);
  box-shadow: 0 0 18px rgba(255, 68, 68, 0.22);
}

.player-tab--youtube.active .player-tab-label {
  color: #ff4444;
}

@media (max-width: 380px) {
  .player-tab-label {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }

  .player-tab-icon {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) {
  .player-tab {
    padding: 0.75rem 0.5rem 0.65rem;
  }

  .player-tab-label {
    font-size: 0.62rem;
  }
}

.player-embed-wrap {
  position: relative;
  background: #000;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: none;
}

@media (min-width: 992px) {
  .player-embed-wrap {
    min-height: 360px;
  }
  .player-embed-wrap iframe {
    min-height: 360px;
  }
}

.player-embed-wrap.spotify-mode iframe {
  min-height: 152px;
  max-height: 152px;
}

.player-embed-wrap.apple-mode iframe {
  min-height: 175px;
  max-height: 175px;
}

/* ─── En Çok Dinlenenler ─── */
.top-tracks-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}

.top-tracks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.top-tracks-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.top-tracks-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-track-item {
  display: grid;
  grid-template-columns: 2rem 48px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  color: inherit;
}

.top-track-item:hover,
.top-track-item.is-active {
  background: rgba(212, 175, 55, 0.06);
}

.top-track-rank {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.top-track-item.is-active .top-track-rank,
.top-track-item:hover .top-track-rank {
  color: var(--gold);
}

.top-track-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.top-track-info {
  min-width: 0;
}

.top-track-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.top-track-plays {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.top-track-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease-out);
}

.top-track-item:hover .top-track-play,
.top-track-item.is-active .top-track-play {
  opacity: 1;
  transform: scale(1);
}

/* ─── Diskografi Timeline ─── */
.discography-section {
  position: relative;
  overflow: hidden;
}

.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .timeline-line {
    left: 1.25rem;
  }
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2.5rem 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

@media (max-width: 767px) {
  .timeline-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0 1.25rem;
  }
  .timeline-item .timeline-content--left {
    display: none;
  }
}

.timeline-dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--gold-dark);
  margin: 0.35rem auto 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease-out);
}

.timeline-item.highlight .timeline-dot {
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  background: var(--gold);
}

@media (max-width: 767px) {
  .timeline-dot {
    grid-column: 1;
    margin: 0.35rem 0 0;
  }
}

.timeline-content {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.timeline-content:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-item.highlight .timeline-content {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.04) 100%);
}

.timeline-content--left {
  grid-column: 1;
  text-align: right;
}

.timeline-content--right {
  grid-column: 3;
}

@media (max-width: 767px) {
  .timeline-content--left:empty,
  .timeline-content--right:empty {
    display: none;
  }

  .timeline-content--right {
    grid-column: 2;
    text-align: left;
  }
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.timeline-type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ─── Video Grid ─── */
.videos-section {
  background: var(--bg-secondary);
}

.video-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .video-featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.video-card--featured {
  border-color: var(--border-gold);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--transition);
}

.video-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform 0.3s var(--ease-out);
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
}

.video-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.video-body {
  padding: 1rem 1.25rem;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

.video-year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.video-grid-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.video-card--sm .video-play-btn {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

/* ─── Şarkı Sözleri ─── */
.lyrics-section {
  position: relative;
}

.lyrics-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.lyrics-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.lyrics-item.is-open {
  border-color: var(--border-gold);
}

.lyrics-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  gap: 1rem;
}

.lyrics-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.lyrics-trigger-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lyrics-trigger-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.lyrics-chevron {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}

.lyrics-item.is-open .lyrics-chevron {
  transform: rotate(180deg);
}

.lyrics-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}

.lyrics-item.is-open .lyrics-body {
  grid-template-rows: 1fr;
}

.lyrics-body-inner {
  overflow: hidden;
}

.lyrics-text {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-secondary);
  white-space: pre-line;
  font-style: italic;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  margin: 0 1.5rem 1.5rem;
}

.lyrics-actions {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem 1.25rem;
}

.lyrics-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}

.lyrics-action-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

/* Music hub layout row */
.music-hub-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

@media (min-width: 992px) {
  .music-hub-row {
    grid-template-columns: 1fr 380px;
    align-items: stretch;
  }
}

#musicPlayerHub {
  min-width: 0;
}

.music-card {
  cursor: pointer;
}

.music-card.is-playing {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px var(--border-gold), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.music-card.is-playing .music-card-play {
  opacity: 1;
  background: var(--gold);
}

.music-card.is-playing .music-card-play i {
  color: var(--bg-primary);
}

/* ─── Spotify Playlist ─── */
.playlist-section {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.playlist-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.playlist-section-desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.playlist-open-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.playlist-embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-subtle);
  background: #000;
}

.playlist-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: none;
}

.playlist-tracks-list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.playlist-track-row {
  display: grid;
  grid-template-columns: 2rem 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.5rem;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.playlist-track-row:last-child {
  border-bottom: none;
}

.playlist-track-row:hover,
.playlist-track-row.is-active {
  background: rgba(212, 175, 55, 0.06);
}

.playlist-track-rank {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.playlist-track-row:hover .playlist-track-rank {
  color: var(--gold);
}

.playlist-track-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.playlist-track-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-track-artist {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-track-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  padding-right: 0.25rem;
}

.playlist-track-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  opacity: 0;
  transition: opacity 0.2s var(--ease-out), color var(--transition);
}

.playlist-track-row:hover .playlist-track-play,
.playlist-track-row.is-active .playlist-track-play {
  opacity: 1;
  color: var(--gold);
}

.playlist-load-more {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.playlist-load-more-count {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 575px) {
  .playlist-track-row {
    grid-template-columns: 1.5rem 1fr auto;
    gap: 0.5rem;
    padding: 0.6rem 0.25rem;
  }

  .playlist-track-play {
    display: none;
  }

  .playlist-track-title {
    font-size: 0.85rem;
  }
}
