:root {
  --mq-bg: #0c1014;
  --mq-panel: rgba(255, 255, 255, 0.04);
  --mq-line: rgba(255, 255, 255, 0.1);
  --mq-text: #e8eaed;
  --mq-muted: rgba(255, 255, 255, 0.55);
  --mq-accent: #EEC41E;
  --mq-accent-hot: #ffd84a;
  --mq-player-h: 118px;
  --mq-scroll-thumb: rgba(238, 196, 30, 0.55);
  --mq-scroll-thumb-hot: rgba(255, 216, 74, 0.9);
  --mq-scroll-track: rgba(255, 255, 255, 0.04);
}

html, body {
  height: 100%;
  margin: 0;
  background: var(--mq-bg);
  color: var(--mq-text);
}

body.music_body {
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.music_shell {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(238, 196, 30, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(80, 120, 160, 0.1), transparent 50%),
    var(--mq-bg);
}

.music_top {
  position: relative;
  z-index: 50;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--mq-line);
  backdrop-filter: blur(8px);
  background:
    linear-gradient(180deg, rgba(12, 16, 20, 0.96), rgba(12, 16, 20, 0.88));
}

.music_search {
  position: relative;
  flex: 1 1 auto;
  max-width: 480px;
  min-width: 180px;
  z-index: 1;
}

.search_field {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.search_icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  fill: rgba(238, 196, 30, 0.75);
  pointer-events: none;
  z-index: 1;
}

.music_body .music_search .library_search,
.music_body input.library_search[type="search"] {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 11px 14px 11px 38px;
  border-radius: 999px;
  border: 1px solid rgba(238, 196, 30, 0.28) !important;
  background: rgba(8, 12, 16, 0.92) !important;
  color: #f2f4f7 !important;
  font-size: 13px;
  font-family: inherit;
  line-height: 1.3;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.music_body .music_search .library_search::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
  opacity: 1;
}

.music_body .music_search .library_search:hover {
  border-color: rgba(238, 196, 30, 0.45) !important;
  background: rgba(10, 14, 20, 0.96) !important;
}

.music_body .music_search .library_search:focus {
  border-color: rgba(238, 196, 30, 0.7) !important;
  background: #0c1016 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(238, 196, 30, 0.12);
}

.music_body .music_search .library_search::-webkit-search-decoration,
.music_body .music_search .library_search::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search_panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(420px, 55vh);
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(238, 196, 30, 0.28);
  background: #12171e;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.search_empty {
  padding: 16px 14px;
  font-size: 13px;
  color: var(--mq-muted);
}

.search_list {
  list-style: none;
  margin: 0;
  padding: 8px;
}

.search_group_label {
  margin: 6px 6px 4px;
  padding: 4px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 196, 30, 0.75);
  list-style: none;
}

.search_group_label:first-child {
  margin-top: 0;
}

.search_item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 0;
}

.search_item:hover,
.search_item.is_active {
  background: rgba(238, 196, 30, 0.12);
}

.search_kind {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(238, 196, 30, 0.28);
  background: rgba(238, 196, 30, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mq-accent);
  white-space: nowrap;
}

