.music-wall-embed {
  color-scheme: dark;
  --accent: #b8f26b;
  --accent-2: #65d9ff;
  --rose: #ff7aa8;
  --panel: rgba(18, 20, 28, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --soft: rgba(255, 255, 255, 0.68);
  --muted: rgba(255, 255, 255, 0.45);
  --shadow: 0 30px 90px -24px rgba(0, 0, 0, 0.78);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html.music-wall-page,
body.music-wall-page {
  height: 100vh !important;
  height: 100svh !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100svh !important;
  max-height: 100dvh !important;
  overflow-x: clip !important;
  overflow-y: hidden !important;
  /* Match wall canvas so leftover theme chrome never flashes as a light strip. */
  background: #03050a !important;
  /* Mobile browser chrome + notch safe areas */
  --music-wall-viewport-height: 100dvh;
  --music-wall-nav-offset: 64px;
  --music-wall-safe-top: env(safe-area-inset-top, 0px);
  --music-wall-safe-bottom: env(safe-area-inset-bottom, 0px);
  --music-wall-safe-left: env(safe-area-inset-left, 0px);
  --music-wall-safe-right: env(safe-area-inset-right, 0px);
}

body.music-wall-page .music-wall-host {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  min-height: 0 !important;
}

body.music-wall-page .music-wall-host.article,
body.music-wall-page article.music-wall-host {
  padding: 0 !important;
}

body.music-wall-page .music-wall-page-sibling,
body.music-wall-page .music-wall-page-meta {
  display: none !important;
}

/* Site footers live outside the replaced main shell and are skipped by sibling hiding. */

body.music-wall-page footer.footer,
body.music-wall-page footer#footer,
body.music-wall-page #footer,
body.music-wall-page .site-footer,
body.music-wall-page .footer-inner,
body.music-wall-page #s-top {
  display: none !important;
}

/* Volantis: collapse content chrome so the wall sits flush under the nav. */

body.music-wall-page[data-music-wall-theme="volantis"] #safearea,
body.music-wall-page[data-music-wall-theme="volantis"] .body-wrapper,
body.music-wall-page[data-music-wall-theme="volantis"] #l_body,
body.music-wall-page[data-music-wall-theme="volantis"] #l_cover {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
}

body.music-wall-page[data-music-wall-theme="volantis"] #l_cover,
body.music-wall-page[data-music-wall-theme="volantis"] #l_cover .cover-wrapper {
  display: none !important;
}

body.music-wall-page[data-music-wall-theme="volantis"] #l_main.music-wall-host {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Landscape keeps its navigation and collapses only the banner portion. */

body.music-wall-page[data-music-wall-theme="landscape"] #header {
  height: 60px !important;
}

body.music-wall-page[data-music-wall-theme="landscape"] #header::before,
body.music-wall-page[data-music-wall-theme="landscape"] #header::after {
  pointer-events: none;
}

body.music-wall-page[data-music-wall-theme="landscape"] #header-title {
  display: none !important;
}

/* Butterfly also places its navigation inside a page hero. */

body.music-wall-page[data-music-wall-theme="butterfly"] #page-header {
  height: 60px !important;
  min-height: 60px !important;
  background: transparent !important;
}

body.music-wall-page[data-music-wall-theme="butterfly"] #page-header #page-site-info {
  display: none !important;
}

/* Pin the wall to the remaining viewport under the theme nav. */

html.music-wall-page .music-wall-embed,
body.music-wall-page .music-wall-embed {
  position: fixed !important;
  top: var(--music-wall-nav-offset, 64px) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 40;
  width: auto !important;
  max-width: none !important;
  /* Prefer top+bottom pinning; height is a fallback for older engines. */
  height: auto !important;
  height: calc(var(--music-wall-viewport-height, 100dvh) - var(--music-wall-nav-offset, 64px)) !important;
  min-height: 0 !important;
  margin: 0 !important;
  /* Avoid 100vw scrollbar-gutter mismatches on desktop. */
  inset-inline: 0 !important;
}

.music-wall-embed,
.music-wall-embed * {
  box-sizing: border-box;
}

