:root {
  --bg: #070b1a;
  --accent: #00e5ff;
  --accent-2: #4f8cff;
  --text: #e6f7ff;
  --muted: #8ea3c7;
  --card: rgba(10, 16, 32, 0.82);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 229, 255, 0.12);
  --glow: 0 0 18px rgba(0, 229, 255, 0.45);
  --player-offset: 140px;
  --track-cover: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.22), transparent 45%),
    radial-gradient(circle at 85% -10%, rgba(79, 140, 255, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(7, 11, 26, 0.98), rgba(5, 7, 16, 0.98)),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, 140px 140px, 140px 140px, auto;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  padding-bottom: var(--player-offset);
}

body.track-page {
  padding-bottom: 0;
  position: relative;
  isolation: isolate;
  height: 100vh;
  overflow: hidden;
}

body.track-page::before {
  content: "";
  position: fixed;
  inset: -10%;
  background-image: var(--track-cover);
  background-size: cover;
  background-position: center;
  filter: blur(36px) saturate(1.2);
  opacity: 0.55;
  transform: scale(1.08);
  z-index: 0;
}

body.track-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.45), rgba(7, 11, 26, 0.54));
  z-index: 0;
}

body.track-page > *:not(.global-player):not(.track-particles):not(.grain) {
  position: relative;
  z-index: 2;
}

body.track-page .track-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

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

.btn,
.btn.ghost,
.preview-btn,
.share-btn,
.chip,
.player-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  z-index: 0;
}

.hero {
  padding: 28px 6vw 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(3, 6, 16, 0.85), rgba(7, 11, 26, 0.92));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  inset: -20%;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.particles::before {
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(0, 229, 255, 0.9) 0, transparent 70%),
    radial-gradient(1px 1px at 120px 80px, rgba(79, 140, 255, 0.9) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 60px 140px, rgba(0, 229, 255, 0.7) 0, transparent 70%),
    radial-gradient(1px 1px at 180px 40px, rgba(79, 140, 255, 0.7) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 30px 190px, rgba(0, 229, 255, 0.8) 0, transparent 70%),
    radial-gradient(1px 1px at 200px 160px, rgba(79, 140, 255, 0.8) 0, transparent 70%),
    radial-gradient(1px 1px at 10px 80px, rgba(0, 229, 255, 0.85) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 90px 30px, rgba(79, 140, 255, 0.75) 0, transparent 70%),
    radial-gradient(2px 2px at 150px 200px, rgba(0, 229, 255, 0.75) 0, transparent 70%),
    radial-gradient(1px 1px at 220px 110px, rgba(79, 140, 255, 0.75) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 260px 20px, rgba(0, 229, 255, 0.7) 0, transparent 70%),
    radial-gradient(1px 1px at 240px 190px, rgba(79, 140, 255, 0.7) 0, transparent 70%);
  background-size: 120px 120px;
  animation: particleDrift 8s linear infinite, particleTwinkle 3s ease-in-out infinite;
}

.particles::after {
  background-image:
    radial-gradient(2px 2px at 40px 70px, rgba(79, 140, 255, 0.85) 0, transparent 70%),
    radial-gradient(1px 1px at 150px 120px, rgba(0, 229, 255, 0.85) 0, transparent 70%),
    radial-gradient(1px 1px at 90px 10px, rgba(79, 140, 255, 0.7) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 10px 190px, rgba(0, 229, 255, 0.75) 0, transparent 70%),
    radial-gradient(1px 1px at 210px 40px, rgba(0, 229, 255, 0.85) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 120px 210px, rgba(79, 140, 255, 0.8) 0, transparent 70%),
    radial-gradient(1px 1px at 30px 140px, rgba(0, 229, 255, 0.8) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 180px 170px, rgba(79, 140, 255, 0.75) 0, transparent 70%),
    radial-gradient(1px 1px at 260px 90px, rgba(0, 229, 255, 0.75) 0, transparent 70%),
    radial-gradient(2px 2px at 230px 220px, rgba(79, 140, 255, 0.75) 0, transparent 70%),
    radial-gradient(1px 1px at 70px 30px, rgba(0, 229, 255, 0.8) 0, transparent 70%),
    radial-gradient(1.5px 1.5px at 200px 10px, rgba(79, 140, 255, 0.7) 0, transparent 70%);
  background-size: 140px 140px;
  animation: particleDriftReverse 11s linear infinite, particleTwinkle 3s ease-in-out infinite;
}