.search_main {
  grid-column: 1;
  grid-row: 1;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search_sub {
  grid-column: 1;
  grid-row: 2;
  font-size: 12px;
  color: var(--mq-muted);
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music_brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.music_brand h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.music_brand h1 span { color: var(--mq-accent); }

.music_brand .tag {
  font-size: 12px;
  color: var(--mq-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.music_top_actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.music_user_label {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: var(--mq-muted);
}

.mq_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  background: var(--mq-accent);
  color: #1a1a1a !important;
  transition: background 0.2s ease, transform 0.15s ease;
}

.mq_btn:hover {
  background: var(--mq-accent-hot);
  color: #1a1a1a !important;
}

.mq_btn_ghost {
  background: transparent;
  color: var(--mq-text) !important;
  border: 1px solid var(--mq-line);
}

.mq_btn_ghost:hover {
  border-color: var(--mq-accent);
  color: var(--mq-accent) !important;
  background: transparent;
}

.music_main {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 0;
  padding-bottom: var(--mq-player-h);
}

@media (max-width: 840px) {
  .music_main {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .music_albums {
    max-height: 38vh;
    border-right: none !important;
    border-bottom: 1px solid var(--mq-line);
  }
  .music_top {
    flex-wrap: wrap;
  }
  .music_search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }
}

.music_albums,
.music_detail {
  min-height: 0;
  overflow: auto;
  padding: 22px 24px 28px;
}

/* Themed scrollbars (Firefox + WebKit); hide arrow buttons */
.music_albums,
.music_detail,
.search_panel,
.account_tab_panel,
.activity_body,
.lists_nav,
.lists_detail,
.add_list_popover,
.queue_list,
.lyrics_drawer_body {
  scrollbar-width: thin;
  scrollbar-color: var(--mq-scroll-thumb) var(--mq-scroll-track);
}

.music_albums::-webkit-scrollbar,
.music_detail::-webkit-scrollbar,
.search_panel::-webkit-scrollbar,
.account_tab_panel::-webkit-scrollbar,
.activity_body::-webkit-scrollbar,
.lists_nav::-webkit-scrollbar,
.lists_detail::-webkit-scrollbar,
.add_list_popover::-webkit-scrollbar,
.queue_list::-webkit-scrollbar,
.lyrics_drawer_body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.music_albums::-webkit-scrollbar-track,
.music_detail::-webkit-scrollbar-track,
.search_panel::-webkit-scrollbar-track,
.account_tab_panel::-webkit-scrollbar-track,
.activity_body::-webkit-scrollbar-track,
.lists_nav::-webkit-scrollbar-track,
.lists_detail::-webkit-scrollbar-track,
.add_list_popover::-webkit-scrollbar-track,
.queue_list::-webkit-scrollbar-track,
.lyrics_drawer_body::-webkit-scrollbar-track {
  background: var(--mq-scroll-track);
  border-radius: 8px;
  margin: 8px 0;
}

.music_albums::-webkit-scrollbar-thumb,
.music_detail::-webkit-scrollbar-thumb,
.search_panel::-webkit-scrollbar-thumb,
.account_tab_panel::-webkit-scrollbar-thumb,
.activity_body::-webkit-scrollbar-thumb,
.lists_nav::-webkit-scrollbar-thumb,
.lists_detail::-webkit-scrollbar-thumb,
.add_list_popover::-webkit-scrollbar-thumb,
.queue_list::-webkit-scrollbar-thumb,
.lyrics_drawer_body::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(238, 196, 30, 0.75),
    rgba(238, 196, 30, 0.35)
  );
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.music_albums::-webkit-scrollbar-thumb:hover,
.music_detail::-webkit-scrollbar-thumb:hover,
.search_panel::-webkit-scrollbar-thumb:hover,
.account_tab_panel::-webkit-scrollbar-thumb:hover,
.activity_body::-webkit-scrollbar-thumb:hover,
.lists_nav::-webkit-scrollbar-thumb:hover,
.lists_detail::-webkit-scrollbar-thumb:hover,
.add_list_popover::-webkit-scrollbar-thumb:hover,
.queue_list::-webkit-scrollbar-thumb:hover,
.lyrics_drawer_body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--mq-scroll-thumb-hot),
    rgba(238, 196, 30, 0.55)
  );
  border: 2px solid transparent;
  background-clip: padding-box;
}

.music_albums::-webkit-scrollbar-button,
.music_detail::-webkit-scrollbar-button,
.search_panel::-webkit-scrollbar-button,
.account_tab_panel::-webkit-scrollbar-button,
.activity_body::-webkit-scrollbar-button,
.lists_nav::-webkit-scrollbar-button,
.lists_detail::-webkit-scrollbar-button,
.add_list_popover::-webkit-scrollbar-button,
.queue_list::-webkit-scrollbar-button,
.lyrics_drawer_body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.music_albums::-webkit-scrollbar-corner,
.music_detail::-webkit-scrollbar-corner,
.search_panel::-webkit-scrollbar-corner,
.account_tab_panel::-webkit-scrollbar-corner,
.activity_body::-webkit-scrollbar-corner,
.lists_nav::-webkit-scrollbar-corner,
.lists_detail::-webkit-scrollbar-corner,
.add_list_popover::-webkit-scrollbar-corner,
.queue_list::-webkit-scrollbar-corner,
.lyrics_drawer_body::-webkit-scrollbar-corner {
  background: transparent;
}

