 .drag-player {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 99999;
  width: 128px;
  height: 128px;
  border-radius: 20px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, rgba(91,112,255,.92), rgba(166,126,255,.9) 48%, rgba(255,184,218,.92));
  box-shadow: 0 10px 34px rgba(31,24,78,.34), 0 0 28px rgba(255,184,218,.22);
  border: 1px solid rgba(255,255,255,.22);
  overflow: hidden;
}

.drag-player button,
.drag-player input { font: inherit; }

.mode1-shell,
.edge-shell,
.mode3-shell {
  position: absolute;
  inset: 0;
}

.mode1-shell,
.mode3-shell { display: none; }

.drag-player.player-mode-1 .mode1-shell { display: block; }

.player-cover-wrap {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.player-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94px;
  height: 94px;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 50%;
}

.drag-player.playing .player-cover {
  animation: cover-spin 8s linear infinite;
}

.player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.player-play:active { transform: translate(-50%, -50%) scale(.92); }

.edge-shell {
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.edge-arrow {
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.drag-player.edge-left,
.drag-player.edge-right {
  width: 24px;
  height: 128px;
  border-radius: 14px;
}

.drag-player.edge-top,
.drag-player.edge-bottom {
  width: 128px;
  height: 24px;
  border-radius: 14px;
}

.drag-player.edge-left .edge-shell,
.drag-player.edge-right .edge-shell,
.drag-player.edge-top .edge-shell,
.drag-player.edge-bottom .edge-shell {
  display: flex;
}

.drag-player.edge-left .edge-arrow { transform: rotate(0deg); }
.drag-player.edge-right .edge-arrow { transform: rotate(180deg); }
.drag-player.edge-top .edge-arrow { transform: rotate(90deg); }
.drag-player.edge-bottom .edge-arrow { transform: rotate(-90deg); }

.drag-player.edge-left .mode1-shell,
.drag-player.edge-right .mode1-shell,
.drag-player.edge-top .mode1-shell,
.drag-player.edge-bottom .mode1-shell,
.drag-player.edge-left .mode3-shell,
.drag-player.edge-right .mode3-shell,
.drag-player.edge-top .mode3-shell,
.drag-player.edge-bottom .mode3-shell {
  display: none !important;
}

.drag-player.edge-left .player-cover-wrap,
.drag-player.edge-right .player-cover-wrap,
.drag-player.edge-top .player-cover-wrap,
.drag-player.edge-bottom .player-cover-wrap {
  display: none;
}

.mode3-shell {
  width: 100%;
  height: 100%;
  padding: 10px 12px 12px;
  overflow: hidden;
}

.drag-player.mode-3 {
  width: min(640px, calc(100vw - 24px));
  height: 148px;
  border-radius: 20px;
}

.drag-player.mode-3 .mode1-shell,
.drag-player.mode-3 .edge-shell { display: none !important; }
.drag-player.mode-3 .mode3-shell { display: flex; flex-direction: column; }

.player-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
  z-index: 5;
}

.mode3-top {
  display: grid;
  grid-template-columns: 1fr 112px 1fr;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.mode3-center-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode3-cover-wrap {
  position: relative;
  width: 94px;
  height: 94px;
}

.mode3-cover {
  width: 92px;
  height: 92px;
}

.mode3-side {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mode3-left-side { justify-content: flex-start; }
.mode3-right-side { justify-content: flex-end; }

.small-btn,
.control-button {
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.small-btn { width: 32px; height: 32px; flex: 0 0 auto; font-size: 16px; }
.small-btn:active,
.control-button:active { transform: scale(.94); }

.track-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-align: center;
}

.track-info-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: max-content;
  animation: marquee 10s linear infinite;
}

.track-name {
  display: block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.track-artist {
  display: block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
  font-size: 12px;
  opacity: .8;
}

.mode3-bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-top: 6px;
}

.mode3-bottom .list-toggle {
  width: 18px;
  height: 18px;
  font-size: 8px;
  background: rgba(255,255,255,.2);
}

.progress-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 24px;
  display: flex;
  align-items: center;
}

.progress-track {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,.92);
}

#m3Seek, #m3VolSlider {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

#m3Seek {
  position: absolute;
  inset: 0;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

#m3Seek::-webkit-slider-thumb,
#m3VolSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