.music-wall-embed button,
.music-wall-embed input,
.music-wall-embed textarea {
  font: inherit;
}

.music-wall-embed button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.music-wall-embed svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.music-wall-embed .hidden {
  display: none !important;
}

.music-wall-embed {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--music-wall-nav-offset, 64px));
  height: calc(100svh - var(--music-wall-nav-offset, 64px));
  height: calc(var(--music-wall-viewport-height, 100dvh) - var(--music-wall-nav-offset, 64px));
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background: #03050a;
  box-shadow: 0 24px 80px -36px rgba(0, 0, 0, 0.78);
}

.music-wall-embed .stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.music-wall-embed .stage {
  z-index: 1;
  background: #000;
  perspective: 1450px;
  perspective-origin: 50% 50%;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.music-wall-embed .music-wall-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.music-wall-embed .stage.dragging {
  cursor: grabbing;
}

.music-wall-embed .audio-visualizer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.68;
  transition: opacity 180ms ease;
}

.music-wall-embed .stage[data-visual="off"] .audio-visualizer {
  opacity: 0;
}

.music-wall-embed .parallax-layer,
.music-wall-embed .ambient-scene,
.music-wall-embed .stage-tint,
.music-wall-embed .grain,
.music-wall-embed .vignette,
.music-wall-embed .world {
  position: absolute;
  inset: 0;
}

.music-wall-embed .parallax-layer {
  inset: -42px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 22, 52, 0.32), rgba(39, 4, 43, 0.1) 50%, rgba(0, 25, 58, 0.3)),
    url("./night-alley.jpg") center / cover no-repeat,
    linear-gradient(120deg, #041323 0%, #07101b 38%, #21091b 72%, #050609 100%);
  transition: opacity 180ms linear;
  will-change: transform;
}

.music-wall-embed .ambient-scene {
  z-index: 1;
  opacity: 0.2;
  filter: saturate(1.05);
}

.music-wall-embed .street {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 16%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  transform-origin: center;
}

.music-wall-embed .street-a {
  left: -10%;
  top: 48%;
  width: 68%;
  height: 18%;
  transform: rotate(-14deg);
  box-shadow: inset 0 24px 40px rgba(0, 0, 0, 0.45);
}

.music-wall-embed .street-b {
  right: -8%;
  top: 18%;
  width: 48%;
  height: 92%;
  transform: rotate(5deg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(45, 28, 61, 0.66), rgba(3, 5, 10, 0.7));
}

.music-wall-embed .sign {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-shadow: 0 0 18px currentColor;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 34px rgba(82, 210, 255, 0.26), inset 0 0 28px rgba(255, 255, 255, 0.08);
}

.music-wall-embed .sign-a {
  left: 14%;
  top: 61%;
  width: 158px;
  height: 72px;
  transform: rotate(-7deg);
  color: rgba(104, 224, 255, 0.78);
}

.music-wall-embed .sign-b {
  right: 8%;
  top: 10%;
  width: 174px;
  height: 86px;
  transform: rotate(4deg);
  color: rgba(255, 122, 168, 0.74);
}