.music_albums {
  border-right: 1px solid var(--mq-line);
}

.section_label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mq-accent);
  margin: 0 0 14px;
}

.library_stats {
  margin: -8px 0 12px;
  font-size: 12px;
  color: var(--mq-muted);
  line-height: 1.4;
}

.nav_crumb {
  margin: 0 0 14px;
}

.nav_back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--mq-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav_back:hover {
  color: var(--mq-accent-hot);
}

.nav_back_chevron {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid currentColor;
}

.nav_artist_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nav_artist_title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  min-width: 0;
}

.nav_sort_btn {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(238, 196, 30, 0.35);
  background: rgba(238, 196, 30, 0.08);
  color: var(--mq-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nav_sort_btn:hover {
  background: rgba(238, 196, 30, 0.16);
  border-color: rgba(238, 196, 30, 0.55);
  color: var(--mq-accent-hot);
}

.nav_sort_btn .icon_svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav_sort_btn .sort_asc {
  display: none;
}

.nav_sort_btn[aria-pressed="false"] .sort_desc {
  display: none;
}

.nav_sort_btn[aria-pressed="false"] .sort_asc {
  display: block;
}

.album_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.album_grid.nav_enter_forward {
  animation: navPaneForward 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.album_grid.nav_enter_back {
  animation: navPaneBack 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.album_grid.nav_enter_fade {
  animation: navPaneFade 0.22s ease both;
}

.nav_meta_enter {
  animation: navPaneFade 0.28s ease both;
}

@keyframes navPaneForward {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes navPaneBack {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: none; }
}

@keyframes navPaneFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .album_grid.nav_enter_forward,
  .album_grid.nav_enter_back,
  .album_grid.nav_enter_fade,
  .nav_meta_enter {
    animation: none;
  }
}

.artist_row {
  display: grid;
  grid-template-columns: 1fr 14px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.artist_row:hover {
  background: var(--mq-panel);
  border-color: var(--mq-line);
  transform: translateX(2px);
}

.artist_row.is_playing_src {
  border-color: rgba(238, 196, 30, 0.28);
}

.artist_row_main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.artist_row_name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.artist_row_sub {
  font-size: 12px;
  color: var(--mq-muted);
}

.artist_row_chevron {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(238, 196, 30, 0.75);
  justify-self: end;
}

.album_card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 7px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
  width: 100%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.album_card:hover {
  background: var(--mq-panel);
  border-color: var(--mq-line);
  transform: translateX(2px);
}

.album_card.is_active {
  background: rgba(238, 196, 30, 0.1);
  border-color: rgba(238, 196, 30, 0.35);
}

.album_card.is_locate {
  animation: locatePulse 1.4s ease;
}

.album_cover,
.detail_cover,
#now-cover {
  background:
    linear-gradient(135deg, rgba(238, 196, 30, 0.28), rgba(30, 40, 50, 0.95));
  /* No broken-image icon text while src empty / loading */
  color: transparent;
}

.album_cover {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

@keyframes locatePulse {
  0% { box-shadow: 0 0 0 0 rgba(238, 196, 30, 0.55); }
  40% { box-shadow: 0 0 0 4px rgba(238, 196, 30, 0.25); }
  100% { box-shadow: 0 0 0 0 rgba(238, 196, 30, 0); }
}

.track_row.is_locate_target {
  background: rgba(238, 196, 30, 0.16);
  animation: locatePulse 1.4s ease;
}

.album_meta .title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.album_meta .sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--mq-muted);
}

.detail_hero {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

@media (max-width: 560px) {
  .detail_hero {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.detail_cover {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  background:
    linear-gradient(145deg, rgba(238, 196, 30, 0.3), #1a222c 70%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  animation: coverIn 0.45s ease both;
}

.detail_cover.is_clickable {
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail_cover.is_clickable:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.cover_lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.cover_lightbox[hidden] {
  display: none !important;
}

.cover_lightbox_backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  cursor: zoom-out;
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: blur(10px);
}

.cover_lightbox_img {
  position: relative;
  z-index: 1;
  max-width: min(860px, 92vw);
  max-height: min(860px, 86vh);
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(238, 196, 30, 0.22);
  animation: coverIn 0.28s ease both;
}

body.cover_lightbox_open {
  overflow: hidden;
}

@keyframes coverIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: none; }
}

.detail_info h2 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.detail_info .detail_artist {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.88;
}

.detail_info .detail_meta {
  margin: 0 0 16px;
  color: var(--mq-muted);
  font-size: 14px;
}

.detail_info p {
  margin: 0 0 16px;
  color: var(--mq-muted);
  font-size: 14px;
}

.track_list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--mq-line);
}

.track_row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.15s ease;
}

.track_row:hover { background: rgba(255, 255, 255, 0.04); }

.track_row.is_playing {
  background: rgba(238, 196, 30, 0.08);
}

.track_row .idx {
  font-size: 13px;
  color: var(--mq-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.track_row.is_playing .idx,
.track_row.is_playing .name {
  color: var(--mq-accent);
}

.track_row .name {
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track_actions {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.track_row:hover .track_actions,
.track_row.is_playing .track_actions {
  opacity: 1;
}

@media (hover: none) {
  .track_actions {
    opacity: 1;
  }
}

.track_act {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--mq-muted);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.track_act:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.track_row.is_playing .play_hint {
  color: var(--mq-accent);
}

.track_row .play_hint {
  font-size: 11px;
}
.disc_header {
  list-style: none;
  margin: 18px 0 6px;
  padding: 10px 8px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mq-accent);
  border-bottom: 1px solid rgba(238, 196, 30, 0.25);
}

.disc_header:first-child {
  margin-top: 0;
}

.empty_state, .error_state {
  padding: 40px 12px;
  color: var(--mq-muted);
  font-size: 14px;
  line-height: 1.6;
}

.error_state { color: #ff8a8a; }

.music_player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--mq-player-h);
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(260px, 1.4fr) minmax(120px, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0 24px;
  background: rgba(10, 12, 16, 0.92);
  border-top: 1px solid var(--mq-line);
  backdrop-filter: blur(12px);
  z-index: 40;
}

@media (max-width: 720px) {
  .music_player {
    grid-template-columns: 1fr;
    height: auto;
    padding: 12px 16px 16px;
    gap: 10px;
  }
  :root { --mq-player-h: 188px; }
  .player_now .sub { display: none; }
}

.player_now {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.player_now img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: #1a222c;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.player_now img:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 2px rgba(238, 196, 30, 0.45);
}

.player_now img:focus-visible {
  outline: 2px solid var(--mq-accent);
  outline-offset: 2px;
}

.player_now .text {
  min-width: 0;
}

.player_now .title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player_now .sub {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--mq-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player_controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ctrl_row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ctrl_btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--mq-line);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.ctrl_btn:hover {
  border-color: var(--mq-accent);
  color: var(--mq-accent);
}

.ctrl_btn_square {
  border-radius: 8px;
  border-color: transparent;
  background: transparent;
}

.ctrl_btn_square:hover,
.ctrl_btn_square:focus-visible {
  border-radius: 8px;
  border-color: var(--mq-accent);
  background: rgba(238, 196, 30, 0.12);
  color: var(--mq-accent);
  outline: none;
}

.ctrl_btn_square[aria-pressed="true"] {
  border-color: rgba(238, 196, 30, 0.55);
  background: rgba(238, 196, 30, 0.1);
  color: var(--mq-accent);
}

.ctrl_btn.primary {
  width: 56px;
  height: 56px;
  background: var(--mq-accent);
  border-color: var(--mq-accent);
  color: #1a1a1a;
}

.ctrl_btn.primary:hover {
  background: var(--mq-accent-hot);
  color: #1a1a1a;
  transform: scale(1.04);
}

.ctrl_btn .icon-pause { display: none; }
.ctrl_btn.is-playing .icon-play { display: none; }
.ctrl_btn.is-playing .icon-pause { display: block; }

.album_card.is_playing_src {
  border-color: rgba(238, 196, 30, 0.2);
}

.album_card.is_playing_src:not(.is_active) .album_meta .title::after {
  content: " · playing";
  color: var(--mq-accent);
  font-weight: 500;
  font-size: 11px;
}

.seek_row {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 560px;
}

.seek_row .t {
  font-size: 13px;
  color: var(--mq-muted);
  font-variant-numeric: tabular-nums;
  text-align: center;
  font-weight: 500;
}

.seek_wrap {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.seek_track {
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  pointer-events: none;
}

.seek_buf {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: rgba(238, 196, 30, 0.28);
  border-radius: 3px;
  transition: width 0.12s linear;
}

.seek_played {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #e0b410, var(--mq-accent-hot));
  border-radius: 3px;
  transition: width 0.08s linear;
}

.seek {
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 18px;
  margin: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.seek::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
  border: none;
}

.seek::-moz-range-track {
  height: 6px;
  background: transparent;
  border: none;
}

.seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--mq-accent);
  box-shadow: 0 0 0 3px rgba(238, 196, 30, 0.22);
  cursor: pointer;
  border: none;
}

.seek::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mq-accent);
  box-shadow: 0 0 0 3px rgba(238, 196, 30, 0.22);
  cursor: pointer;
  border: none;
}

.player_extra {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.player_extra .icon_svg {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.vol {
  width: 110px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.vol::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: none;
}

.icon_svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ctrl_btn.primary .icon_svg {
  width: 24px;
  height: 24px;
}

.buffer_row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  min-height: 18px;
}

.buffer_badge {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--mq-accent);
  letter-spacing: 0.04em;
}

.buffer_badge.is_on {
  display: inline-flex;
}

.buffer_badge.is_muted {
  color: var(--mq-muted);
}

.buffer_spin {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(238, 196, 30, 0.25);
  border-top-color: var(--mq-accent);
  border-radius: 50%;
  animation: mqSpin 0.7s linear infinite;
  flex: 0 0 auto;
}

@keyframes mqSpin {
  to { transform: rotate(360deg); }
}

.prefetch_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mq-muted);
  flex: 0 0 auto;
}