#m3Seek::-moz-range-thumb,
#m3VolSlider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.volume-popover {
  position: absolute;
  right: 4px;
  bottom: 42px;
  width: 34px;
  height: 112px;
  border-radius: 17px;
  padding: 10px 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
}

.volume-popover.show { display: flex; }

#m3VolSlider {
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  transform: rotate(-90deg);
}

.playlist-panel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 26px;
  border-radius: 13px;
  background: rgba(0,0,0,.18);
  padding: 0 10px;
  display: none;
  align-items: center;
  font-size: 12px;
}

.playlist-panel.show { display: flex; }

.drag-player.mode-3 .playlist-panel.show { display: flex; }

@keyframes cover-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* mode3 compact override */
.drag-player.mode-3 {
  width: min(456px, calc(100vw - 18px));
  height: 188px;
  border-radius: 18px;
  overflow: visible;
}

.drag-player.mode-3 .mode3-shell {
  display: block;
  position: relative;
  padding: 0;
  overflow: visible;
}

.drag-player.mode-3 .player-close {
  top: 8px;
  right: 8px;
  z-index: 8;
}

.drag-player.mode-3 .mode3-top {
  position: absolute;
  inset: 0;
  display: block;
  overflow: visible;
}

.drag-player.mode-3 .mode3-center-cover {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 126px;
  height: 126px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drag-player.mode-3 .mode3-cover-wrap,
.drag-player.mode-3 .mode3-cover {
  width: 116px;
  height: 116px;
}

.drag-player.mode-3 .mode3-side {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.drag-player.mode-3 .mode3-left-side,
.drag-player.mode-3 .mode3-right-side {
  top: 44%;
  height: 154px;
  display: flex;
  align-items: center;
}

.drag-player.mode-3 .mode3-left-side {
  left: 18px;
  width: 150px;
  justify-content: flex-start;
  gap: 8px;
}

.drag-player.mode-3 .mode3-right-side {
  right: 18px;
  width: 150px;
  justify-content: flex-end;
  gap: 8px;
}

.drag-player.mode-3 .m3-prev-btn,
.drag-player.mode-3 .m3-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.drag-player.mode-3 .m3-prev-btn { left: 0; }
.drag-player.mode-3 .m3-next-btn { right: 0; }
.drag-player.mode-3 .m3-prev-btn:active,
.drag-player.mode-3 .m3-next-btn:active {
  transform: translateY(-50%) scale(.94);
}

.drag-player.mode-3 .mode3-lyrics,
.drag-player.mode-3 .mode3-meta {
  min-width: 0;
  height: 132px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  padding: 5px 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 8px rgba(255,255,255,.04);
}

.drag-player.mode-3 .mode3-lyrics {
  order: 2;
  flex: 1 1 auto;
  border-radius: 62px 0 0 62px;
  margin-left: 48px;
  padding-left: 12px;
  padding-right: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
  text-align: right;
  z-index: 2;
}

.drag-player.mode-3 .mode3-meta {
  order: 1;
  flex: 1 1 auto;
  border-radius: 0 58px 58px 0;
  margin-right: 48px;
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(255,255,255,.10);
  z-index: 2;
}

.drag-player.mode-3 .mode3-meta-line {
  width: calc(100% - 8px);
  max-width: 100%;
  justify-self: start;
  margin-left: 0;
  border-radius: 999px;
  height: 24px;
}

.drag-player.mode-3 .mode3-meta-line:nth-child(2) {
  margin-left: 10px;
}

.drag-player.mode-3 .mode3-meta-line:nth-child(1),
.drag-player.mode-3 .mode3-meta-line:nth-child(2),
.drag-player.mode-3 .mode3-meta-line:nth-child(3) {
  justify-self: end;
}

.drag-player.mode-3 .mode3-meta-line:nth-child(1) {
  margin-top: 1px;
}


.drag-player.mode-3 .mode3-meta-line .mode3-marquee {
  line-height: 24px;
}

.drag-player.mode-3 .mode3-meta-line:nth-child(3) {
  margin-left: 16px;
}

.drag-player.mode-3 .mode3-lyrics-label,
.drag-player.mode-3 .mode3-lyrics-line {
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: normal;
  overflow-wrap: anywhere;
  text-overflow: clip;
  position: relative;
  z-index: 5;
  max-width: 100%;
}

.drag-player.mode-3 .mode3-lyrics-label {
  font-size: 11px;
  opacity: .62;
  line-height: 1;
}

.drag-player.mode-3 .mode3-lyrics-line {
  font-size: 12px;
  opacity: .72;
  line-height: 1.1;
}

.drag-player.mode-3 .mode3-lyrics-line.is-current {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
  line-height: 1.1;
}

.drag-player.mode-3 .mode3-lyrics-line:last-child {
  opacity: .52;
}

.drag-player.mode-3 .mode3-lyrics,
.drag-player.mode-3 .mode3-meta {
  border-radius: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.drag-player.mode-3 .mode3-lyrics {
  padding-left: 12px;
  padding-right: 12px;
  text-align: left;
}

.drag-player.mode-3 .mode3-meta {
  padding-left: 12px;
  padding-right: 12px;
}

.drag-player.mode-3 .mode3-lyrics-label,
.drag-player.mode-3 .mode3-lyrics-line,
.drag-player.mode-3 .mode3-meta-line,
.drag-player.mode-3 .mode3-marquee {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.drag-player.mode-3 .mode3-lyrics-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.drag-player.mode-3 .mode3-meta-line {
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  box-sizing: border-box;
}

.drag-player.mode-3 .mode3-marquee {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
}

.drag-player.mode-3 .mode3-marquee-text {
  flex: 0 0 auto;
  padding-right: 28px;
}

.drag-player.mode-3 .mode3-meta-title,
.drag-player.mode-3 .mode3-meta-artist {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.drag-player.mode-3 .mode3-meta-title .mode3-marquee,
.drag-player.mode-3 .mode3-meta-artist .mode3-marquee {
  max-width: 100%;
}

.drag-player.mode-3 .mode3-meta-title .mode3-marquee-text,
.drag-player.mode-3 .mode3-meta-artist .mode3-marquee-text {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drag-player.mode-3 .mode3-meta-artist {
  opacity: .86;
  font-size: 12px;
}

.drag-player.mode-3 .mode3-meta-time {
  justify-content: flex-start;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;
  opacity: .9;
}

.drag-player.mode-3 .small-btn {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  font-size: 18px;
}

.drag-player.mode-3 .mode3-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  font-size: 15px;
  flex: 0 0 auto;
}

.drag-player.mode-3 .mode3-play:active {
  transform: translate(-50%, -50%) scale(.92);
}

.drag-player.mode-3.playing .mode3-play {
  font-size: 13px;
}

.drag-player.mode-3 .mode3-bottom {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(430px, calc(100% - 28px));
  transform: translateX(-50%);
  z-index: 6;
  display: grid;
  grid-template-columns: 26px 48px minmax(0, 1fr) 26px 26px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.drag-player.mode-3 .mode3-bottom .list-button,
.drag-player.mode-3 .mode3-bottom .mode-button,
.drag-player.mode-3 .mode3-bottom .volume-button {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.drag-player.mode-3 .mode3-bottom .list-button {
  pointer-events: none;
  cursor: default;
  font-size: 15px;
}

.drag-player.mode-3 .mode3-bottom .list-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  box-shadow: inset 0 1px 4px rgba(0,0,0,.28), 0 2px 8px rgba(0,0,0,.16);
  transition: background .22s ease;
}

.drag-player.mode-3 .mode3-bottom .list-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0,0,0,.3);
  transition: transform .22s ease;
}

.drag-player.mode-3.list-open .mode3-bottom .list-toggle {
  background: #62d26f;
}

.drag-player.mode-3.list-open .mode3-bottom .list-toggle span {
  transform: translateX(20px);
}

.drag-player.mode-3 .progress-wrap {
  position: relative;
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
}

.drag-player.mode-3 .progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  overflow: visible;
}

.drag-player.mode-3 .progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,.92);
}

.drag-player.mode-3 .progress-thumb {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0,0,0,.32);
  pointer-events: none;
}