.trail-particle {
  position: absolute;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--particle-color, rgba(0, 229, 255, 0.95)) 0%, rgba(0, 0, 0, 0) 70%);
  box-shadow: 0 0 12px var(--particle-color, rgba(0, 229, 255, 0.7));
  opacity: 0.9;
  animation: particleTrail 1s ease-out forwards;
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 120deg,
    rgba(0, 229, 255, 0.35),
    rgba(79, 140, 255, 0.12),
    rgba(0, 229, 255, 0.5),
    rgba(79, 140, 255, 0.08),
    rgba(0, 229, 255, 0.3)
  );
  filter: blur(40px);
  opacity: 0.15;
  transform-origin: center;
  animation: heroSpin 20s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 30%, rgba(0, 229, 255, 0.35), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(79, 140, 255, 0.35), transparent 50%),
    radial-gradient(circle at 70% 75%, rgba(0, 229, 255, 0.2), transparent 55%);
  filter: blur(6px);
  opacity: 0.2;
  animation: heroDrift 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
}

.tag {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(79, 140, 255, 0.6);
}

h1 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 229, 255, 0.95), rgba(79, 140, 255, 0.95));
  color: #07101f;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.25), 0 0 20px rgba(0, 229, 255, 0.35);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--accent);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 229, 255, 0.3), 0 0 30px rgba(0, 229, 255, 0.4);
}

.btn.ghost:hover {
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.3);
}

.hero-card {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 28px;
  padding-bottom: 28px;
  border-radius: 16px;
  background: rgba(8, 14, 28, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.2);
  backdrop-filter: blur(12px);
  max-width: 360px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.4s ease forwards;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  justify-self: end;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 229, 255, 0.35);
}

.hero-card-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.hero-cover-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.hero-cover {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cover--empty {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(79, 140, 255, 0.35));
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.hero-links {
  margin-top: 6px;
  gap: 6px;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-actions .preview-btn {
  margin: 0;
}

.card-line {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-2);
}

.hero-static {
  cursor: default;
}

.card-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 32px;
  margin-top: 6px;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.release-title-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.release-title-link:hover {
  color: var(--accent);
}

.card-meta {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: 80px 6vw;
  position: relative;
  z-index: 1;
}

#sound.section {
  padding-top: 28px;
}

#contact.section {
  padding-top: 56px;
  padding-bottom: 16px;
}

.section.alt {
  background: linear-gradient(120deg, rgba(8, 12, 24, 0.85), rgba(12, 18, 36, 0.6));
  border-top: 1px solid rgba(0, 229, 255, 0.08);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.section-header {
  max-width: 520px;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 36px;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.section-header p {
  color: var(--muted);
}

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

.player {
  margin-top: 32px;
  max-width: 720px;
}

.tile {
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 16, 32, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.12);
  box-shadow: var(--shadow);
  min-height: 180px;
  animation: fadeUp 1s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tile h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

.tile--clickable {
  cursor: pointer;
}

.tile--clickable:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.25);
}

.stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stat {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 48px;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.4);
}

.label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.note {
  color: var(--muted);
  max-width: 520px;
}

.release {
  display: grid;
  gap: 24px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 16, 32, 0.78);
  border: 1px solid rgba(0, 229, 255, 0.14);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform, box-shadow, border-color;
}

.release::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cover, linear-gradient(135deg, rgba(0, 229, 255, 0.28), rgba(79, 140, 255, 0.22)));
  background-size: cover;
  background-position: center;
  filter: blur(32px) saturate(1.3);
  opacity: 0.25;
  transform: scale(1.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.release::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 11, 22, 0.92), rgba(8, 14, 30, 0.4));
  z-index: 0;
  transition: opacity 0.3s ease;
}

.release > * {
  position: relative;
  z-index: 1;
}

.release:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6), 0 0 28px rgba(0, 229, 255, 0.35);
}

.release:hover::before {
  opacity: 0.35;
  transform: scale(1.28);
}