.prefetch_dot.is_ready {
  background: var(--mq-accent);
  box-shadow: 0 0 8px rgba(238, 196, 30, 0.55);
}

/* —— Full-screen lyrics (always stacked: cover above, lyrics below; player stays) —— */
.lyrics_drawer {
  position: fixed;
  inset: 0 0 var(--mq-player-h) 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(238, 196, 30, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(60, 90, 120, 0.12), transparent 50%),
    rgba(8, 10, 14, 0.98);
  backdrop-filter: blur(16px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

body.lyrics_open .lyrics_drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

body.lyrics_open .music_shell {
  visibility: hidden;
}

.lyrics_drawer_head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 24px 6px;
}

.lyrics_drawer_head .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mq-accent);
  flex: 0 0 auto;
}

.lyrics_pos_btns {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lyrics_pos_btn {
  padding: 6px 12px !important;
  font-size: 16px !important;
  line-height: 1 !important;
  min-width: 2.4em;
  font-weight: 600;
}

.lyrics_pos_btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.lyrics_stage {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 28px 12px;
}

.lyrics_art {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 0 8px 4px;
  animation: coverIn 0.45s ease both;
}

.lyrics_art img {
  width: min(112px, 28vw, 18vh);
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  background:
    linear-gradient(145deg, rgba(238, 196, 30, 0.3), #1a222c 70%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.lyrics_meta {
  text-align: center;
  min-width: 0;
  width: 100%;
  max-width: 520px;
}

.lyrics_meta .title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}

.lyrics_meta .album {
  display: block;
  font-size: 12px;
  color: var(--mq-muted);
  line-height: 1.4;
}

.lyrics_drawer_body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 4px 12px 16px;
  /* Center pad set in JS from pane height — avoid container-type/mask bugs */
}

