/* iMessage-style Chat Timeline Styles */

.chat-timeline_chatContainer___JwgH {
  background: linear-gradient(
    180deg,
    rgba(88, 28, 135, 0.1) 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
}

.chat-timeline_chatBubble__0WRdK {
  position: relative;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 60px;
  max-width: 100%;
}

.chat-timeline_chatBubble__0WRdK > * {
  min-width: 0;
  max-width: 100%;
}

.chat-timeline_chatBubble__0WRdK div {
  min-width: 0;
}

.chat-timeline_chatBubble__0WRdK:hover {
  transform: scale(1.02);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.15);
}

.chat-timeline_chatBubble__0WRdK:active {
  transform: scale(0.98);
}

@keyframes chat-timeline_bubbleIn__ZEmRj {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  50% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.chat-timeline_bubbleIn__ZEmRj {
  animation: chat-timeline_bubbleIn__ZEmRj 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* AI swirl effect for wemix button */
.chat-timeline_aiSwirl__pStuA {
  animation: chat-timeline_swirlAnim__dVETb 2s linear infinite;
}

@keyframes chat-timeline_swirlAnim__dVETb {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* "you're first!" flash animation — visible for 2s then fades out */
.chat-timeline_firstPlayFlash__ni4Kk {
  animation: chat-timeline_firstPlayFlash__ni4Kk 3s ease-out forwards;
}

@keyframes chat-timeline_firstPlayFlash__ni4Kk {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
  }
  15% {
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
 * Shared tutorial animation styles
 * Used by session-tutorial and song-tutorial for highlight effects
 */

/* Tutorial highlight pulse animation - soft outer glow */
@keyframes tutorial_tutorialPulse__uEC7p {
  0%,
  100% {
    box-shadow:
      0 0 15px rgba(234, 179, 8, 0.4),
      0 0 30px rgba(234, 179, 8, 0.2);
  }
  50% {
    box-shadow:
      0 0 25px rgba(234, 179, 8, 0.6),
      0 0 50px rgba(234, 179, 8, 0.3);
  }
}

.tutorial_tutorialHighlight__2xXIv {
  animation: tutorial_tutorialPulse__uEC7p 2s ease-in-out infinite;
}

/* Glow aura for wemix button */
.ai-glow_glowContainer__0gZt3 {
  position: relative;
  flex-shrink: 0;
}

.ai-glow_glowButton__R_Rdr {
  position: relative;
  display: flex;
  height: 28px;
  padding: 0 10px;
  gap: 5px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5501 0%, #ff8c00 50%, #ffb347 100%);
  box-shadow:
    0 0 8px rgba(255, 85, 1, 0.3),
    0 0 16px rgba(255, 140, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: ai-glow_glowPulse__4S8RM 3.5s ease-in-out infinite;
}

.ai-glow_glowButton__R_Rdr:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 14px rgba(255, 85, 1, 0.55),
    0 0 28px rgba(255, 140, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.ai-glow_glowButton__R_Rdr:active {
  transform: scale(0.97);
}

/* Full-width CTA variant — same gradient/glow as the pill but spans full width */
.ai-glow_glowButtonWide__S38eQ {
  width: 85%;
  height: 40px;
  border-radius: 12px;
  padding: 0 16px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: none;
}

.ai-glow_glowButtonWide__S38eQ:hover {
  transform: none;
  box-shadow:
    0 0 8px rgba(255, 85, 1, 0.3),
    0 0 16px rgba(255, 140, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.ai-glow_glowButtonWide__S38eQ:active {
  transform: none;
}

@keyframes ai-glow_glowPulse__4S8RM {
  0%,
  100% {
    box-shadow:
      0 0 8px rgba(255, 85, 1, 0.3),
      0 0 16px rgba(255, 140, 0, 0.15),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 12px rgba(255, 85, 1, 0.5),
      0 0 24px rgba(255, 140, 0, 0.3),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
}

/* ── Latest tracklist container ── */
.latest-tracklist_tracklist__bktI_ {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

/* ── Track card (one per song) ── */
.latest-tracklist_trackCard__Hs4Fc {
  padding: 12px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Main row: [play] [title+artist] [time+arrow] ── */
.latest-tracklist_trackRow__nbm59 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* ── Play / Pause button ── */
.latest-tracklist_playBtn___J5_6 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s ease,
    transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.latest-tracklist_playBtn___J5_6:active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0.92);
}

.latest-tracklist_playBtnActive__3DYnV {
  background: #ff6b00;
}

.latest-tracklist_playBtnActive__3DYnV:active {
  background: #e05e00;
}

.latest-tracklist_playBtnPlaceholder__nO5r7 {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ── Title + artist info block ── */
.latest-tracklist_trackInfo__RDWIp {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* ── Track label ── */
.latest-tracklist_trackLabel__ukdXm {
  font-family: var(--font-oswald), sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-tracklist_trackLabelActive__lRcn8 {
  color: #fff;
  font-weight: 500;
}

.latest-tracklist_trackTitle__wZJUn {
  font-weight: 600;
  color: #fff;
}

.latest-tracklist_trackArtist__NATwH {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: none;
  letter-spacing: normal;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Inline time (next to title) ── */
.latest-tracklist_trackTime__k5B7_ {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: normal;
  white-space: nowrap;
  text-transform: none;
}

/* ── Right chevron ── */
.latest-tracklist_chevron__bPLMW {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  padding-left: 8px;
  transition: color 0.15s ease;
}

.latest-tracklist_trackRow__nbm59:active .latest-tracklist_chevron__bPLMW {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Playing indicator (bars) ── */
.latest-tracklist_playingIndicator__W_Sd5 {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

.latest-tracklist_playingBar__JsWJm {
  width: 2px;
  border-radius: 1px;
  background: #ff6b00;
  animation: latest-tracklist_barPulse____LN3 0.6s ease-in-out infinite;
}

.latest-tracklist_playingBar__JsWJm:nth-child(1) {
  height: 5px;
  animation-delay: 0ms;
}

.latest-tracklist_playingBar__JsWJm:nth-child(2) {
  height: 10px;
  animation-delay: 150ms;
}

.latest-tracklist_playingBar__JsWJm:nth-child(3) {
  height: 7px;
  animation-delay: 300ms;
}

@keyframes latest-tracklist_barPulse____LN3 {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ── Full-width duet button row (prominent variant) ── */
.latest-tracklist_prominentDuetRow__drG4d {
  padding: 8px 0 0;
}

/* ── Inline creator wrapper (for duet slide-down) ── */
.latest-tracklist_inlineCreatorWrapper__4gEDA {
  overflow: hidden;
  margin-top: 12px;
}

.latest-tracklist_inlineCreatorContainer__jAK4J {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 27, 0.95);
  overflow: hidden;
}

/* ── Polling row wrapper (for processing status) ── */
.latest-tracklist_pollingRowWrapper__1OiUw {
  margin-top: 8px;
  padding: 0 4px;
}

/* ── Comments block under the song ── */
.latest-tracklist_commentsBlock__s9rFf {
  padding: 6px 0 2px 44px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.latest-tracklist_commentText__Wsn9S {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.latest-tracklist_commentAuthor__2EHDp {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Global chat comment rows ── */
.latest-tracklist_track__tvnMF {
  padding: 10px 0;
}

/* ── Empty state ── */
.latest-tracklist_empty__KLnjw {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* ── Skeleton / shadow loader ── */
.latest-tracklist_skeletonList__egLc0 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.latest-tracklist_skeletonRow__omHHM {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.latest-tracklist_skeletonCircle__OJvQC {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.latest-tracklist_skeletonInfo__vYDaS {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.latest-tracklist_skeletonTitle__2mZZG {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.latest-tracklist_skeletonSubtitle__7PO7s {
  height: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.latest-tracklist_skeletonChevron__jBZgX {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.latest-tracklist_shimmer__91ha_ {
  position: relative;
  overflow: hidden;
}

.latest-tracklist_shimmer__91ha_::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  animation: latest-tracklist_shimmerSlide__ibvtP 1.5s ease-in-out infinite;
}

@keyframes latest-tracklist_shimmerSlide__ibvtP {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes wemix-feed-card_borderPulse__1OhWv {
  0% {
    border-color: #ff5501;
  }
  50% {
    border-color: #ff7a3d;
  }
  100% {
    border-color: #ff5501;
  }
}

.wemix-feed-card_playingBorder__98X7j {
  animation: wemix-feed-card_borderPulse__1OhWv 1.5s ease-in-out infinite;
}

@keyframes wemix-feed-card_fadeInUp__qfw6i {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.wemix-feed-card_fadeInUp__qfw6i {
  animation: wemix-feed-card_fadeInUp__qfw6i 0.2s ease-out;
}

/* Glow aura for floating action button */
.floating-compose-button_fabButton__grbpl {
  position: relative;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5501 0%, #ff8c00 50%, #ffb347 100%);
  box-shadow:
    0 0 12px rgba(255, 85, 1, 0.4),
    0 0 24px rgba(255, 140, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: floating-compose-button_fabGlowPulse__h7uEO 3.5s ease-in-out infinite;
}

.floating-compose-button_fabButton__grbpl:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 16px rgba(255, 85, 1, 0.6),
    0 0 32px rgba(255, 140, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.floating-compose-button_fabButton__grbpl:active {
  transform: scale(0.95);
}

@keyframes floating-compose-button_fabGlowPulse__h7uEO {
  0%,
  100% {
    box-shadow:
      0 0 12px rgba(255, 85, 1, 0.4),
      0 0 24px rgba(255, 140, 0, 0.2),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 85, 1, 0.6),
      0 0 36px rgba(255, 140, 0, 0.35),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
}

/* ── Tracklist container ── */
.wemix-tracklist_tracklist__9RrOI {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 120px 12px;
  width: 100%;
}

/* ── Track row ── */
.wemix-tracklist_track__quNq3 {
  padding: 18px 0;
  cursor: pointer;
  text-align: center;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s ease;
}

.wemix-tracklist_trackLeftAligned__g8keN {
  text-align: left;
}

.wemix-tracklist_track__quNq3:active {
  opacity: 0.7;
}

/* ── Track label (number + attribution, subtitle wraps below) ── */
.wemix-tracklist_trackLabel__RWzd_ {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3em;
  font-family: var(--font-oswald), sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.wemix-tracklist_trackLabelActive__3iGpT {
  color: #fff;
  font-weight: 500;
}

.wemix-tracklist_trackLabelLeft__MVxjw {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 3px;
}

.wemix-tracklist_trackLabelLeftActive__7TnWk {
  color: #fff;
  font-weight: 500;
}

/* ── Track avatar (replaces number when showAvatars is on) ── */
.wemix-tracklist_trackAvatar__IzBk2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── Column wrapper for attribution + optional subtitle ── */
.wemix-tracklist_trackNameWrapper__iPmiy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

/* ── Truncated track name (inline-actions mode) ── */
.wemix-tracklist_trackNameTruncate__aEx1r {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* ── Wemix title subtitle below attribution ── */
.wemix-tracklist_trackSubtitle__WmwMc {
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Inline action buttons (right of name) ── */
.wemix-tracklist_inlineActions__UWoVz {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 8px;
}

/* ── Verified badge (inline next to name) ── */
.wemix-tracklist_verifiedBadge__kI3aU {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Playing indicator (waveform bars) ── */
.wemix-tracklist_playingIndicator__o0_hh {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-left: 8px;
  vertical-align: middle;
}

.wemix-tracklist_playingBar__U8kzU {
  width: 3px;
  border-radius: 1px;
  background: #ff6b00;
  animation: wemix-tracklist_barPulse__c1ZWD 0.6s ease-in-out infinite;
}

.wemix-tracklist_playingBar__U8kzU:nth-child(1) {
  height: 6px;
  animation-delay: 0ms;
}

.wemix-tracklist_playingBar__U8kzU:nth-child(2) {
  height: 12px;
  animation-delay: 150ms;
}

.wemix-tracklist_playingBar__U8kzU:nth-child(3) {
  height: 8px;
  animation-delay: 300ms;
}

@keyframes wemix-tracklist_barPulse__c1ZWD {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ── Expanded panel ── */
.wemix-tracklist_expandedPanel__vnXLe {
  padding: 4px 0 12px 0;
  width: 100%;
  text-align: left;
  border-left: 1px solid transparent;
  padding-left: 10px;
}

.wemix-tracklist_playbackRow___tgzB {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wemix-tracklist_playPauseBtn__tNLiO {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.wemix-tracklist_playPauseBtn__tNLiO:active {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0.92);
}

.wemix-tracklist_progressTrack__HCiJ4 {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.wemix-tracklist_progressBar__710i3 {
  height: 100%;
  border-radius: 3px;
  background: #ff6b00;
}

.wemix-tracklist_expandedMeta__JyL8_ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wemix-tracklist_playCount__WIN3E {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.wemix-tracklist_actionButtons__EbVkY {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wemix-tracklist_reactionBtn__VJ4Zd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.wemix-tracklist_reactionBtn__VJ4Zd:active {
  background: rgba(255, 255, 255, 0.25);
}

.wemix-tracklist_profileBtn__1sUIJ {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.wemix-tracklist_profileBtn__1sUIJ:active {
  background: rgba(255, 255, 255, 0.25);
}

.wemix-tracklist_profileBtn__1sUIJ:disabled {
  cursor: default;
  opacity: 0.7;
}

.wemix-tracklist_shareBtn__5s4mh {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.wemix-tracklist_shareBtn__5s4mh:active {
  background: rgba(255, 255, 255, 0.25);
}

.wemix-tracklist_duetBtn__zQUO5 {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.wemix-tracklist_duetBtn__zQUO5:active {
  background: #e05e00;
  transform: scale(0.96);
}

/* ── Comments section ── */
.wemix-tracklist_commentsSection__pq2q1 {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.wemix-tracklist_commentsHeader__HZer8 {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.wemix-tracklist_commentThread__JCIJr {
  display: flex;
  flex-direction: column;
}

.wemix-tracklist_commentRow__VUl3i {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0 4px 12px;
}

.wemix-tracklist_commentRow__VUl3i > div:first-child {
  flex-shrink: 0;
  margin-top: 2px;
}

.wemix-tracklist_commentBody__Z439I {
  flex: 1;
  min-width: 0;
}

.wemix-tracklist_commentAuthor__L6mFI {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.wemix-tracklist_commentTime__dkZam {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}

.wemix-tracklist_commentText__0NZ1o {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: inline;
  margin-left: 5px;
  word-break: break-word;
}

.wemix-tracklist_commentReplies__3K7ZS {
  display: flex;
  flex-direction: column;
  padding-left: 28px;
  margin-top: 2px;
}

/* ── Inline comment input ── */
.wemix-tracklist_commentInputRow__S91gr {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 0 0 12px;
}

.wemix-tracklist_commentInput__DHSLH {
  flex: 1;
  height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: #e0e0e0;
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.wemix-tracklist_commentInput__DHSLH::placeholder {
  color: #666;
}

.wemix-tracklist_commentInput__DHSLH:focus {
  border-color: #555;
  background: #222;
}

.wemix-tracklist_sendBtn__zJ43p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ff6b00;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    opacity 0.15s ease;
}

.wemix-tracklist_sendBtn__zJ43p:disabled {
  opacity: 0.35;
  cursor: default;
}

.wemix-tracklist_sendBtn__zJ43p:not(:disabled):active {
  background: #e05e00;
  transform: scale(0.92);
}

/* ── Empty state ── */
.wemix-tracklist_empty__SBIMW {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.megamix-segment-list_eqBar__BDt6o {
  display: inline-block;
  width: 2px;
  border-radius: 1px;
  animation: megamix-segment-list_eqBounce__VjFhk 0.8s ease-in-out infinite alternate;
}

.megamix-segment-list_eqBar__BDt6o:nth-child(1) {
  animation-delay: 0s;
}

.megamix-segment-list_eqBar__BDt6o:nth-child(2) {
  animation-delay: 0.2s;
}

.megamix-segment-list_eqBar__BDt6o:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes megamix-segment-list_eqBounce__VjFhk {
  0% {
    height: 4px;
  }
  100% {
    height: 12px;
  }
}


/*# sourceMappingURL=bdcea094937e8983.css.map*/