.release:hover::after {
  opacity: 0.85;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.release .links {
  justify-content: center;
}

.profile-links-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background: rgba(8, 14, 28, 0.7);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.profile-links-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.15), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.profile-links-card > * {
  position: relative;
  z-index: 1;
}

.profile-links-grid {
  gap: 14px;
  justify-content: center;
}

.release-info h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.release-info p {
  color: var(--muted);
}

.release-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cover {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(0, 229, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cover-link {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
}

.hero-cover-link {
  cursor: pointer;
}

.hero-cover-link:hover .hero-cover,
.hero-cover-link:hover .hero-cover--empty {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(0, 229, 255, 0.35);
}

.cover-link:hover .cover,
.cover-link:hover .cover--empty {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 229, 255, 0.3);
}

.cover--empty {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(79, 140, 255, 0.35));
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.release-info > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.preview-btn {
  align-self: flex-start;
}

.preview-muted {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.share-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 140, 255, 0.4);
  background: rgba(79, 140, 255, 0.08);
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-btn:hover {
  border-color: var(--accent-2);
  box-shadow: 0 0 14px rgba(79, 140, 255, 0.4);
  transform: translateY(-1px);
}

.share-btn--icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

.share-btn--icon .share-label {
  display: none;
}


.share-btn.is-copied {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.4);
}

.release-share {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}


.hero-share {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}


.share-icon {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: relative;
}

.share-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-right: 0;
  border-top: 0;
  bottom: -4px;
  left: -4px;
  transform: rotate(-45deg);
}

.links {
  margin-top: 8px;
}

.preview {
  width: 220px;
  height: 32px;
}

.track-hero {
  padding: 24px 6vw 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.9), rgba(7, 11, 26, 0.65));
}

.track-glow {
  position: absolute;
  inset: -30% 0 0;
  background: radial-gradient(circle at top, rgba(0, 229, 255, 0.2), transparent 65%);
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
}

.track-page .nav {
  margin-bottom: 12px;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.track-page .logo {
  margin: 0 auto;
}

.track-main {
  --track-gap: 32px;
  min-height: calc(100vh - var(--player-offset));
  padding: var(--track-gap) 6vw;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.track-back {
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particles,
  .grain {
    display: none;
  }
}

.track-detail {
  margin-top: 0;
}

.track-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 32px;
  border-radius: 24px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cover, linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(79, 140, 255, 0.2)));
  background-size: cover;
  background-position: center;
  filter: blur(36px) saturate(1.4);
  opacity: 0;
  transform: scale(1.2);
}

.track-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 11, 22, 0.95), rgba(10, 16, 32, 0.55));
  opacity: 0;
}

.track-card > * {
  position: relative;
  z-index: 1;
}

.track-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  background: rgba(0, 229, 255, 0.08);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.track-cover-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(79, 140, 255, 0.3));
  position: relative;
  z-index: 0;
}