.lyrics_lines {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  max-width: 720px;
}

.lyrics_line {
  margin: 0;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease, font-weight 0.15s ease, font-size 0.2s ease, text-shadow 0.2s ease;
  cursor: pointer;
}

.lyrics_line:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lyrics_line.is_active {
  color: var(--mq-accent-hot);
  font-weight: 700;
  font-size: 26px;
  text-shadow: 0 0 22px rgba(238, 196, 30, 0.35);
}

.lyrics_line.is_past {
  color: rgba(255, 255, 255, 0.38);
}

.lyrics_empty {
  padding: 18vh 16px;
  text-align: center;
  color: var(--mq-muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .lyrics_stage {
    padding: 2px 14px 10px;
    gap: 6px;
  }
  .lyrics_art img {
    width: min(96px, 26vw, 16vh);
    border-radius: 8px;
  }
  .lyrics_meta .title {
    font-size: 15px;
  }
  .lyrics_meta .album {
    font-size: 11px;
  }
  .lyrics_drawer_head {
    padding: 12px 14px 4px;
  }
  .lyrics_line {
    font-size: 17px;
    padding: 10px 10px;
  }
  .lyrics_line.is_active {
    font-size: 22px;
  }
  .lyrics_lines {
    max-width: none;
  }
}

/* Short / landscape: still stacked top→bottom; shrink cover so lyrics stay visible */
@media (max-height: 640px) {
  .lyrics_drawer_head {
    padding: 6px 14px 2px;
  }
  .lyrics_stage {
    flex-direction: column;
    gap: 4px;
    padding: 0 14px 8px;
  }
  .lyrics_art {
    flex-direction: column;
    gap: 4px;
    padding: 0 0 2px;
  }
  .lyrics_art img {
    width: min(52px, 11vh, 16vw);
  }
  .lyrics_meta {
    text-align: center;
  }
  .lyrics_meta .title {
    font-size: 13px;
  }
  .lyrics_meta .album {
    font-size: 11px;
  }
  .lyrics_line {
    font-size: 15px;
    padding: 7px 8px;
  }
  .lyrics_line.is_active {
    font-size: 19px;
  }
}

.player_extra {
  gap: 14px;
}

/* Settings panel */
.settings_panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.settings_panel[hidden] {
  display: none !important;
}

.settings_backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.settings_card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #12171e;
  border: 1px solid rgba(238, 196, 30, 0.35);
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  padding: 20px 22px 22px;
  isolation: isolate;
}

