:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-soft: #0d0f17;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f8fbff;
  --muted: #b6bfce;
  --cyan: #11c8ff;
  --pink: #ff2aa8;
  --violet: #7c4dff;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 10%, rgba(17, 200, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(255, 42, 168, 0.2), transparent 26rem),
    linear-gradient(180deg, #030305 0%, var(--bg) 45%, #090911 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-bottom 300ms ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 7, 0.88);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 7, 0.72);
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  outline: none;
}

.nav-action {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
}

.nav-action:hover,
.nav-action:focus-visible {
  border-color: rgba(17, 200, 255, 0.35);
  color: var(--text);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 2rem;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  isolation: isolate;
  perspective: 900px;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  max-width: 680px;
}

.hero-media img {
  width: min(540px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 0 36px rgba(255, 42, 168, 0.3)) drop-shadow(0 0 32px rgba(17, 200, 255, 0.28));
  animation: heroFloat 7s ease-in-out infinite;
}

#waveform-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 12px;
  opacity: 0.85;
}

.hero-orbit {
  position: absolute;
  inset: 10%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.orbit-one {
  border-color: rgba(17, 200, 255, 0.28);
  animation: orbitSpin 16s linear infinite;
}

.orbit-two {
  inset: 18%;
  border-color: rgba(255, 42, 168, 0.25);
  animation: orbitSpinReverse 20s linear infinite;
}

.hero-scanline {
  position: absolute;
  inset: 8% 0 auto;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(17, 200, 255, 0.85), rgba(255, 42, 168, 0.75), transparent);
  filter: blur(0.5px);
  opacity: 0.72;
  animation: scanHero 4.8s ease-in-out infinite;
}

.hero-content {
  animation: heroCopyIn 900ms ease both;
}

.hero-signal {
  display: inline-flex;
  align-items: end;
  gap: 0.38rem;
  height: 48px;
  margin-top: 2rem;
}

.hero-signal span {
  width: 7px;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(17, 200, 255, 0.32);
  animation: signalPulse 1.25s ease-in-out infinite;
}

.hero-signal span:nth-child(2) { animation-delay: 120ms; }
.hero-signal span:nth-child(3) { animation-delay: 240ms; }
.hero-signal span:nth-child(4) { animation-delay: 360ms; }
.hero-signal span:nth-child(5) { animation-delay: 480ms; }

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translate3d(0, -14px, 0) rotateX(1.5deg) rotateY(-2deg); }
}

