:root {
  --spotify-green: #1db954;
}

.spotify-page {
  min-height: 100vh;
}

.spotify-hero {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  padding: 30px 0 60px;
}

.spotify-hero h1 {
  margin: 0 0 12px;
}

.spotify-hero .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.spotify-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.spotify-actions .button {
  background: var(--spotify-green);
  color: #05130b;
}

.spotify-actions .button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.card.spotify-card {
  padding: 24px;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.track {
  background: rgba(11, 16, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.track a {
  color: var(--ink);
}

.row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hidden {
  display: none;
}

.muted {
  color: var(--muted);
}

.playlist-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.embed-wrap {
  position: relative;
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.embed-iframe {
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100%;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.spotify-status {
  margin-top: 12px;
  color: var(--muted);
}

.spotify-pill {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29, 185, 84, 0.15);
  color: #b9f7d1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
