:root {
  --bg:#060711;
  --panel:rgba(255,255,255,.075);
  --panel2:rgba(255,255,255,.12);
  --line:rgba(255,255,255,.14);
  --text:#f7f7ff;
  --muted:#aaaac2;
  --dim:#777792;
  --green:#1DB954;
  --green2:#73ff9d;
  --pink:#ff4fd8;
  --purple:#8b5cf6;
  --orange:#ffb86b;
  --red:#ff4d6d;
  --blue:#6aa9ff;
  --shadow:0 24px 80px rgba(0,0,0,.44);
  --radius:28px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  min-height:100vh;
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(29,185,84,.28), transparent 30rem),
    radial-gradient(circle at 88% 6%, rgba(139,92,246,.25), transparent 34rem),
    radial-gradient(circle at 50% 100%, rgba(255,79,216,.13), transparent 32rem),
    var(--bg);
  overflow-x:hidden;
}

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

button,
input,
textarea,
select {
  font:inherit;
}

.noise {
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.04;
  z-index:99;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position:fixed;
  width:18rem;
  height:18rem;
  border-radius:999px;
  filter:blur(48px);
  opacity:.2;
  pointer-events:none;
  animation:float 9s ease-in-out infinite;
}

.orb.one {
  left:-4rem;
  top:15rem;
  background:var(--green);
}

.orb.two {
  right:-5rem;
  top:20rem;
  background:var(--pink);
  animation-delay:-3s;
}

.orb.three {
  left:43%;
  bottom:-7rem;
  background:var(--purple);
  animation-delay:-5s;
}

@keyframes float {
  50% {
    transform:translateY(-24px) scale(1.06);
  }
}

.nav {
  position:sticky;
  top:0;
  z-index:20;
  max-width:1240px;
  margin:0 auto;
  padding:1rem 1.2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  backdrop-filter:blur(18px);
}

.logo {
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  font-weight:950;
  letter-spacing:-.04em;
  font-size:1.22rem;
}

.logo-mark {
  width:2.35rem;
  height:2.35rem;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:#041207;
  box-shadow:0 0 35px rgba(29,185,84,.35);
}

.nav-links {
  display:flex;
  align-items:center;
  gap:.35rem;
  color:var(--muted);
  font-size:.95rem;
}

.nav-links a,
.side-links a,
.btn,
.store-chip,
.release-card,
.card,
.input {
  transition:transform .18s ease, background .18s ease, border .18s ease, box-shadow .18s ease, color .18s ease, opacity .18s ease;
}

.nav-links a {
  padding:.65rem .78rem;
  border-radius:999px;
  border:1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  background:rgba(255,255,255,.1);
  color:var(--text);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-1px);
}

.actions {
  display:flex;
  align-items:center;
  gap:.65rem;
}

.btn {
  border:0;
  cursor:pointer;
  min-height:44px;
  padding:.78rem 1.05rem;
  border-radius:999px;
  font-weight:850;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
}

.btn:hover {
  transform:translateY(-2px);
  box-shadow:0 16px 42px rgba(0,0,0,.28);
}

.btn:active {
  transform:translateY(0) scale(.98);
}

.btn[disabled] {
  cursor:not-allowed;
  opacity:.55;
  transform:none;
}

.btn-primary {
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:#041207;
  box-shadow:0 12px 36px rgba(29,185,84,.23);
}

.btn-primary:hover {
  box-shadow:0 0 0 5px rgba(29,185,84,.13), 0 18px 50px rgba(29,185,84,.26);
}

.btn-ghost {
  background:rgba(255,255,255,.075);
  border:1px solid var(--line);
  color:var(--text);
}

.btn-ghost:hover {
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.24);
}

.btn-red {
  background:rgba(255,77,109,.12);
  border:1px solid rgba(255,77,109,.35);
  color:#ffb5c1;
}

.btn-wide {
  width:100%;
}

.card {
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(22px);
}

.card:hover {
  border-color:rgba(255,255,255,.21);
}

.container {
  max-width:1240px;
  margin:0 auto;
  padding:2rem 1.2rem 4rem;
}

.hero {
  max-width:1240px;
  margin:0 auto;
  padding:4rem 1.2rem 3rem;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:2rem;
  align-items:center;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.5rem .75rem;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:var(--muted);
}

.dot {
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 22px var(--green);
}

h1,
h2,
h3 {
  letter-spacing:-.055em;
}

.hero h1 {
  font-size:clamp(3.1rem,8vw,7.4rem);
  line-height:.86;
  margin:1.1rem 0;
}