.music-wall-embed .window-grid {
  position: absolute;
  right: 13%;
  bottom: 10%;
  width: 260px;
  height: 190px;
  transform: rotate(-3deg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 38px;
  opacity: 0.42;
}

.music-wall-embed .stage-tint {
  z-index: 2;
  background:
    radial-gradient(74% 70% at 50% 42%, rgba(56, 99, 190, 0.08), rgba(0, 8, 23, 0.68) 86%),
    linear-gradient(180deg, rgba(0, 7, 18, 0.08), rgba(0, 13, 35, 0.36));
  pointer-events: none;
}

.music-wall-embed .grain {
  z-index: 3;
  inset: -25%;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: none;
}

.music-wall-embed .vignette {
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(72% 64% at 50% 50%, transparent 36%, rgba(0, 8, 25, 0.62) 100%);
}

.music-wall-embed .world {
  z-index: 5;
  pointer-events: none;
  transform: translateZ(0);
  transform-style: preserve-3d;
}

.music-wall-embed .focus-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.music-wall-embed .focus-layer .music-card {
  pointer-events: auto;
}

.music-wall-embed .focus-layer .music-card.is-focused {
  border: 1px solid rgba(210, 231, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(181, 211, 255, 0.2), rgba(48, 75, 118, 0.16) 46%, rgba(12, 30, 57, 0.34)),
    rgba(9, 21, 42, 0.2);
  box-shadow:
    0 28px 70px -24px rgba(0, 0, 0, 0.82),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 34px -10px hsla(var(--hue), 88%, 68%, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -18px 32px rgba(3, 10, 25, 0.16);
  backdrop-filter: blur(22px) saturate(148%);
  -webkit-backdrop-filter: blur(22px) saturate(148%);
  contain: layout style;
}

.music-wall-embed .focus-layer .music-card.is-focused .card-inner {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 44%, rgba(85, 157, 255, 0.08));
}

.music-wall-embed .focus-layer .music-card.is-focused .cover-art {
  box-shadow:
    0 12px 30px -12px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.music-wall-embed .music-card {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  pointer-events: auto;
  cursor: pointer;
  color: #fff;
  background: rgba(18, 20, 26, 0.22);
  box-shadow:
    0 18px 44px -16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  contain: layout paint style;
  backface-visibility: hidden;
  will-change: auto;
}

.music-wall-embed .music-card.is-current {
  box-shadow:
    0 18px 48px -16px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.64),
    0 0 28px -8px hsla(var(--hue), 94%, 66%, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.music-wall-embed .stage.performance-lite .grain {
  animation: none;
  mix-blend-mode: normal;
  opacity: 0.055;
}

.music-wall-embed .stage.performance-lite .parallax-layer {
  display: none;
}

.music-wall-embed .stage.performance-lite .music-card {
  background: rgba(20, 23, 32, 0.82);
  box-shadow:
    0 12px 26px -18px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.32);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  will-change: transform;
}

.music-wall-embed .stage.performance-lite .music-card.is-current {
  box-shadow:
    0 14px 30px -18px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.52),
    0 0 22px -10px hsla(var(--hue), 94%, 66%, 0.78);
}

.music-wall-embed .stage.performance-lite .cover-art::before {
  opacity: 0.28;
}

.music-wall-embed .card-inner {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: var(--pad);
  padding: var(--pad);
}

.music-wall-embed .cover-art {
  position: relative;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  border-radius: var(--cover-radius);
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.55);
  background:
    radial-gradient(circle at 26% 22%, hsla(var(--hue), 92%, 70%, 0.95), transparent 31%),
    radial-gradient(circle at 76% 72%, hsla(calc(var(--hue) + 72), 88%, 58%, 0.9), transparent 34%),
    conic-gradient(from var(--turn), hsl(var(--hue), 80%, 38%), hsl(calc(var(--hue) + 75), 86%, 52%), hsl(calc(var(--hue) + 180), 70%, 31%), hsl(var(--hue), 80%, 38%));
}

.music-wall-embed .cover-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(255, 255, 255, 0.26) 33%, transparent 48%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 12px);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.music-wall-embed .cover-art.has-image {
  background: #11151f;
}

.music-wall-embed .cover-art.has-image::before {
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 35%, transparent 50%),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.2));
}

.music-wall-embed .cover-art.has-image::after {
  opacity: 0;
}

.music-wall-embed .cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.music-wall-embed .cover-image.is-loaded {
  opacity: 1;
}

.music-wall-embed .cover-art::after {
  content: attr(data-glyph);
  position: absolute;
  right: 8%;
  bottom: 3%;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 26%, 96px);
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.music-wall-embed .card-meta {
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.music-wall-embed .card-title,
.music-wall-embed .card-artist,
.music-wall-embed .mini-title,
.music-wall-embed .mini-artist {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-wall-embed .card-title {
  font-weight: 700;
  line-height: 1.12;
  font-size: var(--title-size);
}

.music-wall-embed .card-artist {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.18;
  font-size: var(--artist-size);
}

.music-wall-embed .card-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
}

.music-wall-embed .card-controls button,
.music-wall-embed .icon-button,
.music-wall-embed .play-button {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.music-wall-embed .card-controls button {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.62));
}