.drag-player.mode-3 #m3Seek {
  position: absolute;
  inset: 0;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.drag-player.mode-3 .volume-popover {
  right: -4px;
  bottom: 34px;
}

.drag-player.mode-3 .playlist-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: 100%;
  height: 50%;
  min-height: 92px;
  transform: translateX(-50%) translateY(var(--playlist-shift, 0px));
  display: none;
  flex-direction: column;
  z-index: 7;
  border-radius: 16px;
  background: rgba(18, 18, 24, .72);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.drag-player.mode-3 .playlist-panel.show {
  display: flex;
}

.drag-player.mode-3 .playlist-panel-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 8px;
}

.drag-player.mode-3 .playlist-panel-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  opacity: .9;
  flex: 0 0 auto;
}

.drag-player.mode-3 .playlist-drag {
  flex: 1;
  position: relative;
  height: 24px;
  background: transparent;
  pointer-events: none;
}

.drag-player.mode-3 .playlist-drag::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.drag-player.mode-3 .playlist-drag::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.drag-player.mode-3 .playlist-drag::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.drag-player.mode-3 .playlist-drag::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.drag-player.mode-3 .playlist-drag::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.drag-player.mode-3 .playlist-panel-body {
  flex: 1;
  padding: 0 12px 12px;
  font-size: 12px;
  line-height: 1.4;
  overflow: hidden;
}