.gradient {
  background:linear-gradient(90deg,#fff,#c7ffd9,#a78bfa,#ff8be7);
  -webkit-background-clip:text;
  color:transparent;
}

.hero p,
.section p,
.muted {
  color:var(--muted);
  line-height:1.75;
}

.hero p {
  font-size:clamp(1rem,2vw,1.2rem);
  max-width:650px;
}

.hero-cta {
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  margin-top:1.4rem;
}

.stats {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.85rem;
  margin-top:1.5rem;
}

.stat {
  padding:1rem;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.055);
  transition:transform .18s ease, border .18s ease, background .18s ease;
}

.stat:hover {
  transform:translateY(-3px);
  border-color:rgba(115,255,157,.28);
  background:rgba(255,255,255,.085);
}

.stat strong {
  display:block;
  font-size:1.45rem;
}

.stat span {
  color:var(--dim);
  font-size:.86rem;
}

.player {
  padding:1rem;
  transform:rotate(1.4deg);
}

.player:hover {
  transform:rotate(0deg) translateY(-4px);
}

.cover-art {
  min-height:430px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(29,185,84,.9),rgba(139,92,246,.8),rgba(255,79,216,.75));
  position:relative;
  overflow:hidden;
}

.cover-art:before {
  content:"";
  position:absolute;
  inset:12%;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.38);
  animation:spin 19s linear infinite;
}

.cover-art:after {
  content:"";
  position:absolute;
  width:10rem;
  height:10rem;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:999px;
  background:var(--bg);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.23);
}

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

.track-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-top:1rem;
}

.wave {
  height:34px;
  display:flex;
  align-items:end;
  gap:.22rem;
}

.wave i {
  display:block;
  width:.28rem;
  border-radius:999px;
  background:var(--green);
  animation:bars 1s ease-in-out infinite;
}

.wave i:nth-child(1) {
  height:12px;
}

.wave i:nth-child(2) {
  height:30px;
  animation-delay:-.2s;
}

.wave i:nth-child(3) {
  height:18px;
  animation-delay:-.4s;
}

.wave i:nth-child(4) {
  height:34px;
  animation-delay:-.1s;
}

.wave i:nth-child(5) {
  height:16px;
  animation-delay:-.3s;
}

@keyframes bars {
  50% {
    transform:scaleY(.55);
    opacity:.6;
  }
}

.section {
  max-width:1240px;
  margin:0 auto;
  padding:4rem 1.2rem;
}

.section h2 {
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1;
  margin:0 0 .8rem;
}

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

.feature,
.panel {
  padding:1.2rem;
}

.icon {
  width:3rem;
  height:3rem;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(29,185,84,.16);
  color:var(--green2);
  font-size:1.35rem;
  margin-bottom:1rem;
}

.auth-wrap {
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:2rem 1rem;
}

.auth-shell {
  width:min(1080px,100%);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  overflow:hidden;
}

.auth-art {
  min-height:620px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-right:1px solid var(--line);
  background:radial-gradient(circle at 20% 20%,rgba(29,185,84,.35),transparent 16rem),radial-gradient(circle at 90% 10%,rgba(255,79,216,.25),transparent 14rem),rgba(255,255,255,.05);
}

.auth-art h1 {
  font-size:clamp(2.7rem,5vw,5rem);
  line-height:.9;
  margin:1.4rem 0 .8rem;
}

.auth-form {
  padding:clamp(1.4rem,4vw,3rem);
  background:rgba(7,7,17,.62);
}

.auth-form h2 {
  font-size:2.1rem;
  margin:0 0 .45rem;
}

.form {
  display:grid;
  gap:.95rem;
}

.field {
  display:grid;
  gap:.42rem;
}

.field label {
  color:var(--muted);
  font-size:.92rem;
}

.input,
select.input,
textarea.input {
  width:100%;
  outline:none;
  color:var(--text);
  background:rgba(255,255,255,.075);
  border:1px solid var(--line);
  border-radius:16px;
  padding:.95rem 1rem;
}

textarea.input {
  min-height:110px;
  resize:vertical;
}

.input:hover {
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.22);
}

.input:focus {
  border-color:rgba(29,185,84,.7);
  box-shadow:0 0 0 4px rgba(29,185,84,.1);
}

.form-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  color:var(--muted);
}

.link {
  color:var(--green2);
  font-weight:850;
}

.link:hover {
  color:#ffffff;
  text-shadow:0 0 18px rgba(115,255,157,.5);
}

.alert {
  display:none;
  padding:.9rem 1rem;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.08);
  line-height:1.5;
}

