@font-face {
  font-family: "OMG Round";
  src: local("OMG Round"), url("../fonts/OMG-Round.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #101014;
  --bg-card: rgba(18, 18, 22, 0.72);
  --bg-card-strong: rgba(24, 24, 30, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.68);
  --muted-2: rgba(245, 245, 247, 0.48);
  --accent: #ff4fd8;
  --accent-2: #35f2ff;
  --accent-3: #ffb545;
  --danger: #ff5d5d;
  --ok: #75ff9e;
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --max-width: 1180px;
  --header-height: 76px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --font: "OMG Round", "Pretendard", "SUIT", "NanumSquareRound", "Cafe24SsurroundAir", "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 79, 216, .18), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(53, 242, 255, .16), transparent 28rem),
    linear-gradient(145deg, #030303 0%, #0b0b0e 45%, #15151a 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

code {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .12rem .45rem;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

::selection {
  color: #050505;
  background: var(--accent-2);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: .7rem 1rem;
  color: #050505;
  background: var(--accent-2);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

#visualizer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.ambient {
  position: fixed;
  width: min(48vw, 600px);
  height: min(48vw, 600px);
  border-radius: 999px;
  filter: blur(90px);
  opacity: .22;
  z-index: 0;
  pointer-events: none;
  animation: floatBlob  10s var(--ease-out) infinite alternate;
}

.ambient-one {
  left: -18vw;
  top: 18vh;
  background: var(--accent);
}

.ambient-two {
  right: -20vw;
  bottom: 8vh;
  background: var(--accent-2);
  animation-delay: -4s;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.section-wrap {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  width: min(calc(100% - 28px), var(--max-width));
  margin: 14px auto 0;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .65rem .7rem .65rem .9rem;
  background: rgba(8, 8, 10, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 10, 0.78);
  box-shadow: 0 16px 45px rgba(0,0,0,.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: -.08em;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.02)),
    radial-gradient(circle at 30% 20%, rgba(255,79,216,.9), transparent 48%),
    #101014;
  box-shadow: inset 0 0 18px rgba(255,255,255,.08), 0 0 28px rgba(255,79,216,.18);
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-size: .98rem;
  letter-spacing: -.02em;
}

.brand-text small {
  color: var(--muted-2);
  font-size: .72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .72rem .9rem;
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.07);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3.25rem);
  min-height: calc(100vh - var(--header-height) - 24px);
  min-height: calc(100svh - var(--header-height) - 24px);
  padding: clamp(3rem, 8vw, 6.6rem) 0 clamp(3rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--accent-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(3.8rem, 8.8vw, 8.8rem);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.72);
  text-shadow: 0 0 40px rgba(255,79,216,.24);
}

.hero-subtitle {
  max-width: 630px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.28rem);
  line-height: 1.78;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .75rem 1.1rem;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #080808;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 0 34px rgba(255, 79, 216, .26);
}

.button-ghost {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 2.2rem 0 0;
  padding: 0;
  max-width: 640px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255,255,255,.045);
}