@keyframes orbitSpin {
  from { transform: rotateX(64deg) rotateZ(0deg); }
  to { transform: rotateX(64deg) rotateZ(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotateX(58deg) rotateY(18deg) rotateZ(360deg); }
  to { transform: rotateX(58deg) rotateY(18deg) rotateZ(0deg); }
}

@keyframes scanHero {
  0%, 100% { transform: translateY(0); opacity: 0; }
  12%, 78% { opacity: 0.72; }
  50% { transform: translateY(420px); }
}

@keyframes signalPulse {
  0%, 100% { height: 12px; opacity: 0.55; }
  50% { height: 44px; opacity: 1; }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 7.4vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow),
.intro > p,
.split-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #00e5ff 0%, #3b82f6 34%, #8b5cf6 68%, #ff2da6 100%);
  background-size: 180% 180%;
  color: white;
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.24), 0 0 34px rgba(255, 45, 166, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 22px 52px rgba(0, 229, 255, 0.22), 0 0 42px rgba(255, 45, 166, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.button.danger,
.media-delete-btn {
  border-color: rgba(255, 92, 122, 0.7);
  background: rgba(255, 92, 122, 0.08);
  color: #ff8aa3;
}

.button.danger:hover,
.media-delete-btn:hover {
  border-color: #ff8aa3;
  background: rgba(255, 92, 122, 0.16);
  color: var(--text);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-stats div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 0.25rem;
  font-size: 1.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section,
.split-section,
.store-section,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: end;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
}

.artist-grid,
.license-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.artist-card,
.license-grid article,
.blog-grid article,
.feature-list div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.artist-card,
.license-grid article,
.blog-grid article {
  min-height: 220px;
  padding: 1.35rem;
}

.artist-card > span,
.artist-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 900;
}

.artist-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.artist-card .artist-num {
  margin-bottom: 0;
}

.artist-region,
.artist-genre {
  color: var(--muted);
  font-size: 0.83rem;
}

.artist-genre {
  margin-bottom: 0.7rem;
  color: var(--pink);
  font-weight: 800;
}

.artist-card p,
.license-grid p,
.blog-grid p,
.faq-list p,
.store-panel p,
.store-panel li {
  color: var(--muted);
}

.artist-catalog {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.homepage-catalog {
  margin-top: 0;
  grid-template-columns: 1fr;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.album-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.album-art-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.album-art-button img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.album-art-button:hover img,
.album-art-button:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.album-art-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.album-card-body {
  padding: 1rem;
}

.album-card-body p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.88rem;
}

.album-date {
  display: inline-flex;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.album-status {
  display: inline-flex;
  width: fit-content;
  margin-right: 0.5rem;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(17, 200, 255, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.album-track-list {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.album-track-list[hidden] {
  display: none;
}

.album-track-row {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.album-track-row:last-child {
  border-bottom: 0;
}

.album-track-num {
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

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

.album-track-info strong,
.album-track-info span,
.album-track-info small {
  display: block;
}

.album-track-info strong {
  color: var(--text);
  line-height: 1.25;
}

.album-track-info span,
.album-track-info small {
  color: var(--muted);
}

.album-track-info small {
  font-size: 0.78rem;
}

.album-track-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.album-track-actions .preview-btn {
  margin-top: 0;
}

.catalog-track {
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.spotify-embed-section {
  padding-top: 1rem;
}

.spotify-embed {
  display: block;
  margin-top: 1.5rem;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.track-number {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.track-rank {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.track-main {
  min-width: 0;
}

.track-main strong,
.track-main span {
  display: block;
}

.track-main strong {
  color: var(--text);
  font-size: 1rem;
}

.track-main span,
.track-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
}

.track-metrics {
  white-space: nowrap;
}

.track-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-width: 100%;
  vertical-align: middle;
}

.track-separator {
  color: var(--muted);
  font-weight: 900;
}

.track-actions .preview-btn {
  flex-shrink: 0;
}

.track-actions .track-link {
  flex: 1;
}

.artist-tagline {
  font-style: italic;
  color: var(--cyan);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.artist-description {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.artist-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.artist-keywords span {
  background: var(--surface);
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.artist-mission {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 200, 255, 0.02) 100%);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--cyan);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.artist-mission strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 0.3rem;
}

.artist-stream-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.artist-image {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.artist-image-link {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-image-link:hover,
.artist-image-link:focus-visible {
  border-color: rgba(27, 194, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(27, 194, 255, 0.12);
  transform: translateY(-2px);
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist-profile-hero {
  align-items: stretch;
}

.artist-profile-hero img {
  width: min(420px, 100%);
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.artist-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1rem;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
}

.review-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.review-filters label {
  font-weight: 600;
  color: var(--muted);
}

.review-filters select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
}

.reviews-list {
  margin-bottom: 2rem;
}

.review-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.review-author {
  font-weight: 600;
  color: var(--text);
}

.review-rating {
  color: #ffd700;
  font-size: 1.1rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.review-comment {
  color: var(--text);
  line-height: 1.6;
}

.review-form-container {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 200, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.review-form-container h3 {
  margin-bottom: 1.5rem;
  color: var(--cyan);
}

.review-form .field {
  margin-bottom: 1.5rem;
}

.review-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--muted);
}

.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--background);
  color: var(--text);
  font-size: 0.95rem;
}

.review-form textarea {
  resize: vertical;
  font-family: inherit;
}

.auth-message {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.auth-message a {
  color: var(--cyan);
  text-decoration: none;
}

.auth-message a:hover {
  text-decoration: underline;
}

.artist-card > .track-number {
  width: auto;
  height: auto;
  margin: 0 0.75rem 0 0;
  border: 0;
  border-radius: 0;
}

.catalog-track span,
.empty-state.compact {
  color: var(--muted);
  font-size: 0.82rem;
}

.store-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list div {
  padding: 1.3rem;
}

.store-section {
  border-top: 1px solid var(--line);
}

.store-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 200, 255, 0.1), rgba(255, 42, 168, 0.1));
}

.store-panel img {
  border-radius: 8px;
}

.store-panel div {
  padding: 1rem;
}

.store-panel ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
}

.license-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-section {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid article p {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--cyan);
  font-weight: 900;
}

.track-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 900;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 2rem;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 11ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero img {
  width: min(440px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 0 30px rgba(17, 200, 255, 0.22)) drop-shadow(0 0 34px rgba(255, 42, 168, 0.24));
}

.page-section {
  border-top: 0;
}

.detailed-grid {
  margin-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.product-grid > article:not(.product-card),
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.product-grid > article:not(.product-card) {
  min-height: 260px;
  padding: 1.35rem;
}

.product-grid > article:not(.product-card) strong {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--text);
}

.blog-grid article span {
  color: var(--muted);
}

.contact-card {
  padding: 1.5rem;
}

.contact-card p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-group.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

.reveal-group.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 80ms;
}

.reveal-group.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 160ms;
}

.reveal-group.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 240ms;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(0, 229, 255, 0.72);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.04);
  color: #22d3ee;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.preview-btn:hover,
.preview-btn.playing {
  background: linear-gradient(135deg, #00e5ff, #3b82f6 45%, #8b5cf6);
  color: white;
  box-shadow: 0 12px 28px rgba(0, 229, 255, 0.18);
  transform: translateY(-1px);
}

#audio-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(680px, calc(100% - 32px));
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 15, 23, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  font-size: 0.88rem;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

#audio-bar.visible {
  transform: translateX(-50%) translateY(0);
}

#audio-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cyan);
  color: #050507;
  cursor: pointer;
}

#audio-bar #audio-bar-close {
  background: transparent;
  color: var(--muted);
  font-size: 1rem;
}

.track-label {
  color: var(--muted);
  font-size: 0.75rem;
}

.track-name {
  font-weight: 800;
}

#audio-progress {
  width: 90px;
  height: 3px;
  accent-color: var(--cyan);
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 980px;
}

.store-leaderboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.store-leaderboard div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.store-leaderboard span,
.store-leaderboard strong {
  display: block;
}

.store-leaderboard span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-leaderboard strong {
  margin-top: 0.3rem;
  color: var(--text);
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms, border-color 160ms, color 160ms;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--cyan);
  background: rgba(17, 200, 255, 0.08);
  color: var(--cyan);
}

.product-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 200ms ease, border-color 200ms ease;
}