.alert.show {
  display:block;
}

.alert.success {
  border-color:rgba(29,185,84,.45);
  background:rgba(29,185,84,.11);
}

.alert.error {
  border-color:rgba(255,77,109,.45);
  background:rgba(255,77,109,.11);
}

.app-shell {
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  min-height:100vh;
}

.sidebar {
  position:sticky;
  top:0;
  height:100vh;
  padding:1.1rem;
  border-right:1px solid var(--line);
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}

.side-links {
  display:grid;
  gap:.35rem;
  margin-top:1.2rem;
}

.side-links a {
  padding:.75rem .85rem;
  border-radius:16px;
  color:var(--muted);
  font-weight:720;
  border:1px solid transparent;
}

.side-links a:hover,
.side-links a.active {
  background:rgba(255,255,255,.1);
  color:var(--text);
  border-color:rgba(255,255,255,.18);
  transform:translateX(4px);
}

.main {
  min-width:0;
}

.topbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.1rem 1.4rem;
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
  position:sticky;
  top:0;
  z-index:10;
}

.page {
  padding:1.5rem;
  max-width:1180px;
  margin:0 auto;
}

.page-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  margin:1rem 0 1.3rem;
}

.page-head h1 {
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:.95;
  margin:.55rem 0;
}

.dash-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:1rem;
}

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

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

.table-wrap {
  overflow:auto;
}

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

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

.table th {
  font-size:.84rem;
  color:var(--dim);
  font-weight:850;
}

.table td {
  color:var(--muted);
}

.badge {
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.42rem .62rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:900;
  background:rgba(29,185,84,.13);
  color:var(--green2);
}

.badge.review {
  background:rgba(255,184,107,.14);
  color:#ffd5a1;
}

.badge.draft {
  background:rgba(255,255,255,.08);
  color:#d5d5e8;
}

.badge.rejected {
  background:rgba(255,77,109,.14);
  color:#ffb5c1;
}

.badge.live {
  background:rgba(29,185,84,.14);
  color:#87ffae;
}

.badge.approved {
  background:rgba(106,169,255,.14);
  color:#b7d5ff;
}

.release-card {
  display:grid;
  grid-template-columns:76px 1fr auto;
  gap:1rem;
  align-items:center;
  padding:1rem;
  border-bottom:1px solid var(--line);
}

.release-card:hover {
  background:rgba(255,255,255,.06);
  transform:translateY(-2px);
}

.thumb {
  width:76px;
  height:76px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--green),var(--purple),var(--pink));
  object-fit:cover;
}

.store-list {
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}

.store-chip {
  border:1px solid var(--line);
  background:rgba(255,255,255,.065);
  border-radius:999px;
  padding:.52rem .72rem;
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  cursor:pointer;
  user-select:none;
}

.store-chip:hover {
  color:var(--text);
  border-color:rgba(115,255,157,.28);
  background:rgba(29,185,84,.09);
  transform:translateY(-1px);
}

.store-chip input {
  accent-color:var(--green);
}

.upload-box {
  min-height:220px;
  display:grid;
  place-items:center;
  text-align:center;
  border:1px dashed rgba(255,255,255,.28);
  border-radius:24px;
  background:rgba(255,255,255,.045);
  color:var(--muted);
  padding:1rem;
}

.bars {
  display:grid;
  gap:.75rem;
}

.bar-row {
  display:grid;
  grid-template-columns:110px 1fr 90px;
  gap:.8rem;
  align-items:center;
  color:var(--muted);
}

.bar {
  height:13px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}

.bar span {
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--green),var(--green2));
}

.footer-note {
  color:var(--dim);
  font-size:.9rem;
  line-height:1.65;
}

.mobile-menu {
  display:none;
}

@media(max-width:980px) {
  .hero,
  .auth-shell,
  .dash-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns:1fr;
  }

  .grid-4,
  .stats {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .player {
    transform:none;
  }

  .auth-art {
    min-height:330px;
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .app-shell {
    grid-template-columns:1fr;
  }

  .sidebar {
    display:none;
  }

  .mobile-menu {
    display:flex;
  }

  .nav-links {
    display:none;
  }
}

@media(max-width:620px) {
  .hero h1 {
    font-size:3.35rem;
  }

  .cover-art {
    min-height:310px;
  }

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

  .page {
    padding:1rem;
  }

  .page-head {
    flex-direction:column;
  }

  .release-card {
    grid-template-columns:62px 1fr;
  }

  .release-card .actions {
    grid-column:1/-1;
  }

  .actions .hide-sm {
    display:none;
  }
}
