.spotify-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem,8vw,6rem) clamp(2rem,8vw,6rem);
  text-align: center;
  position: relative;
}

.spotify-eyebrow {
  font-size: .6rem;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: var(--petal);
  margin-bottom: 1.2rem;
}

.spotify-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.spotify-sub {
  font-size: .72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: .14em;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 3.5rem;
}

.spotify-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.spotify-note-ring {
  position: absolute;
  inset: -3.5rem;
  pointer-events: none;
}

.spotify-note-ring span {
  position: absolute;
  font-size: 1rem;
  opacity: .18;
  animation: noteDrift 5s ease-in-out infinite;
}
.spotify-note-ring span:nth-child(1) { top: 0;    left: 50%;  transform: translateX(-50%); animation-delay: 0s; }
.spotify-note-ring span:nth-child(2) { top: 18%;  right: 0;   animation-delay: .7s; }
.spotify-note-ring span:nth-child(3) { bottom: 18%; right: 0;  animation-delay: 1.4s; }
.spotify-note-ring span:nth-child(4) { bottom: 0; left: 50%;  transform: translateX(-50%); animation-delay: 2.1s; }
.spotify-note-ring span:nth-child(5) { bottom: 18%; left: 0;  animation-delay: 2.8s; }
.spotify-note-ring span:nth-child(6) { top: 18%;  left: 0;    animation-delay: 3.5s; }

@keyframes noteDrift {
  0%, 100% { transform: translateY(0) scale(1);   opacity: .18; }
  50%       { transform: translateY(-8px) scale(1.15); opacity: .35; }
}
.spotify-note-ring span:nth-child(1),
.spotify-note-ring span:nth-child(4) {
  animation-name: noteDriftX;
}
@keyframes noteDriftX {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1);    opacity: .18; }
  50%       { transform: translateX(-50%) translateY(-8px) scale(1.15); opacity: .35; }
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  background: #1DB954;
  color: #fff;
  border-radius: 50px;
  padding: 1.05rem 2.6rem;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(29,185,84,.35), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 1;
}

.spotify-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(29,185,84,.5), 0 4px 12px rgba(0,0,0,.2);
}

.spotify-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.spotify-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

.spotify-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(232,169,154,.4), transparent);
  margin: .5rem 0;
}

.spotify-playlist-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: .04em;
}