.music-wall-embed .card-controls button:hover,
.music-wall-embed .icon-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.music-wall-embed .card-play {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.music-wall-embed .card-play:hover {
  background: rgba(255, 255, 255, 0.32);
}

.music-wall-embed .liked {
  color: #ff7aa8 !important;
}

.music-wall-embed .topbar {
  position: absolute;
  z-index: 20;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.music-wall-embed .brand,
.music-wall-embed .source-tabs,
.music-wall-embed .top-actions,
.music-wall-embed .mini-player,
.music-wall-embed .empty-state,
.music-wall-embed .panel,
.music-wall-embed .expanded-card,
.music-wall-embed .share-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(10, 12, 18, 0.42);
  box-shadow: 0 18px 50px -28px rgba(0, 0, 0, 0.84), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.music-wall-embed .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 340px;
  border-radius: 999px;
  padding: 8px 12px 8px 9px;
  pointer-events: auto;
}

.music-wall-embed .brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #0a0e10;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.music-wall-embed .brand-title {
  font-size: 13px;
  font-weight: 800;
}

.music-wall-embed .brand-subtitle {
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
}

.music-wall-embed .source-tabs {
  display: flex;
  align-items: center;
  gap: 3px;
  width: min(316px, 34vw);
  min-width: 230px;
  border-radius: 999px;
  padding: 4px;
  pointer-events: auto;
}

.music-wall-embed .source-tab {
  flex: 1;
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.music-wall-embed .source-tab.active {
  color: #0a0e10;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.music-wall-embed .top-actions {
  display: flex;
  gap: 8px;
  border-radius: 999px;
  padding: 5px;
  pointer-events: auto;
}

.music-wall-embed .icon-button,
.music-wall-embed .play-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
}

.music-wall-embed .icon-button svg,
.music-wall-embed .play-button svg {
  width: 18px;
  height: 18px;
}

.music-wall-embed .play-button {
  color: #0a0e10;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.music-wall-embed .play-button:hover {
  transform: scale(1.06);
}

.music-wall-embed .edge-button {
  position: absolute;
  z-index: 18;
  top: 50%;
  right: 0;
  display: grid;
  width: 28px;
  height: 80px;
  place-items: center;
  border-radius: 14px 0 0 14px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.music-wall-embed .desktop-lyrics {
  position: absolute;
  z-index: 21;
  left: 50%;
  bottom: 124px;
  display: flex;
  width: min(680px, calc(100% - 32px));
  min-height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 42px;
  color: #fff;
  text-align: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transform: translateX(-50%);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.music-wall-embed .desktop-lyrics:hover,
.music-wall-embed .desktop-lyrics.is-dragging {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(3, 9, 22, 0.3);
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.music-wall-embed .desktop-lyrics.is-dragging {
  cursor: grabbing;
}

.music-wall-embed .desktop-lyrics-copy {
  min-width: 0;
  max-width: 100%;
}

.music-wall-embed .desktop-lyric-current {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.95);
  white-space: nowrap;
}

.music-wall-embed .desktop-lyric-base {
  color: rgba(255, 255, 255, 0.86);
}

.music-wall-embed .desktop-lyric-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--lyric-progress, 0%);
  overflow: hidden;
  color: #7bdcff;
  text-align: left;
  text-shadow: 0 0 12px rgba(74, 180, 255, 0.58), 0 3px 18px rgba(0, 0, 0, 0.86);
  white-space: nowrap;
}

.music-wall-embed .desktop-lyric-next {
  min-height: 20px;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.84);
  white-space: nowrap;
}

.music-wall-embed .desktop-lyrics-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  cursor: pointer;
  transition: opacity 140ms ease, color 140ms ease, background 140ms ease;
}

.music-wall-embed .desktop-lyrics:hover .desktop-lyrics-close,
.music-wall-embed .desktop-lyrics-close:focus-visible {
  opacity: 1;
}

