
.section-kicker {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  margin: 8px 0 14px;
}

.liked-page .page-title,
.stats-page .page-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin-bottom: 14px;
}

.page-subtitle {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(245,245,245,0.72);
  font-size: 18px;
  line-height: 1.6;
}

.playlist-card {
  width: min(100%, 1120px);
  margin: 26px auto 0;
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(18,18,18,0.9), rgba(8,8,8,0.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 60px rgba(0,0,0,0.28);
  overflow: hidden;
  text-align: left;
}

.playlist-header,
.playlist-row {
  display: grid;
  grid-template-columns: 54px 1.2fr 1fr 1fr 180px;
  gap: 14px;
  align-items: center;
}

.playlist-header {
  padding: 18px 24px;
  color: rgba(245,245,245,0.56);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.playlist-row {
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.playlist-row:first-child {
  border-top: 0;
}

.playlist-index {
  color: rgba(245,245,245,0.46);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.playlist-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.playlist-sub {
  margin-top: 4px;
  color: rgba(245,245,245,0.58);
  font-size: 14px;
}

.playlist-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(245,245,245,0.78);
  font-size: 13px;
}

.playlist-actions {
  display: flex;
  justify-content: flex-start;
  padding-left: 6px;
}

.playlist-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff6cb 0%, #e9c75f 24%, #d4af37 52%, #b98714 76%, #826113 100%);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 12px 26px rgba(0,0,0,0.22);
}

.empty-card {
  width: min(100%, 760px);
  margin: 28px auto 0;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff6cb 0%, #e9c75f 24%, #d4af37 52%, #b98714 76%, #826113 100%);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 12px 26px rgba(0,0,0,0.22);
}

@media (max-width: 900px) {
  .playlist-header {
    display: none;
  }

  .playlist-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .playlist-index {
    display: none;
  }

  .playlist-actions {
    justify-content: flex-start;
  }
}


@media (min-width: 901px) {
  .playlist-actions {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .playlist-open {
    margin-left: -8px;
  }
}