.hero-stats dt {
  color: var(--muted-2);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.hero-stats dd {
  margin: .4rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 950;
  letter-spacing: -.04em;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.artist-orbit {
  position: absolute;
  width: min(78vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.artist-orbit::before,
.artist-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 30px currentColor;
}

.artist-orbit::before {
  width: 14px;
  height: 14px;
  left: 12%;
  top: 14%;
}

.artist-orbit::after {
  width: 10px;
  height: 10px;
  right: 6%;
  bottom: 22%;
  background: var(--accent);
}

.artist-card {
  position: relative;
  width: min(74vw, 360px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background: #101014;
  box-shadow: var(--shadow), 0 0 80px rgba(53,242,255,.14);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .2s ease;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.7));
}

.artist-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.artist-card figcaption span {
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.artist-card figcaption strong {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: -.04em;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  color: rgba(255,255,255,.56);
  font-size: clamp(.9rem, 1.7vw, 1.1rem);
  font-weight: 950;
  letter-spacing: .14em;
  white-space: nowrap;
}

.albums-section,
.about-section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.about-card h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.section-heading p:last-child,
.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  word-break: keep-all;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0 0 1.4rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .72rem 1rem;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  font-weight: 900;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  border-color: var(--accent-2);
  color: var(--text);
  background: rgba(53,242,255,.13);
  outline: none;
  transform: translateY(-1px);
}

.album-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.album-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(.9rem, 2vw, 1.3rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    var(--bg-card);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 28px 90px rgba(0,0,0,.28);
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .22s ease, border-color .22s ease, background .22s ease, opacity .22s ease;
}

.album-card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: .17;
  background: var(--accent);
  filter: blur(65px);
}

.album-card:hover {
  border-color: rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    var(--bg-card-strong);
}

.album-card.is-hidden {
  display: none;
}

.cover-zone {
  position: relative;
  min-height: 100%;
}

.cover-button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  padding: 0;
  background: #111;
  cursor: zoom-in;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}

.cover-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .35s var(--ease-out), filter .35s ease;
}

.cover-button:hover img,
.cover-button:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.08);
}

.cover-button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

.album-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .45rem .7rem;
  color: #050505;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .03em;
}

.album-badge.upcoming {
  color: #fff;
  background: linear-gradient(135deg, #3a3a45, #17171d);
}

.album-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: clamp(.2rem, 1.1vw, .5rem);
}

.album-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .36rem .62rem;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pill.released::before,
.pill.upcoming::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
}

.pill.released::before {
  background: var(--ok);
  box-shadow: 0 0 14px var(--ok);
}

.pill.upcoming::before {
  background: var(--accent-3);
  box-shadow: 0 0 14px var(--accent-3);
}

.album-title {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 4.4rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.album-title small {
  display: block;
  margin-top: .45rem;
  color: var(--muted-2);
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.album-description {
  margin: 1rem 0 0;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}

.tag {
  border-radius: 999px;
  padding: .36rem .62rem;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.07);
  font-size: .72rem;
  font-weight: 800;
}

.album-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .68rem .9rem;
  color: var(--text);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.1);
  outline: none;
}

.action-button.primary {
  color: #050505;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}


.button-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: .38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  font-size: .86rem;
  line-height: 1;
}

.track-preview {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: .9rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,79,216,.1), transparent 16rem),
    rgba(255,255,255,.04);
}

.track-preview.is-empty {
  color: var(--muted);
}

.track-preview.is-empty p {
  margin: .7rem 0 0;
  line-height: 1.65;
}

.track-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .72rem;
}

.track-preview-heading span {
  color: var(--accent-2);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.track-preview-heading small {
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 800;
}

.track-preview-list {
  display: grid;
  gap: .48rem;
}

.track-preview-row {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .6rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: .58rem .62rem;
  background: rgba(0,0,0,.18);
}

.track-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--accent-2);
  background: rgba(53,242,255,.1);
  font-size: .72rem;
  font-weight: 950;
}

.track-preview-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  font-size: .93rem;
  letter-spacing: -.02em;
}

.lyrics-button,
.lyrics-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem .68rem;
  color: var(--text);
  background: rgba(255,255,255,.07);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.lyrics-button:hover,
.lyrics-button:focus-visible,
.lyrics-link:hover,
.lyrics-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-2);
  background: rgba(53,242,255,.12);
  outline: none;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  margin-top: 1rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .36rem .72rem .36rem .38rem;
  color: var(--text);
  background: rgba(255,255,255,.055);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
}

.service-pill:hover,
.service-pill:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.1);
  outline: none;
}

.service-pill.is-muted {
  color: rgba(255,255,255,.45);
  opacity: .68;
}

.service-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 10px 24px rgba(0,0,0,.22);
}

.service-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.service-icon-text[hidden] {
  display: none;
}