.settings_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.settings_head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--mq-text);
}

.settings_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings_field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings_label {
  font-size: 13px;
  color: var(--mq-muted);
  letter-spacing: 0.02em;
}

.settings_form select,
.settings_form input[type="range"] {
  width: 100%;
}

.settings_form select {
  appearance: none;
  background: #0c1014;
  color: var(--mq-text);
  border: 1px solid var(--mq-line);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.settings_form select:focus {
  border-color: var(--mq-accent);
}

.settings_form input[type="range"] {
  accent-color: var(--mq-accent);
  height: 28px;
}

.settings_check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mq-text);
  cursor: pointer;
  line-height: 1.4;
}

.settings_check input {
  margin-top: 2px;
  accent-color: var(--mq-accent);
  flex: 0 0 auto;
}

.settings_hint {
  min-height: 1.2em;
  margin: 0;
  font-size: 12px;
  color: var(--mq-muted);
}

.settings_hint.is_ok {
  color: var(--mq-accent);
}

.settings_hint.is_err {
  color: #f07178;
}

.settings_actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.resume_bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: calc(100% + 8px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: #12171e;
  border: 1px solid rgba(238, 196, 30, 0.4);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.resume_bar[hidden] {
  display: none !important;
}

.resume_text {
  flex: 1 1 auto;
  font-size: 13px;
  color: var(--mq-text);
}

.activity_card {
  width: min(520px, 100%);
  max-height: min(80vh, 720px);
  display: flex;
  flex-direction: column;
}

.activity_body {
  overflow: auto;
  padding-right: 4px;
}

.activity_section {
  margin-bottom: 18px;
}

.activity_section h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mq-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.activity_stats {
  font-size: 14px;
  color: var(--mq-text);
  line-height: 1.55;
}

.activity_stats .stat_row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--mq-line);
}

.activity_stats .stat_row span:last-child {
  color: var(--mq-accent);
  font-variant-numeric: tabular-nums;
}