.store-catalog {
  margin-top: 1rem;
}

.store-catalog .product-card {
  grid-template-rows: 140px 1fr;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 200, 255, 0.3);
}

.product-thumb {
  min-height: 180px;
}

.store-catalog .product-thumb {
  min-height: 140px;
}

.studio-grid,
.instrument-board,
.label-ops {
  display: grid;
  gap: 1rem;
}

.studio-grid,
.label-ops {
  grid-template-columns: repeat(4, 1fr);
}

.studio-card,
.label-ops article,
.instrument-board div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.studio-card,
.label-ops article {
  padding: 1.2rem;
}

.studio-card {
  grid-column: span 1;
}

.studio-card:first-child {
  grid-column: span 2;
}

.studio-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.studio-card p,
.label-ops p,
.instrument-board span {
  color: var(--muted);
}

.instrument-board {
  grid-template-columns: repeat(2, 1fr);
}

.instrument-board div {
  padding: 1rem;
}

.instrument-board strong,
.instrument-board span {
  display: block;
}

.instrument-board strong {
  color: var(--text);
  margin-bottom: 0.35rem;
}

.afro-thumb {
  background: linear-gradient(135deg, #1a0a00, #f5a623 140%);
}

.latin-thumb {
  background: linear-gradient(135deg, #0a001a, #ff2aa8 140%);
}

.gospel-thumb {
  background: linear-gradient(135deg, #0f1020, #11c8ff 75%, #ffffff 150%);
}

.mideast-thumb {
  background: linear-gradient(135deg, #000d1a, #11c8ff 140%);
}

.asia-thumb {
  background: linear-gradient(135deg, #001a0a, #7c4dff 140%);
}

.product-info {
  padding: 1.2rem;
}

.product-info p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.product-price {
  margin-right: auto;
  font-size: 1.05rem;
  font-weight: 900;
}

.download-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.download-btn:hover {
  border-color: rgba(255, 45, 166, 0.65);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(139, 92, 246, 0.16), rgba(255, 45, 166, 0.14));
  color: white;
  box-shadow: 0 12px 28px rgba(255, 45, 166, 0.12);
  transform: translateY(-1px);
}

.media-delete-btn {
  width: auto;
  min-height: 36px;
  margin-top: 0.85rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
}

.muted-text {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-section {
  display: grid;
  place-items: start center;
}

.checkout-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-card {
  width: 100%;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.featured-checkout {
  border-color: rgba(17, 200, 255, 0.55);
}

.checkout-card ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.checkout-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.buy-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #00e5ff 0%, #3b82f6 34%, #8b5cf6 68%, #ff2da6 100%);
  background-size: 180% 180%;
  color: white;
  font: inherit;
  font-weight: 900;
  min-height: 38px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.2), 0 0 28px rgba(255, 45, 166, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.buy-btn:hover,
.buy-btn:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 20px 46px rgba(0, 229, 255, 0.2), 0 0 36px rgba(255, 45, 166, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.track-buy-btn,
.album-buy-btn {
  white-space: nowrap;
}

.album-buy-btn {
  margin-top: 1rem;
}

.purchase-success {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: rgba(17, 200, 255, 0.08);
  color: var(--cyan);
  font-weight: 800;
}

.contact-tabs {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  margin-bottom: 2rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tab-btn {
  padding: 0.6rem 1.1rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms, color 160ms;
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.contact-form,
.media-form {
  display: grid;
  gap: 1.2rem;
  max-width: 760px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 160ms;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  outline: none;
}

.field textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.88rem;
}

.form-status.ok {
  color: var(--cyan);
}

.form-status.err {
  color: var(--pink);
}

.process-list {
  position: relative;
  display: grid;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  width: 1px;
  background: var(--line);
}

.process-list li {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.process-num {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--bg);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-body p {
  color: var(--muted);
}

.media-vault {
  border-top: 1px solid var(--line);
}

.media-library-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.media-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.media-card audio,
.media-card video {
  width: 100%;
}

.media-card video {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
}

.youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #000;
}

.media-card p,
.empty-state {
  color: var(--muted);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-tab {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.admin-tab.active,
.admin-tab:hover {
  border-color: rgba(17, 200, 255, 0.35);
  background: rgba(17, 200, 255, 0.08);
  color: var(--text);
}

.admin-workspace {
  min-width: 0;
}

.admin-panel-section {
  display: none;
}

.admin-panel-section.active {
  display: block;
}

.admin-panel-section.admin-grid.active,
.admin-panel-section.admin-tables.active {
  display: grid;
}

.admin-panel-section:not(.active) {
  display: none !important;
}

.admin-account-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-account-bar span,
.admin-account-bar small {
  display: block;
  color: var(--muted);
}

.admin-account-bar span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-account-bar strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.admin-stats article,
.admin-panel,
.admin-table-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
}

.admin-stats article {
  min-width: 0;
  padding: 1.15rem;
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.admin-grid,
.admin-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.admin-panel,
.admin-table-card {
  min-width: 0;
  padding: 1.25rem;
}

.admin-panel h2,
.admin-table-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.admin-table-card.wide {
  grid-column: 1 / -1;
}

.inline-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.inline-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.admin-table {
  overflow-x: auto;
}

.admin-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--text);
  font-size: 0.92rem;
}

.table-artwork {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-group > *,
  .hero-media img,
  .hero-orbit,
  .hero-scanline,
  .hero-signal span,
  .hero-content {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 0.75rem;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .nav-action {
    padding: 0.95rem 1rem;
    text-align: left;
  }

  .hero,
  .intro,
  .split-section,
  .store-panel,
  .page-hero,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.25rem;
  }

  .hero-media {
    grid-column: auto;
    grid-row: auto;
    order: 0;
  }

  .hero-content {
    grid-column: auto;
    grid-row: auto;
  }

  h1 {
    max-width: 9ch;
  }

  .artist-grid,
  .license-grid,
  .blog-grid,
  .product-grid,
  .store-catalog,
  .media-library-list,
  .admin-stats,
  .studio-grid,
  .label-ops {
    grid-template-columns: repeat(2, 1fr);
  }

  .instrument-board,
  .store-leaderboard {
    grid-template-columns: 1fr;
  }

  .studio-card:first-child,
  .studio-card {
    grid-column: auto;
  }

  .admin-grid,
  .admin-tables {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-table-card.wide {
    grid-column: auto;
  }

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

  .contact-section,
  .site-footer,
  .admin-account-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 150px;
    line-height: 1.1;
  }

  .button {
    width: 100%;
  }

  .section,
  .split-section,
  .store-section,
  .contact-section {
    padding: 3.5rem 0;
  }

  .artist-grid,
  .license-grid,
  .blog-grid,
  .product-grid,
  .store-catalog,
  .media-library-list,
  .admin-stats,
  .studio-grid,
  .label-ops,
  .artist-profile-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .catalog-track {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .album-track-row {
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: start;
  }

  .album-track-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-wrap: wrap;
  }

  .track-actions {
    width: 100%;
  }

  .track-actions .track-link,
  .track-actions .preview-btn {
    justify-content: center;
  }

  #audio-bar {
    align-items: stretch;
    flex-wrap: wrap;
    border-radius: 8px;
  }

  #audio-progress {
    width: 100%;
  }

  .contact-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .artist-card,
  .license-grid article,
  .blog-grid article {
    min-height: auto;
  }
}

.audio-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.audio-modal-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.audio-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}

.audio-modal-close:hover {
  color: var(--text);
}

.audio-modal h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  min-width: 150px;
  flex-shrink: 0;
}

.audio-modal audio {
  display: none;
}

.audio-player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.audio-control-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.audio-control-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.audio-progress-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.audio-time {
  font-size: 0.8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  flex-shrink: 0;
}

.audio-progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--panel);
  appearance: none;
  cursor: pointer;
  min-width: 0;
}

.audio-progress-bar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  transition: transform 0.2s;
}

.audio-progress-bar::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.audio-progress-bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  border: none;
}

.audio-progress-bar::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.audio-volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.volume-icon {
  color: var(--muted);
  width: 16px;
  height: 16px;
}

.audio-volume-slider {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: var(--panel);
  appearance: none;
  cursor: pointer;
}

.audio-volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.2s;
}

.audio-volume-slider::-webkit-slider-thumb:hover {
  background: var(--text);
}

.audio-volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  border: none;
}

.audio-volume-slider::-moz-range-thumb:hover {
  background: var(--text);
}

.track-link.listen-btn {
  background: transparent;
  border: none;
  color: var(--cyan);
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}

.track-link.listen-btn:hover {
  text-decoration-color: var(--cyan);
}

.auth-container {
  max-width: 450px;
  margin: 0 auto;
}

.auth-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.auth-tab {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.auth-tab.active {
  color: var(--text);
  border-bottom-color: var(--cyan);
}

.auth-tab:hover {
  color: var(--text);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-form.hidden {
  display: none;
}

.auth-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-form input {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

.auth-success {
  text-align: center;
  padding: 2rem;
}

.auth-success p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--muted);
}

.remember-me input {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
}

.forgot-password {
  font-size: 0.9rem;
  color: var(--cyan);
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}