.service-icon-text {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #050505;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: -.03em;
}

.service-icon-fallback {
  color: #050505;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-size: .72rem;
  font-weight: 950;
}

.service-pill.is-muted .service-icon {
  filter: grayscale(1);
  opacity: .55;
}

.service-label {
  line-height: 1;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(220px, .58fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 6vw, 5rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 3rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,79,216,.18), transparent 30rem),
    rgba(255,255,255,.045);
}

.site-footer {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 5vw, 2.6rem);
  background: rgba(255,255,255,.05);
}

.mail-link {
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 999px;
  padding: .9rem 1.1rem;
  color: #050505;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  font-weight: 950;
  word-break: break-all;
  transition: transform .2s ease;
}

.mail-link:hover,
.mail-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.footer-note {
  margin: 1.6rem 0 0;
  color: var(--muted-2);
  font-size: .86rem;
}

.panel-backdrop,
.lightbox,
.lyrics-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.link-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  width: min(calc(100vw - 28px), 920px);
  max-height: min(84vh, 760px);
  overflow: auto;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(53,242,255,.16), transparent 24rem),
    #0f0f14;
  box-shadow: var(--shadow);
}

.panel-close,
.lightbox-close,
.lyrics-close {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.panel-close:hover,
.panel-close:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible,
.lyrics-close:hover,
.lyrics-close:focus-visible {
  border-color: var(--accent-2);
  outline: none;
}

.panel-header {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  padding-right: 3rem;
}

.panel-cover {
  width: 68px;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,.34);
}

.panel-title-block {
  min-width: 0;
}

.panel-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.panel-header p {
  margin: .35rem 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.service-tabs {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  padding: 1.1rem 0 .7rem;
  scrollbar-width: thin;
}

.service-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .44rem .72rem .44rem .44rem;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.service-tab .service-icon {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
}

.service-tab.is-active {
  border-color: var(--accent-2);
  color: var(--text);
  background: rgba(53,242,255,.12);
}

.service-tab.is-empty {
  opacity: .55;
}

.link-stack {
  display: grid;
  gap: .72rem;
  margin-top: .7rem;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .9rem;
  background: rgba(255,255,255,.045);
}

.link-row strong {
  letter-spacing: -.02em;
}

.link-row span {
  color: var(--muted-2);
  font-size: .84rem;
}

.open-link {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: .65rem .82rem;
  color: #050505;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 950;
}


.link-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .45rem;
}

.track-link-info {
  min-width: 0;
}

.disabled-link {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .82rem;
  color: var(--muted-2);
  background: rgba(255,255,255,.04);
  font-size: .86rem;
  font-weight: 950;
}

.lyrics-card {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 70;
  width: min(calc(100vw - 28px), 720px);
  max-height: min(82vh, 720px);
  overflow: auto;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,79,216,.18), transparent 22rem),
    radial-gradient(circle at 92% 10%, rgba(53,242,255,.14), transparent 20rem),
    #101014;
  box-shadow: var(--shadow);
}

.lyrics-close {
  right: 16px;
  top: 14px;
}

.lyrics-header {
  padding-right: 3rem;
}

.lyrics-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.lyrics-header p:not(.eyebrow) {
  margin: .45rem 0 0;
  color: var(--muted);
}

.lyrics-body {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.88);
  line-height: 1.92;
  white-space: normal;
  word-break: keep-all;
}

.lyrics-body p {
  margin: 0;
}

.lyrics-body p + p {
  margin-top: 1.1rem;
}

.panel-section-title {
  margin: 1.35rem 0 .2rem;
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  line-height: 1.65;
}

.lightbox {
  display: grid;
  place-items: center;
  padding: 72px 18px 24px;
}

.lightbox[hidden],
.lyrics-modal[hidden],
.link-panel[hidden],
.panel-backdrop[hidden] {
  display: none;
}