.activity_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.activity_list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mq-line);
  cursor: pointer;
}

.activity_list li:hover .act_title {
  color: var(--mq-accent);
}

.activity_list .act_title {
  font-size: 14px;
  color: var(--mq-text);
}

.activity_list .act_sub {
  font-size: 12px;
  color: var(--mq-muted);
}

.activity_empty {
  font-size: 13px;
  color: var(--mq-muted);
  padding: 8px 0;
}

.lists_card {
  width: min(920px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
}

.lists_body {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 16px;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  padding: 0 4px 4px;
}

.lists_sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 12px;
}

.lists_create {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lists_create input {
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--mq-text);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.lists_nav {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  flex: 1;
}

.lists_nav li {
  padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lists_nav li:hover,
.lists_nav li.is_active {
  background: rgba(255, 255, 255, 0.06);
}

.lists_nav .list_name {
  font-size: 14px;
  color: var(--mq-text);
}

.lists_nav .list_meta {
  font-size: 12px;
  color: var(--mq-muted);
}

.lists_detail {
  min-height: 0;
  overflow: auto;
}

.lists_hint {
  color: var(--mq-muted);
  font-size: 14px;
  margin: 12px 0;
}

.lists_detail_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.lists_detail_head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.lists_detail_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lists_status {
  min-height: 1.2em;
  font-size: 12px;
  color: var(--mq-muted);
  margin: 0 0 8px;
}

.lists_items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lists_items li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.lists_items li:hover .li_title {
  color: var(--mq-accent, #c8e6c9);
}

.lists_items .li_pos {
  color: var(--mq-muted);
  font-size: 12px;
  text-align: right;
}

.lists_items .li_title {
  font-size: 14px;
  color: var(--mq-text);
}

.lists_items .li_sub {
  font-size: 12px;
  color: var(--mq-muted);
}

.lists_items .li_remove {
  font-size: 12px;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .lists_body {
    grid-template-columns: 1fr;
  }
  .lists_sidebar {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    max-height: 220px;
  }
}

.account_card {
  width: min(520px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
}

.account_tabs {
  display: flex;
  gap: 6px;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.account_tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mq-muted);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.account_tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.account_tab.is_active {
  color: #111;
  background: var(--mq-accent);
}

.account_tab_panel {
  min-height: 0;
  overflow: auto;
  flex: 1;
}

.add_list_popover {
  position: fixed;
  z-index: 80;
  width: 220px;
  max-height: 280px;
  overflow: auto;
  background: #1a1c1f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 10px;
}

.add_list_title {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--mq-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.add_list_msg {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--mq-muted);
}

.add_list_choices {
  list-style: none;
  margin: 0;
  padding: 0;
}

.add_list_choices li {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
}

.add_list_choices li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.add_list_login {
  display: block;
  font-size: 13px;
  color: var(--mq-accent);
  padding: 8px 4px;
}

.queue_panel {
  position: fixed;
  right: 16px;
  bottom: calc(var(--mq-player-h, 88px) + 12px);
  z-index: 55;
  width: min(360px, calc(100vw - 32px));
  max-height: min(420px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  background: #17191c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.queue_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.queue_head h3 {
  margin: 0;
  font-size: 15px;
}

.queue_source {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--mq-muted);
}

.queue_list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  overflow: auto;
  flex: 1;
}

.queue_item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  cursor: pointer;
}

.queue_item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.queue_item.is_playing .qn {
  color: var(--mq-accent);
}

.queue_item .qi {
  font-size: 12px;
  color: var(--mq-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.queue_item .qn {
  font-size: 13px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue_empty {
  padding: 16px 14px;
  font-size: 13px;
  color: var(--mq-muted);
}

#btn-play-mode {
  position: relative;
}

#btn-play-mode .mode_icon {
  display: none;
  width: 22px;
  height: 22px;
}

#btn-play-mode[data-mode="order"] .mode_order,
#btn-play-mode[data-mode="loop"] .mode_loop,
#btn-play-mode[data-mode="shuffle"] .mode_shuffle {
  display: block;
}

.player_extra .vol_icon {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

