.bio-interactive {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 105, 180, 0.4);
  background: rgba(255, 105, 180, 0.06);
  color: rgba(255, 217, 247, 0.6);
  font-size: 0.9em;
  font-style: italic;
  letter-spacing: 0.02em;
  box-shadow: none;
  text-shadow: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.bio-interactive:hover {
  border-color: rgba(255, 105, 180, 0.75);
  background: rgba(255, 105, 180, 0.12);
  color: rgba(255, 217, 247, 0.9);
  box-shadow: none;
  text-shadow: none;
}
.bio-interactive .bio-add-icon {
  font-size: 0.85em;
  opacity: 0.7;
  transition: opacity 0.18s;
}
.bio-interactive:hover .bio-add-icon {
  opacity: 1;
}

.spotify-connected-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  padding: 3px 11px 3px 9px;
  border-radius: 20px;
  background: rgba(30, 215, 96, 0.1);
  border: 1px solid rgba(30, 215, 96, 0.35);
  color: #1ed760;
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 0 6px rgba(30, 215, 96, 0.4);
}

/* Social links icon row (profile page) */
.social-links-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.95em;
  box-shadow: none;
  filter: none;
  text-shadow: none;
  transition: filter 0.15s;
  text-decoration: none;
}
.social-link-icon.social_instagram { color:#e1306c; border:1px solid #e1306c; background:rgba(225,48,108,0.1); }
.social-link-icon.social_tiktok    { color:#69c9d0; border:1px solid #69c9d0; background:rgba(105,201,208,0.1); }
.social-link-icon.social_twitter   { color:#e7e7e7; border:1px solid #e7e7e7; background:rgba(255,255,255,0.08); }
.social-link-icon.social_discord   { color:#5865f2; border:1px solid #5865f2; background:rgba(88,101,242,0.12); }
.social-link-icon.social_youtube   { color:#ff0000; border:1px solid #ff0000; background:rgba(255,0,0,0.1); }
.social-link-icon.social_twitch    { color:#9146ff; border:1px solid #9146ff; background:rgba(145,70,255,0.12); }
.social-link-icon:hover            { filter: brightness(1.25); }

/* Social handle inputs (account settings) */
.social-settings-prefix {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 10px;
  font-size: 0.82em;
  color: #888;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.social-handle-input {
  border-radius: 0 6px 6px 0 !important;
}

/* Spotify CTA hierarchy */
 .profile-header .btn.spotify-btn {
  box-shadow: 0 0 14px 3px rgba(255,105,180,0.38), 0 2px 6px rgba(255,217,247,0.18);
  background: linear-gradient(90deg,#ff69b4,#ffd9f7);
  color: #1a001a;
  font-weight: bold;
  border: 2px solid #ffd9f7;
  font-size: 1.08em;
  letter-spacing: 0.03em;
  z-index: 2;
}
.profile-header .btn.edit-profile-btn {
  box-shadow: 0 0 4px 1px #ff69b4;
  background: #222;
  color: #ffd9f7;
  font-weight: 500;
  border: 1.5px solid #ff69b4;
  font-size: 1em;
  z-index: 1;
}

.profile-header .btn:not(.spotify-btn):not(.edit-profile-btn) {
  box-shadow: 0 0 2px 1px #ff69b4;
  background: #222;
  color: #ffd9f7;
  border: 1px solid #ff69b4;
  font-weight: 400;
  font-size: 1em;
  z-index: 0;
}
