body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: white;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  padding: 24px 24px 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: 340px;
}
.cover {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.track-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}
.track-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 18px;
  text-align: center;
}
.service-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta {
  background: rgba(0,0,0,0.7);
  color: white;
  border: 2px solid white;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 14px;
  border-radius: 10px;
  transition: background 0.3s ease;
  text-align: center;
}
.cta:hover {
  background: rgba(0,0,0,0.9);
}
.cta.spotify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #191414;
  border: none;
  font-size: 1.056rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(30,215,96,0.10);
  transition: background 0.2s;
  gap: 10px;
}
.cta.spotify-btn:hover {
  background: #1ed760;
  color: #191414;
}
.spotify-logo {
  display: flex;
  align-items: center;
}
.spotify-logo svg {
  width: 22px;
  height: 22px;
}
.spotify-text {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.consent-info {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.4;
  text-align: center;
}
/* New styles for follow CTA */
.follow-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}
.follow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.5);
  color: #191414;
  border: none;
  font-size: 1.056rem;
  font-weight: 400;
  border-radius: 8px;
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(30,215,96,0.10);
  transition: background 0.2s;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}
.follow-btn:hover {
  background: #1ed760;
  color: #191414;
}
.follow-subline {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 12px;
  text-align: center;
}
.follow-text {
  font-size: 1.12rem;
  font-weight: 400;
}