/* Desktop text tracks scroll inside their own rectangles instead of overflowing them. */
.drag-player.mode-3 .mode3-lyrics-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  padding: 0;
}

.drag-player.mode-3 .mode3-lyric-marquee,
.drag-player.mode-3 .mode3-time-marquee {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
}

.drag-player.mode-3 .mode3-lyric-marquee > span,
.drag-player.mode-3 .mode3-time-marquee > span {
  flex: 0 0 auto;
  padding-right: 28px;
}

.drag-player.mode-3 .mode3-meta-time {
  overflow: hidden;
}

.drag-player.mode-3 .mode3-time-marquee {
  animation-duration: 10s;
}

@media (max-width: 768px) {
  .drag-player {
    left: 12px;
    top: auto;
    bottom: 12px;
  }

  .drag-player.mode-3 {
    width: calc(100vw - 12px) !important;
    height: 186px !important;
    max-width: none !important;
    border-radius: 18px;
  }

  .drag-player.mode-3 .mode3-center-cover {
    top: 43%;
    width: 92px;
    height: 92px;
  }

  .drag-player.mode-3 .mode3-cover-wrap,
  .drag-player.mode-3 .mode3-cover {
    width: 84px;
    height: 84px;
  }

  .drag-player.mode-3 .mode3-left-side {
    left: 10px;
    width: 132px;
    gap: 5px;
  }

  .drag-player.mode-3 .mode3-right-side {
    right: 10px;
    width: 132px;
    gap: 5px;
  }

  .drag-player.mode-3 .mode3-lyrics,
  .drag-player.mode-3 .mode3-meta {
    height: 88px;
    gap: 4px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .drag-player.mode-3 .mode3-lyrics {
    margin-left: 49px;
    padding-left: 3px;
    padding-right: 10px;
  }

  .drag-player.mode-3 .mode3-meta {
    margin-right: 49px;
    padding-left: 8px;
    padding-right: 5px;
  }

  .drag-player.mode-3 .mode3-meta-line {
    width: calc(100% - 4px);
    height: 21px;
    justify-self: start;
  }

  .drag-player.mode-3 .mode3-meta-line:nth-child(2) {
    margin-left: 6px;
  }

  .drag-player.mode-3 .mode3-meta-line:nth-child(3) {
    margin-left: 12px;
  }

  .drag-player.mode-3 .small-btn {
    width: 38px;
    height: 38px;
  }

  .drag-player.mode-3 .mode3-bottom {
    width: min(320px, calc(100% - 16px));
    grid-template-columns: 24px 46px minmax(84px, 120px) 24px 24px;
    gap: 5px;
    bottom: 9px;
  }

  .drag-player.mode-3 .mode3-bottom .list-button,
  .drag-player.mode-3 .mode3-bottom .mode-button,
  .drag-player.mode-3 .mode3-bottom .volume-button {
    width: 24px;
    height: 24px;
  }

  .drag-player.mode-3 .playlist-panel {
    width: 100%;
    min-height: 86px;
  }

  .drag-player.mode-3 .mode3-lyrics,
  .drag-player.mode-3 .mode3-meta {
    border-radius: 0 !important;
  }
}