.lightbox figure {
  width: min(96vw, 980px);
  max-height: 86vh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  margin-top: .9rem;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript-message {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 1rem;
  color: var(--text);
  background: #16161d;
}

@keyframes floatBlob {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(8vw,-5vh,0) scale(1.14); }
}

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .brand-text strong {
    font-size: .86rem;
  }

  .brand-text small {
    display: none;
  }

  .site-nav a {
    padding: .62rem .62rem;
    font-size: .8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3.6rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 360px;
  }

  .section-heading,
  .album-card,
  .about-card {
    grid-template-columns: 1fr;
  }

  .cover-zone {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }
}


@media (max-width: 760px) {
  .track-preview-row {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .track-preview-row .lyrics-button {
    grid-column: 2;
    justify-self: start;
  }

  .track-preview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .track-link-row {
    align-items: stretch;
    flex-direction: column;
  }

  .link-actions {
    justify-content: stretch;
  }

  .link-actions .lyrics-link,
  .link-actions .open-link,
  .link-actions .disabled-link {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .section-wrap {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .site-header {
    padding: .5rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: .88rem;
  }

  .site-nav {
    gap: .05rem;
  }

  .site-nav a {
    padding: .58rem .48rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.8vw, 5.8rem);
    letter-spacing: -.07em;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .artist-card {
    border-radius: 28px;
  }

  .album-card {
    border-radius: 28px;
  }

  .service-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .3rem;
  }

  .service-pill {
    flex: 0 0 auto;
  }

  .link-panel {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: 88vh;
    transform: none;
    border-radius: 28px 28px 0 0;
    border-inline: 0;
    border-bottom: 0;
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }


  .lyrics-card {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: 88vh;
    transform: none;
    border-radius: 28px 28px 0 0;
    border-inline: 0;
    border-bottom: 0;
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }

  .panel-header {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: .7rem;
    padding-right: 2.4rem;
  }

  .panel-cover {
    width: 54px;
    border-radius: 12px;
  }

  .panel-header h2 {
    font-size: clamp(1.16rem, 5.7vw, 1.55rem);
  }

  .service-tab {
    padding: .38rem .6rem .38rem .38rem;
  }

  .service-tab .service-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .link-row {
    align-items: stretch;
    flex-direction: column;
  }

  .open-link {
    text-align: center;
  }

  .mail-link {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.service-icon-text[hidden] {
  display: none !important;
}

/* === Mobile portrait overflow hotfix ===
   Prevents horizontal overflow from header/nav, large title text,
   service buttons, link panels, and large album images on narrow screens. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

#visualizer,
.site-shell,
main,
section,
.site-header,
.section-wrap,
.site-footer,
.hero,
.album-grid,
.album-card,
.album-body,
.cover-zone,
.track-preview,
.service-strip,
.link-panel,
.lyrics-card,
.lightbox,
.lightbox figure {
  max-width: 100%;
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 16px);
    max-width: calc(100vw - 16px);
    gap: .35rem;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: .45rem;
  }

  .brand-mark,
  .service-icon,
  .button-icon,
  .track-index {
    flex-shrink: 0;
  }

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

  .brand-text strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    flex: 0 0 auto;
    min-width: 0;
    gap: .02rem;
  }

  .site-nav a {
    padding: .52rem .38rem;
    font-size: .74rem;
    white-space: nowrap;
  }

  .section-wrap,
  .site-footer,
  .hero {
    width: calc(100% - 22px);
    max-width: calc(100vw - 22px);
  }

  .hero {
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 14.5vw, 4.8rem);
    line-height: .9;
    letter-spacing: -.055em;
  }

  .hero h1 span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-visual {
    min-height: auto;
    overflow: hidden;
    padding-block: 1rem;
  }

  .artist-card,
  .artist-orbit {
    width: min(82vw, 320px);
    max-width: 100%;
  }

  .section-heading,
  .album-card,
  .about-card {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cover-zone {
    width: 100%;
    max-width: min(100%, 420px);
    margin-inline: auto;
  }

  .album-title,
  .section-heading h2,
  .about-card h2,
  .site-footer h2,
  .album-description,
  .section-heading p,
  .about-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .album-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .action-button {
    width: 100%;
    min-width: 0;
  }

  .service-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .service-pill {
    width: 100%;
    min-width: 0;
    flex: initial;
    justify-content: flex-start;
    padding-right: .52rem;
  }

  .service-label,
  .service-tab > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .link-panel,
  .lyrics-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .panel-header {
    grid-template-columns: 52px minmax(0, 1fr);
    overflow: hidden;
  }

  .panel-cover {
    display: block;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    max-height: 52px;
    object-fit: cover;
    object-position: center;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    overflow-x: hidden;
    padding-right: 0;
  }

  .service-tab {
    width: 100%;
    min-width: 0;
    flex: initial;
    justify-content: flex-start;
    white-space: nowrap;
    padding-right: .48rem;
  }

  .link-row,
  .track-link-row {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .track-link-info,
  .track-link-info strong,
  .track-link-info span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .link-actions .lyrics-link,
  .link-actions .open-link,
  .link-actions .disabled-link {
    min-width: 0;
    white-space: normal;
  }

  .lightbox {
    overflow-x: hidden;
  }

  .lightbox figure {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 420px) {
  .brand-text {
    display: none;
  }

  .site-nav a {
    padding-inline: .32rem;
    font-size: .7rem;
  }

  .service-strip,
  .service-tabs {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================
   Mobile portrait overflow patch
   - Prevents horizontal page scroll on narrow screens
   - Converts mobile service buttons/tabs to wrapping grids
   - Forces modal/card contents to shrink inside viewport
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-shell,
main,
section,
header,
footer,
.section-wrap,
.site-header,
.hero,
.hero-copy,
.hero-visual,
.album-grid,
.album-card,
.album-body,
.cover-zone,
.track-preview,
.about-card,
.site-footer,
.link-panel,
.lyrics-card {
  min-width: 0;
  max-width: 100%;
}

h1,
h2,
h3,
p,
span,
strong,
small,
a,
button,
dd,
dt {
  min-width: 0;
}

.album-title,
.album-title small,
.album-description,
.section-heading h2,
.about-card h2,
.site-footer h2,
.link-row strong,
.link-row span,
.lyrics-body,
.empty-state {
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: clip;
  }

  .section-wrap {
    width: min(calc(100% - 20px), var(--max-width));
    max-width: calc(100vw - 20px);
  }

  .site-header {
    width: calc(100% - 16px);
    max-width: calc(100vw - 16px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .35rem;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    gap: .5rem;
  }

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

  .brand-text strong {
    display: block;
    max-width: 34vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    min-width: 0;
    justify-content: flex-end;
    gap: 0;
  }

  .site-nav a {
    padding: .52rem .36rem;
    font-size: .72rem;
    white-space: nowrap;
  }

  .hero {
    overflow: hidden;
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13.2vw, 4.3rem);
    letter-spacing: -.055em;
  }

  .hero h1 span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .album-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button,
  .action-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-stats,
  .hero-stats div {
    min-width: 0;
  }

  .artist-orbit {
    width: min(72vw, 300px);
  }

  .artist-card {
    width: min(72vw, 300px);
    max-width: 100%;
  }

  .artist-card figcaption {
    min-width: 0;
    gap: .55rem;
  }

  .artist-card figcaption strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .album-card {
    width: 100%;
    max-width: 100%;
    transform: none !important;
  }

  .cover-zone {
    max-width: min(100%, 360px);
  }

  .album-kicker,
  .tag-row {
    min-width: 0;
  }

  .pill,
  .tag {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .album-title {
    font-size: clamp(1.85rem, 11.5vw, 3.25rem);
  }

  .service-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .service-pill {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: initial;
    justify-content: flex-start;
    white-space: normal;
    padding: .36rem .52rem .36rem .38rem;
  }

  .service-label,
  .service-tab > span:not(.service-icon) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .track-preview {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .track-preview-row {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .track-preview-row .lyrics-button {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    max-width: 180px;
    text-align: center;
  }

  .link-panel,
  .lyrics-card {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: clamp(.85rem, 4vw, 1.1rem);
    padding-right: clamp(.85rem, 4vw, 1.1rem);
  }

  .panel-header {
    grid-template-columns: 52px minmax(0, 1fr);
    overflow: hidden;
  }

  .panel-cover {
    display: block;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    max-width: 52px;
    min-height: 52px;
    max-height: 52px;
    object-fit: cover;
  }

  .panel-title-block,
  .track-link-info,
  .link-row > div {
    min-width: 0;
    max-width: 100%;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    overflow-x: hidden;
    padding: .95rem 0 .7rem;
  }

  .service-tab {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    white-space: normal;
    padding: .38rem .5rem .38rem .38rem;
  }

  .link-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .link-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .link-actions .lyrics-link,
  .link-actions .open-link,
  .link-actions .disabled-link,
  .open-link,
  .disabled-link {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .brand-text {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: .82rem;
  }

  .site-nav a {
    padding: .48rem .32rem;
    font-size: .7rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.6vw, 3.7rem);
  }

  .service-strip,
  .service-tabs {
    grid-template-columns: 1fr;
  }
}

/* v6 hotfix: hard-lock album cover size inside the music-service link panel on every viewport.
   This prevents 3000x3000 source images from expanding the desktop modal layout. */
.link-panel {
  --panel-cover-size: clamp(52px, 6vw, 76px);
  box-sizing: border-box;
  overflow-x: hidden;
}

.link-panel .panel-header {
  grid-template-columns: var(--panel-cover-size) minmax(0, 1fr) !important;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.link-panel img.panel-cover,
.link-panel .panel-cover {
  display: block !important;
  box-sizing: border-box !important;
  inline-size: var(--panel-cover-size) !important;
  block-size: var(--panel-cover-size) !important;
  width: var(--panel-cover-size) !important;
  height: var(--panel-cover-size) !important;
  min-inline-size: var(--panel-cover-size) !important;
  max-inline-size: var(--panel-cover-size) !important;
  min-block-size: var(--panel-cover-size) !important;
  max-block-size: var(--panel-cover-size) !important;
  min-width: var(--panel-cover-size) !important;
  max-width: var(--panel-cover-size) !important;
  min-height: var(--panel-cover-size) !important;
  max-height: var(--panel-cover-size) !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  overflow: hidden !important;
  flex: 0 0 var(--panel-cover-size) !important;
}

.link-panel .panel-title-block,
.link-panel .track-link-info,
.link-panel .link-row > div,
.link-panel .service-tabs,
.link-panel .link-stack {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 701px) {
  .link-panel {
    width: min(920px, calc(100vw - 40px)) !important;
    max-width: calc(100vw - 40px) !important;
  }
}

@media (max-width: 700px) {
  .link-panel {
    --panel-cover-size: 52px;
  }
}

/* Current combined hotfix: visualizer, marquee, and lyrics modal layering */
#visualizer {
  opacity: .22 !important;
}

.marquee-track {
  animation-name: marquee !important;
  animation-duration: 28s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
}

.lyrics-modal {
  z-index: 120 !important;
}

.lyrics-modal .lyrics-card,
.lyrics-card {
  z-index: 130 !important;
}

.lyrics-modal[hidden] {
  display: none !important;
}

.link-panel {
  z-index: 60;
}

.panel-backdrop {
  z-index: 50;
}

@media (prefers-reduced-motion: reduce) {
  #visualizer {
    display: block !important;
  }

  .marquee-track {
    animation-name: marquee !important;
    animation-duration: 28s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }
}
