/* 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;
}


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