.track-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 26, 0) 55%, rgba(7, 11, 26, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.track-cover-action {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  width: calc(100% - 32px);
}

.track-cover-action .preview-btn {
  margin: 0;
}

.track-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.track-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.track-badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.track-title {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}

.track-artist {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.track-subtitle {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.track-meta {
  margin-top: 6px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background: rgba(8, 12, 24, 0.6);
}

.track-meta-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.track-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.track-meta-list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-meta-list dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.track-meta-list dd {
  margin: 0;
  font-size: 15px;
}

.track-links-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}

.track-links {
  gap: 12px;
  justify-content: center;
}

.track-links-inline {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
}

.track-links-inline .links {
  margin-top: 0;
}

.preview-btn {
  margin: 10px 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preview-icon {
  width: 14px;
  height: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preview-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: opacity 0.2s ease;
}

.preview-eq {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.preview-eq span {
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  animation: eqPulse 0.9s ease-in-out infinite;
  animation-play-state: paused;
  transform-origin: bottom;
}

.preview-eq span:nth-child(2) {
  animation-delay: 0.15s;
}

.preview-eq span:nth-child(3) {
  animation-delay: 0.3s;
}

.preview-eq span:nth-child(4) {
  animation-delay: 0.45s;
}

.preview-btn:hover {
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.preview-btn.is-playing {
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 14px rgba(79, 140, 255, 0.5);
}

.preview-btn.is-playing .preview-icon::before {
  opacity: 0;
}

.preview-btn.is-playing .preview-eq {
  opacity: 1;
}

.preview-btn.is-playing .preview-eq span {
  animation-play-state: running;
}

.preview-muted {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.empty-state {
  padding: 24px;
  border-radius: 16px;
  border: 1px dashed rgba(0, 229, 255, 0.35);
  color: var(--muted);
  max-width: 520px;
}

.global-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 5vw;
  background: linear-gradient(90deg, rgba(8, 12, 24, 0.95), rgba(12, 18, 36, 0.95));
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  backdrop-filter: blur(18px);
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 2fr) minmax(200px, 1fr);
  align-items: center;
  gap: 20px;
}

.global-player.is-active {
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 229, 255, 0.25);
}

.player-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-cover {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(0, 229, 255, 0.08);
}

.player-title {
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

a.player-title {
  color: inherit;
  text-decoration: none;
}

a.player-title:hover {
  color: var(--accent);
}

a.player-title.is-disabled {
  color: inherit;
  pointer-events: none;
}

.player-artist {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.player-artist {
  color: inherit;
  text-decoration: none;
}

a.player-artist:hover {
  color: var(--accent);
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
  align-items: center;
}

.player-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.player-btn:hover {
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
  transform: translateY(-1px);
}

.player-play {
  width: 46px;
  height: 46px;
  background: linear-gradient(120deg, rgba(0, 229, 255, 1), rgba(79, 140, 255, 1));
  color: #07101f;
  border: none;
  font-size: 18px;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
}

.player-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.player-progress input[type="range"] {
  width: 100%;
  accent-color: var(--accent-2);
  height: 2px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  --range-fill: var(--accent-2);
}

.player-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.player-right input[type="range"] {
  width: 120px;
  accent-color: var(--accent);
  height: 2px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  --range-fill: var(--accent);
}

.player-progress input[type="range"]::-webkit-slider-runnable-track,
.player-right input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
  border-radius: 999px;
}

.player-progress input[type="range"]::-webkit-slider-thumb,
.player-right input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: -5px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.player-progress input[type="range"]::-moz-range-track,
.player-right input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.player-progress input[type="range"]::-moz-range-thumb,
.player-right input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.player-progress input[type="range"]::-moz-range-progress,
.player-right input[type="range"]::-moz-range-progress {
  height: 2px;
  background: var(--range-fill);
  border-radius: 999px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.chip {
  min-height: 36px;
  padding: 6px 14px 6px 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background: rgba(8, 14, 28, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: rgba(230, 247, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
  transform: translateY(-1px);
}

.chip::before,
.chip::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.chip::before {
  background-color: rgba(255, 255, 255, 0.75);
  mask-image: var(--icon-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  opacity: 0.9;
}

.chip::after {
  background-image: var(--icon-url);
  opacity: 0;
}

.chip:hover::before,
.chip:focus-visible::before {
  opacity: 0;
}

.chip:hover::after,
.chip:focus-visible::after {
  opacity: 1;
}

.chip-label {
  font-size: 11px;
  letter-spacing: 1px;
}

.chip--icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex: 0 0 32px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  line-height: 0;
}

.chip--icon::before,
.chip--icon::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-links .chip--icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-basis: 36px;
}

.hero-links .chip--icon::before,
.hero-links .chip--icon::after {
  width: 24px;
  height: 24px;
}

.chip[data-service="spotify"] {
  --icon-url: url("/static/main/icons/spotify.svg");
}

.chip[data-service="apple-music"] {
  --icon-url: url("/static/main/icons/apple-music.svg");
}

.chip[data-service="itunes"] {
  --icon-url: url("/static/main/icons/itunes.svg");
}

.chip[data-service="youtube"] {
  --icon-url: url("/static/main/icons/youtube.svg");
}

.chip[data-service="youtube-music"] {
  --icon-url: url("/static/main/icons/youtube-music.svg");
}

.chip[data-service="deezer"] {
  --icon-url: url("/static/main/icons/deezer.svg");
}

.chip[data-service="yandex-music"] {
  --icon-url: url("/static/main/icons/yandex-music.svg");
}

.chip[data-service="tidal"] {
  --icon-url: url("/static/main/icons/tidal.svg");
}

.chip[data-service="amazon-music"] {
  --icon-url: url("/static/main/icons/amazon-music.svg");
}

.chip[data-service="amazon-store"] {
  --icon-url: url("/static/main/icons/amazon-store.svg");
}

.chip[data-service="audiomack"] {
  --icon-url: url("/static/main/icons/audiomack.svg");
}

.chip[data-service="anghami"] {
  --icon-url: url("/static/main/icons/anghami.svg");
}

.chip[data-service="vk-music"] {
  --icon-url: url("/static/main/icons/vk-music.svg");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.contact {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.contact-value {
  font-size: 18px;
}

.footer {
  padding: 8px 6vw 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes heroDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, 2%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes particleDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-80px, 60px, 0);
  }
}

@keyframes particleDriftReverse {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(60px, -50px, 0);
  }
}

@keyframes particleTwinkle {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes particleTrail {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(0.2);
    opacity: 0;
  }
}

@keyframes eqPulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  :root {
    --player-offset: 300px;
  }

  body {
    padding-bottom: var(--player-offset);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .track-page .nav {
    align-items: center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-card {
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-self: stretch;
    text-align: center;
  }

  .hero-card-cover {
    width: 75%;
    margin: 0 auto;
  }

  .hero-card-body {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-links {
    justify-content: center;
  }

  .hero-cover {
    width: 100%;
    height: 100%;
  }

  .stats {
    gap: 24px;
  }

  .discography-grid {
    grid-template-columns: 1fr;
  }

  .profile-links-card {
    padding: 18px;
    max-width: 100%;
  }

  .profile-links-grid {
    justify-content: center;
  }

  .release-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cover {
    width: 170px;
    height: 170px;
  }

  .hero-share {
    right: 12px;
    bottom: 12px;
  }

  .release-share {
    right: 12px;
    bottom: 12px;
  }

  .release {
    padding-bottom: 24px;
    text-align: center;
  }

  .release-info > div {
    align-items: center;
  }

  .release-actions {
    justify-content: center;
  }

  .release .preview-btn {
    align-self: center;
  }

  .release .links {
    justify-content: center;
  }

  .release-share {
    left: auto;
    right: 12px;
    transform: none;
  }

  .track-card {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    gap: 16px;
  }

  .track-cover {
    width: min(75%, 262px);
    margin: 0 auto;
  }

  .track-content {
    padding: 0 0 18px;
    gap: 0;
    justify-content: flex-start;
  }

  .track-title-wrap {
    min-height: 0;
    padding: 8px 0 6px;
  }

  .track-title {
    font-size: 28px;
    line-height: 1.05;
    text-shadow: 0 0 9px rgba(0, 229, 255, 0.18);
  }

  .track-artist {
    font-size: 12px;
    letter-spacing: 1.6px;
  }

  .track-main {
    --track-gap: 16px;
    padding: 14px 6vw;
  }

  .track-meta-list {
    grid-template-columns: 1fr;
  }

  .track-cover-action {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .track-cover-action .preview-btn {
    padding: 4px 12px;
    font-size: 11px;
    gap: 6px;
  }

  .track-links-inline {
    padding: 10px;
  }

  .track-links {
    gap: 8px 10px;
  }

  .track-links .chip {
    min-height: 30px;
    padding: 4px 12px 4px 36px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .track-links .chip::before,
  .track-links .chip::after {
    width: 16px;
    height: 16px;
    left: 12px;
  }

  .global-player {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "left center right"
      "progress progress progress";
    gap: 8px 10px;
    padding: 8px 4vw 10px;
    align-items: center;
  }

  .player-left {
    grid-area: left;
    gap: 10px;
  }

  .player-center {
    display: contents;
  }

  .player-controls {
    grid-area: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    align-self: center;
  }

  .player-right {
    grid-area: right;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.5px;
    align-self: center;
  }

  .player-right .volume-label {
    display: none;
  }

  .player-cover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .player-title {
    font-size: 13px;
  }

  .player-artist {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .player-btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .player-play {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .player-progress {
    gap: 6px;
    font-size: 10px;
    grid-area: progress;
    width: 100%;
  }

  .player-right input[type="range"] {
    width: 80px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (min-width: 1280px) {
  .discography-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
