.song-detail-wrap {
  padding-bottom: 110px;
}

.song-toolbar-group-scroll {
  flex: 1 1 280px;
}

.song-toolbar-scroll {
  width: 100%;
}

.song-scroll-range {
  flex: 1 1 160px;
  min-width: 120px;
}

.song-bottom-dock {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 24px));
  z-index: 1040;
  pointer-events: none;
}

.song-bottom-dock__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 28px;
  background: rgba(56, 58, 66, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
  color: #ffffff;
  max-width: 100%;
}

.song-bottom-dock__section {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.song-bottom-dock__section--scroll {
  flex: 0 0 auto;
}

.song-bottom-dock__section--metro {
  flex: 0 0 auto;
}

.song-bottom-dock__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.song-dock-btn {
  appearance: none;
  border: 0;
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  transition: all 0.18s ease;
}

.song-dock-btn i {
  font-size: 1.35rem;
  line-height: 1;
}

.song-dock-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.song-dock-btn--play {
  width: 60px;
  height: 60px;
  background: #635bff;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.35);
}

.song-dock-btn--play:hover {
  background: #746dff;
}

.song-dock-btn--play i {
  font-size: 1.7rem;
}

.song-dock-btn--icon.is-active,
.song-dock-btn--play.is-active {
  background: rgba(0, 220, 170, 0.18);
  color: #00e0b0;
}

.song-bottom-dock__range {
  flex: 0 0 120px;
  width: 120px;
  min-width: 120px;
  accent-color: #8f8f99;
}

.song-bottom-dock__status {
  min-width: 58px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .song-detail-wrap {
    padding-bottom: 120px;
  }

  .song-bottom-dock {
    bottom: 10px;
    width: min(520px, calc(100vw - 20px));
  }

  .song-bottom-dock__inner {
    gap: 10px;
    padding: 12px 14px;
  }

  .song-bottom-dock__label {
    font-size: 0.92rem;
  }

  .song-bottom-dock__range {
    flex: 0 0 110px;
    width: 110px;
    min-width: 110px;
  }
}

@media (max-width: 767.98px) {
  .song-detail-wrap {
    padding-bottom: 132px;
  }

  .song-bottom-dock {
    bottom: 8px;
    width: min(460px, calc(100vw - 16px));
  }

  .song-bottom-dock__inner {
    border-radius: 24px;
    padding: 10px 12px;
    gap: 8px;
  }

  .song-bottom-dock__label {
    display: none;
  }

  .song-bottom-dock__section--scroll {
    flex: 0 0 auto;
  }

  .song-bottom-dock__range {
    flex: 0 0 84px;
    width: 84px;
    min-width: 84px;
  }

  .song-dock-btn {
    min-width: 38px;
    height: 38px;
  }

  .song-dock-btn i {
    font-size: 1.2rem;
  }

  .song-dock-btn--play {
    width: 52px;
    height: 52px;
  }

  .song-dock-btn--play i {
    font-size: 1.45rem;
  }

  .song-bottom-dock__status {
    min-width: 48px;
    font-size: 0.86rem;
  }
}

@media (max-width: 575.98px) {
  .song-detail-wrap {
    padding-bottom: 138px;
  }

  .song-bottom-dock {
    width: min(420px, calc(100vw - 12px));
  }

  .song-bottom-dock__inner {
    gap: 6px;
    padding: 9px 10px;
  }

  .song-bottom-dock__section {
    gap: 6px;
  }

  .song-bottom-dock__range {
    flex: 0 0 72px;
    width: 72px;
    min-width: 72px;
  }

  .song-bottom-dock__status {
    min-width: 42px;
    font-size: 0.8rem;
  }
}