.music-wall-embed .desktop-lyrics-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.music-wall-embed .desktop-lyrics-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.music-wall-embed .mini-player {
  position: absolute;
  z-index: 22;
  left: 50%;
  bottom: 14px;
  display: grid;
  grid-template-columns: 54px minmax(120px, 1fr) 154px minmax(204px, auto);
  grid-template-rows: 54px 18px;
  align-items: center;
  column-gap: 12px;
  row-gap: 8px;
  width: min(680px, calc(100% - 32px));
  min-height: 102px;
  border: 1px solid rgba(130, 151, 205, 0.26);
  border-radius: 18px;
  padding: 11px 14px 10px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(102deg, rgba(70, 60, 104, 0.82) 0%, rgba(34, 48, 86, 0.9) 52%, rgba(19, 49, 87, 0.92) 100%);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.86), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  transform: translateX(-50%);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.music-wall-embed .mini-player.is-empty {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
}

.music-wall-embed .mini-player.is-modal-layer {
  z-index: 70;
}

.music-wall-embed .mini-player.is-buffering::before {
  content: "正在缓存音频…";
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  background: rgba(9, 19, 37, 0.58);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(-50%);
  animation: buffering-pulse 1.4s ease-in-out infinite;
}

.music-wall-embed .mini-player .icon-button,
.music-wall-embed .mini-player .play-button {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.music-wall-embed .mini-player [data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 90;
  bottom: calc(100% + 9px);
  left: 50%;
  max-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  background: rgba(5, 10, 22, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.music-wall-embed .mini-player [data-tooltip]:hover::after,
.music-wall-embed .mini-player [data-tooltip]:focus-visible::after,
.music-wall-embed .mini-player [data-tooltip]:focus-within::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.music-wall-embed .mini-player .icon-button:hover,
.music-wall-embed .mini-player .play-button:hover,
.music-wall-embed .mini-tool-button.active {
  color: #70a0ff;
}

.music-wall-embed .mini-tool-button.active {
  background: rgba(83, 130, 245, 0.14);
  box-shadow: inset 0 0 0 1px rgba(111, 160, 255, 0.22);
}

.music-wall-embed .mini-player .icon-button svg,
.music-wall-embed .mini-player .play-button svg {
  width: 19px;
  height: 19px;
}

.music-wall-embed .mini-transport {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.music-wall-embed .mini-transport-button {
  width: 34px;
  height: 34px;
}

.music-wall-embed .mini-play-main {
  width: 42px;
  height: 42px;
  color: #fff;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.music-wall-embed .mini-play-main svg {
  width: 29px !important;
  height: 29px !important;
  fill: currentColor;
  stroke-width: 1.5;
}

.music-wall-embed .mini-tools {
  grid-column: 4;
  grid-row: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.music-wall-embed .mini-tool-button {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
}

.music-wall-embed .mini-tool-button.liked {
  color: #ffffff;
}

.music-wall-embed .mini-tool-button.liked svg {
  fill: currentColor;
}

.music-wall-embed .mini-volume-control {
  position: relative;
  display: flex;
  height: 29px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.music-wall-embed .mini-volume-control svg {
  width: 19px;
  height: 19px;
}

.music-wall-embed .mini-progress {
  position: relative;
  width: 100%;
  height: 12px;
  overflow: visible;
  border-radius: 999px;
  border: 4px solid transparent;
  background: rgba(255, 255, 255, 0.17);
  background-clip: padding-box;
  cursor: grab;
  touch-action: none;
}

.music-wall-embed .mini-progress:active {
  cursor: grabbing;
}

.music-wall-embed .mini-progress:focus-visible {
  outline: 2px solid rgba(101, 217, 255, 0.68);
  outline-offset: 4px;
}

.music-wall-embed .mini-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  top: 4px;
  bottom: 4px;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(90deg, #748dff, #8ba7ff);
  box-shadow: none;
}

.music-wall-embed .mini-progress-fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #f2f0f7;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}

.music-wall-embed .mini-progress.is-dragging .mini-progress-fill::after,
.music-wall-embed .mini-progress:hover .mini-progress-fill::after {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(124, 157, 255, 0.18), 0 4px 12px rgba(0, 0, 0, 0.34);
}

.music-wall-embed .mini-cover {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 25%, hsla(var(--mini-hue, 120), 90%, 70%, 0.95), transparent 34%),
    conic-gradient(from 0.12turn, hsl(var(--mini-hue, 120), 72%, 40%), hsl(calc(var(--mini-hue, 120) + 70), 78%, 55%), hsl(calc(var(--mini-hue, 120) + 170), 62%, 30%));
  box-shadow: 0 15px 28px -16px rgba(0, 0, 0, 0.76);
  overflow: hidden;
}

.music-wall-embed .mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-wall-embed .mini-meta {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: center;
}

.music-wall-embed .mini-title {
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-wall-embed .mini-artist {
  overflow: hidden;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-wall-embed .mini-progress-row {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.music-wall-embed .mini-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.music-wall-embed .volume {
  width: 0;
  opacity: 0;
  accent-color: #9fc0ff;
  transition: width 180ms ease, opacity 180ms ease;
}

.music-wall-embed .mini-volume-control:hover .volume,
.music-wall-embed .mini-volume-control:focus-within .volume {
  width: 46px;
  opacity: 1;
}

.music-wall-embed .empty-state {
  position: absolute;
  z-index: 16;
  top: 50%;
  left: 50%;
  width: min(360px, calc(100% - 32px));
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.music-wall-embed .empty-title {
  font-size: 18px;
  font-weight: 800;
}

.music-wall-embed .empty-copy {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.music-wall-embed .primary-button,
.music-wall-embed .ghost-button,
.music-wall-embed .danger-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 800;
}

.music-wall-embed .primary-button {
  color: #07100b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.music-wall-embed .ghost-button {
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.music-wall-embed .danger-button {
  color: #ffd7e3;
  border: 1px solid rgba(255, 122, 168, 0.32);
  background: rgba(255, 122, 168, 0.1);
}

.music-wall-embed .modal-root {
  position: absolute;
  inset: 0;
  z-index: 60;
}

.music-wall-embed .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 6, 18, 0.16);
}

.music-wall-embed .expanded-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 18px 132px;
}

.music-wall-embed .expanded-card {
  position: relative;
  display: flex;
  width: min(clamp(340px, 22.5vw, 460px), calc(100% - 28px), calc(100vh - 400px));
  min-width: 300px;
  min-height: 0;
  align-items: center;
  flex-direction: column;
  gap: 0;
  border-radius: 28px;
  padding: 18px 18px 22px;
  background: linear-gradient(165deg, rgba(42, 62, 112, 0.88), rgba(55, 40, 92, 0.88));
  box-shadow: 0 28px 80px -22px rgba(0, 0, 0, 0.88), 0 0 0 1px rgba(210, 224, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.music-wall-embed .expanded-visual {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.music-wall-embed .progress-ring {
  display: none;
}

.music-wall-embed .progress-ring circle {
  fill: none;
  stroke-width: 3;
}

.music-wall-embed .progress-bg {
  stroke: rgba(255, 255, 255, 0.12);
}

.music-wall-embed .progress-fg {
  stroke: hsl(var(--active-hue, 120), 84%, 66%);
  filter: drop-shadow(0 0 8px hsla(var(--active-hue, 120), 84%, 66%, 0.6));
  transition: stroke-dashoffset 160ms linear;
}

.music-wall-embed .expanded-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.88), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.music-wall-embed .expanded-cover.playing {
  animation: none;
}

.music-wall-embed .expanded-cover .cover-art {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.music-wall-embed .expanded-info {
  display: flex;
  width: 100%;
  min-width: 0;
  flex: 1;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
}

.music-wall-embed .expanded-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  text-align: center;
}

.music-wall-embed .expanded-copy {
  min-width: 0;
  width: 100%;
}

.music-wall-embed .expanded-close {
  position: absolute;
  z-index: 80;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 10, 20, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.music-wall-embed .expanded-close:hover {
  color: #fff;
  background: rgba(15, 24, 42, 0.86);
}

.music-wall-embed .expanded-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 850;
}

.music-wall-embed .expanded-artist {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-wall-embed .expanded-lyrics {
  display: grid;
  width: 100%;
  min-height: 70px;
  align-content: center;
  gap: 3px;
  margin-top: 11px;
  overflow: hidden;
  text-align: center;
}

.music-wall-embed .expanded-lyric-current,
.music-wall-embed .expanded-lyric-context,
.music-wall-embed .expanded-lyric-status {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-wall-embed .expanded-lyric-current {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  animation: lyric-current-in 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.music-wall-embed .expanded-lyric-context,
.music-wall-embed .expanded-lyric-status {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.music-wall-embed .expanded-lyric-previous {
  animation: lyric-previous-in 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.music-wall-embed .expanded-lyric-next {
  animation: lyric-next-in 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.music-wall-embed .time-row {
  display: none;
  gap: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.music-wall-embed .expanded-controls {
  display: grid;
  width: 100%;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.music-wall-embed .transport {
  display: flex;
  width: min(190px, 100%);
  align-items: center;
  justify-content: space-between;
  justify-self: center;
  gap: 12px;
}

.music-wall-embed .expanded-control-side {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.music-wall-embed .expanded-card .expanded-control-side .active {
  color: #78a2ff;
}

.music-wall-embed .lyrics {
  display: none;
  position: absolute;
  left: 50%;
  z-index: -1;
  width: min(680px, calc(100% - 40px));
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.76);
  transform: translateX(-50%);
  pointer-events: none;
}

.music-wall-embed .lyrics.top {
  bottom: calc(100% + 22px);
}

.music-wall-embed .lyrics.bottom {
  top: calc(100% + 22px);
}

.music-wall-embed .lyric-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 850;
}

.music-wall-embed .lyric-line.dim {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.music-wall-embed .panel-wrap {
  position: absolute;
  inset: 58px 0 0;
  display: flex;
  justify-content: flex-end;
}

.music-wall-embed .panel {
  position: relative;
  display: flex;
  width: min(420px, calc(100% - 24px));
  height: calc(100% - 24px);
  margin: 12px;
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
}

.music-wall-embed .panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 20, 39, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.music-wall-embed .panel-close {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.music-wall-embed .panel-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12) !important;
}

.music-wall-embed .panel-title {
  font-size: 18px;
  font-weight: 850;
}

.music-wall-embed .panel-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.music-wall-embed .panel-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px 18px;
}

.music-wall-embed .upload-zone {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.music-wall-embed .upload-zone input {
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.music-wall-embed .list {
  display: grid;
  gap: 10px;
}

.music-wall-embed .list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.music-wall-embed .list-cover {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.music-wall-embed .list-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.music-wall-embed .list-cover-image.is-loaded {
  opacity: 1;
}

.music-wall-embed .list-meta {
  min-width: 0;
  flex: 1;
}

.music-wall-embed .list-title,
.music-wall-embed .list-subtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-wall-embed .list-title {
  font-size: 13px;
  font-weight: 800;
}

.music-wall-embed .list-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.music-wall-embed .panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.music-wall-embed .share-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: min(520px, calc(100% - 24px));
  max-height: calc(100% - 28px);
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.music-wall-embed .share-tabs {
  display: flex;
  gap: 6px;
  padding: 16px 16px 0;
}

.music-wall-embed .share-tab {
  flex: 1;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.07);
}

.music-wall-embed .share-tab.active {
  color: #07100b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.music-wall-embed .share-body {
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
}

.music-wall-embed .poster-preview {
  display: grid;
  min-height: 280px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.music-wall-embed .poster-preview img {
  max-width: 100%;
  max-height: 52vh;
  border-radius: 16px;
  box-shadow: 0 18px 48px -18px rgba(0, 0, 0, 0.8);
}

.music-wall-embed .share-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.music-wall-embed .share-actions > * {
  flex: 1;
}

.music-wall-embed .draft-box {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.music-wall-embed .category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.music-wall-embed .category {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.music-wall-embed .category.active {
  color: #07100b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.music-wall-embed .toast-region {
  position: absolute;
  z-index: 150;
  right: 16px;
  bottom: 100px;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.music-wall-embed .toast {
  max-width: min(340px, calc(100vw - 32px));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 10, 16, 0.82);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  font-size: 13px;
}

@media (max-width: 760px) {
  .music-wall-embed .desktop-lyrics {
    bottom: 132px;
    width: calc(100% - 22px);
    min-height: 66px;
    padding: 8px 34px;
  }

  .music-wall-embed .desktop-lyric-current {
    font-size: 21px;
  }

  .music-wall-embed .desktop-lyric-next {
    font-size: 13px;
  }

  .music-wall-embed .topbar {
    top: 12px;
    left: 12px;
    right: 12px;
    align-items: flex-start;
  }

  .music-wall-embed .brand {
    max-width: 176px;
    padding-right: 10px;
  }

  .music-wall-embed .brand-subtitle {
    display: none;
  }

  .music-wall-embed .source-tabs {
    position: absolute;
    left: 50%;
    bottom: 92px;
    width: min(292px, calc(100% - 96px));
    min-width: 0;
    transform: translateX(-50%);
  }

  .music-wall-embed .top-actions {
    padding: 3px;
  }

  .music-wall-embed .mini-player {
    bottom: 12px;
    grid-template-columns: 64px minmax(0, 1fr) 54px;
    grid-template-rows: 64px 22px;
    width: calc(100% - 22px);
    min-height: 112px;
    border-radius: 24px;
    column-gap: 12px;
    row-gap: 10px;
    padding: 14px;
  }

  .music-wall-embed .mini-cover {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .music-wall-embed .mini-meta {
    grid-column: 2;
    grid-row: 1;
  }

  .music-wall-embed .mini-title {
    font-size: 16px;
  }

  .music-wall-embed .mini-artist {
    margin-top: 4px;
    font-size: 12px;
  }

  .music-wall-embed .mini-transport {
    grid-column: 3;
    grid-row: 1;
    justify-content: center;
  }

  .music-wall-embed .mini-play-main {
    width: 54px;
    height: 54px;
  }

  .music-wall-embed .mini-play-main svg {
    width: 36px !important;
    height: 36px !important;
  }

  .music-wall-embed .mini-transport-button,
  .music-wall-embed .mini-tools {
    display: none;
  }

  .music-wall-embed .mini-progress-row {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .music-wall-embed .mini-time {
    font-size: 12px;
  }

  .music-wall-embed .mini-progress {
    height: 7px;
  }

  .music-wall-embed .mini-progress-fill::after {
    width: 16px;
    height: 16px;
    right: -8px;
  }

  .music-wall-embed .expanded-card {
    width: min(370px, calc(100% - 20px), calc(100vh - 340px));
    min-width: 260px;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    padding: 18px;
  }

  .music-wall-embed .expanded-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .music-wall-embed .expanded-info {
    width: 100%;
    min-height: 0;
    gap: 0;
  }

  .music-wall-embed .expanded-lyrics {
    min-height: 54px;
    margin-top: 6px;
  }

  .music-wall-embed .expanded-controls {
    margin-top: 9px;
  }

  .music-wall-embed .expanded-close {
    top: 12px;
    right: 12px;
  }

  .music-wall-embed .expanded-title {
    font-size: 20px;
    text-align: center;
  }

  .music-wall-embed .expanded-artist,
  .music-wall-embed .time-row {
    justify-content: center;
    text-align: center;
  }

  .music-wall-embed .expanded-head {
    align-items: center;
  }

  .music-wall-embed .lyric-line {
    font-size: 17px;
  }

  .music-wall-embed .panel {
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    margin: 9px;
  }

  .music-wall-embed .share-actions {
    flex-direction: column;
  }

  .music-wall-embed .toast-region {
    right: 10px;
    bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-wall-embed .grain,
  .music-wall-embed .expanded-cover.playing,
  .music-wall-embed .expanded-lyric-current,
  .music-wall-embed .expanded-lyric-previous,
  .music-wall-embed .expanded-lyric-next {
    animation: none;
  }

  .music-wall-embed .music-card,
  .music-wall-embed .parallax-layer,
  .music-wall-embed .progress-fg {
    transition: none;
  }
}

@keyframes buffering-pulse {
  0%, 100% { opacity: 0.62; }
  50% { opacity: 1; }
}

@keyframes lyric-current-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lyric-previous-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lyric-next-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
