/* ============================================================
   EDIT LAB — Design System
   Dark Neon — Ultra Modern
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:           #06060f;
  --bg2:          #0a0a18;
  --card:         rgba(255,255,255,0.04);
  --card-hover:   rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-glow:  rgba(255,45,120,0.35);

  --pink:         #ff2d78;
  --purple:       #7b2fff;
  --cyan:         #00e5ff;
  --green:        #00ff9d;
  --yellow:       #ffe600;

  --grad-main:    linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --grad-alt:     linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  --grad-warm:    linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);
  --grad-text:    linear-gradient(135deg, #ff2d78 0%, #a855f7 50%, #00e5ff 100%);

  --text:         #f0f0fa;
  --text-muted:   #6b6b9a;
  --text-dim:     #9090b8;

  --radius:       14px;
  --radius-sm:    8px;
  --radius-pill:  999px;

  --shadow-card:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 30px rgba(255,45,120,0.25);
  --shadow-cyan:  0 0 30px rgba(0,229,255,0.2);

  --nav-h:        72px;
  --player-h:     80px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: var(--player-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── Background orbs ────────────────────────────────────── */
.bg-orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-orbs span {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12;
  animation: orbFloat 20s infinite ease-in-out alternate;
}
.bg-orbs span:nth-child(1) { width: 600px; height: 600px; background: var(--pink); top: -200px; left: -200px; animation-delay: 0s; }
.bg-orbs span:nth-child(2) { width: 500px; height: 500px; background: var(--purple); bottom: -150px; right: -100px; animation-delay: -7s; }
.bg-orbs span:nth-child(3) { width: 400px; height: 400px; background: var(--cyan); top: 40%; left: 40%; animation-delay: -14s; }

@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-60px) scale(1.1); }
  100% { transform: translate(-30px,40px) scale(0.95); }
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo .logo-text span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--grad-main); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 1px solid transparent; transition: all .2s; white-space: nowrap;
}
.btn-primary {
  background: var(--grad-main); color: #fff;
  box-shadow: 0 4px 20px rgba(255,45,120,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,45,120,0.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-ghost { background: transparent; color: var(--text-dim); border: none; padding: 10px 14px; }
.btn-ghost:hover { color: var(--text); background: var(--card); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-cyan  { background: linear-gradient(135deg,var(--cyan),var(--purple)); color: #000; box-shadow: 0 4px 20px rgba(0,229,255,0.3); }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,255,0.5); }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--radius-pill);
  background: rgba(255,45,120,0.12); border: 1px solid rgba(255,45,120,0.3);
  font-size: 12px; font-weight: 600; color: var(--pink); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -2px;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: titleIn .8s ease both;
}
@keyframes titleIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--text-dim);
  max-width: 540px; margin: 0 auto 40px; line-height: 1.6;
  animation: titleIn .8s .15s ease both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: titleIn .8s .3s ease both;
}
.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 64px; animation: titleIn .8s .45s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Space Mono', monospace; font-size: 32px; font-weight: 700;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Vinyl / disc decoration */
.hero-vinyl {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px; opacity: 0.15;
  border-radius: 50%; border: 2px solid var(--border);
  background: repeating-radial-gradient(circle, transparent 0, transparent 14px, rgba(255,45,120,0.08) 15px);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-vinyl::before {
  content: ''; position: absolute; inset: 30px;
  border-radius: 50%; border: 1px solid rgba(255,45,120,0.2);
  background: radial-gradient(circle, rgba(255,45,120,0.1) 0%, transparent 70%);
}

/* ── Section ─────────────────────────────────────────────── */
.section { position: relative; z-index: 1; padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; gap: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 36px); font-weight: 700;
}
.section-title span {
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Edit Cards ──────────────────────────────────────────── */
.grid-edits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.edit-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s; cursor: pointer; position: relative;
  display: flex; flex-direction: column;
}
.edit-card:hover {
  border-color: rgba(255,45,120,0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.edit-card__cover {
  position: relative; aspect-ratio: 1/1; overflow: hidden; background: #111;
}
.edit-card__cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.edit-card:hover .edit-card__cover img { transform: scale(1.07); }

.edit-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0; transition: opacity .25s;
}
.edit-card:hover .edit-card__play { opacity: 1; }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(255,45,120,0.6);
  transition: transform .2s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }

.edit-card__price {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.price-free { background: var(--green); color: #000; }
.price-paid { background: var(--grad-main); color: #fff; }

.edit-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.edit-card__genre {
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 6px;
}
.edit-card__title {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  line-height: 1.3; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.edit-card__dj {
  font-size: 12px; color: var(--text-muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.edit-card__dj img {
  width: 18px; height: 18px; border-radius: 50%; object-fit: cover;
}
.edit-card__meta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--text-muted);
}
.edit-card__stat { display: flex; align-items: center; gap: 4px; }
.edit-card__stat svg { width: 12px; height: 12px; opacity: .6; }

/* ── Featured (large card) ───────────────────────────────── */
.grid-featured {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.edit-card-lg {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: all .3s; display: flex; flex-direction: column;
}
.edit-card-lg:hover {
  border-color: rgba(123,47,255,0.5);
  box-shadow: 0 0 40px rgba(123,47,255,0.2);
  transform: translateY(-5px);
}
.edit-card-lg__cover {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.edit-card-lg__cover img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.edit-card-lg:hover .edit-card-lg__cover img { transform: scale(1.05); }

.edit-card-lg__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
}
.edit-card-lg__info { width: 100%; }
.edit-card-lg__title {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.edit-card-lg__body { padding: 16px 20px 20px; display: flex; align-items: center; justify-content: space-between; }
.edit-card-lg__dj { display: flex; align-items: center; gap: 10px; }
.edit-card-lg__dj img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--purple); }

/* ── Genre pills ─────────────────────────────────────────── */
.genre-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.genre-pill {
  padding: 7px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.genre-pill:hover, .genre-pill.active {
  background: var(--grad-main); border-color: transparent; color: #fff;
  box-shadow: 0 4px 16px rgba(255,45,120,0.3);
}

/* ── Search bar ──────────────────────────────────────────── */
.search-wrap {
  position: relative; max-width: 600px; margin: 0 auto 48px;
}
.search-input {
  width: 100%; padding: 16px 24px 16px 56px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-pill); color: var(--text);
  font-size: 15px; outline: none; transition: border-color .2s;
}
.search-input:focus { border-color: var(--pink); box-shadow: 0 0 20px rgba(255,45,120,0.15); }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 20px; height: 20px; }

/* ── Filter bar ──────────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-select {
  padding: 9px 36px 9px 16px; border-radius: var(--radius-pill);
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 13px; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b9a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.filter-select:focus { outline: none; border-color: var(--pink); }

/* ── DJ Profile card ─────────────────────────────────────── */
.dj-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .25s; text-align: center;
}
.dj-card:hover { border-color: var(--purple); box-shadow: 0 0 24px rgba(123,47,255,0.2); transform: translateY(-3px); }
.dj-card__cover { height: 100px; background: var(--grad-main); position: relative; }
.dj-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--bg); object-fit: cover;
  position: absolute; left: 50%; bottom: -36px; transform: translateX(-50%);
}
.dj-card__body { padding: 48px 20px 20px; }
.dj-card__name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.dj-card__username { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.dj-card__stats { display: flex; justify-content: center; gap: 24px; font-size: 12px; color: var(--text-muted); }
.dj-card__stats strong { display: block; font-size: 18px; color: var(--text); font-family: 'Syne', sans-serif; }

/* ── Login / Auth ────────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; position: relative; z-index: 1;
}
.auth-box {
  width: 100%; max-width: 440px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  backdrop-filter: blur(20px);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-icon { width: 52px; height: 52px; font-size: 24px; margin: 0 auto 12px; }
.auth-title { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; }
.auth-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.auth-tab {
  flex: 1; text-align: center; padding: 12px;
  font-size: 14px; font-weight: 600; cursor: pointer; color: var(--text-muted);
  border-bottom: 2px solid transparent; transition: all .2s; margin-bottom: -1px;
}
.auth-tab.active { color: var(--pink); border-color: var(--pink); }

.form-group { margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-dim); margin-bottom: 8px; display: block; letter-spacing: 0.5px; }
.form-input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 14px; outline: none; transition: all .2s;
}
.form-input:focus { border-color: var(--pink); background: rgba(255,45,120,0.05); box-shadow: 0 0 0 3px rgba(255,45,120,0.1); }
.form-input::placeholder { color: var(--text-muted); }
.form-select { appearance: none; cursor: pointer; }
.form-err { font-size: 12px; color: #ff5577; margin-top: 16px; padding: 10px 14px; background: rgba(255,85,119,0.1); border-radius: var(--radius-sm); border: 1px solid rgba(255,85,119,0.2); }
.form-ok { font-size: 12px; color: var(--green); margin-top: 16px; padding: 10px 14px; background: rgba(0,255,157,0.08); border-radius: var(--radius-sm); border: 1px solid rgba(0,255,157,0.2); }

/* ── Dashboard ───────────────────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--nav-h)); }
.dash-side {
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 32px 0; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.dash-user { padding: 0 24px 32px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.dash-user img { width: 52px; height: 52px; border-radius: 50%; margin-bottom: 12px; border: 2px solid var(--purple); }
.dash-user .name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
.dash-user .handle { font-size: 12px; color: var(--text-muted); }
.dash-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: all .2s;
}
.dash-nav a svg { width: 18px; height: 18px; }
.dash-nav a:hover { color: var(--text); background: var(--card); }
.dash-nav a.active { color: var(--pink); background: rgba(255,45,120,0.08); border-right: 2px solid var(--pink); }

.dash-main { padding: 40px; overflow-y: auto; }
.dash-header { margin-bottom: 36px; }
.dash-title { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; }
.dash-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 40px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; transition: all .25s;
}
.stat-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.stat-card__icon { font-size: 24px; margin-bottom: 12px; }
.stat-card__val { font-family: 'Space Mono', monospace; font-size: 28px; font-weight: 700; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card__lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Upload form */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 48px 24px; text-align: center; cursor: pointer;
  transition: all .25s; margin-bottom: 24px;
}
.upload-zone:hover, .upload-zone.drag { border-color: var(--pink); background: rgba(255,45,120,0.04); }
.upload-zone svg { width: 48px; height: 48px; color: var(--text-muted); margin-bottom: 12px; }
.upload-zone p { font-size: 14px; color: var(--text-muted); }
.upload-zone strong { color: var(--pink); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.price-toggle { display: flex; gap: 12px; }
.price-opt {
  flex: 1; padding: 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); cursor: pointer; text-align: center;
  transition: all .2s; background: var(--card);
}
.price-opt.selected { border-color: var(--pink); background: rgba(255,45,120,0.1); }
.price-opt input { display: none; }
.price-opt .price-icon { font-size: 24px; margin-bottom: 4px; }
.price-opt .price-lbl { font-size: 13px; font-weight: 600; }

/* My edits table */
.edits-table { width: 100%; border-collapse: collapse; }
.edits-table th { text-align: left; padding: 12px 16px; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
.edits-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.edits-table tr:last-child td { border-bottom: none; }
.edits-table tr:hover td { background: var(--card); }
.badge { display: inline-flex; padding: 3px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600; }
.badge-free { background: rgba(0,255,157,0.15); color: var(--green); }
.badge-paid { background: rgba(255,45,120,0.15); color: var(--pink); }
.badge-hidden { background: rgba(255,255,255,0.08); color: var(--text-muted); }

/* ── Audio Player (sticky bottom) ───────────────────────── */
.player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  height: var(--player-h);
  background: rgba(6,6,15,0.95); backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px; gap: 20px;
}
.player__track { display: flex; align-items: center; gap: 14px; min-width: 200px; }
.player__cover { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.player__info .title { font-size: 13px; font-weight: 600; }
.player__info .dj   { font-size: 11px; color: var(--text-muted); }

.player__controls { display: flex; align-items: center; gap: 12px; flex: 1; flex-direction: column; }
.player__btns { display: flex; align-items: center; gap: 10px; }
.player__btn { background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 6px; border-radius: 50%; transition: all .2s; }
.player__btn:hover { color: var(--text); background: var(--card); }
.player__btn.play { width: 40px; height: 40px; background: var(--grad-main); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.player__btn.play:hover { box-shadow: var(--shadow-glow); transform: scale(1.05); }
.player__btn svg { width: 18px; height: 18px; }
.player__btn.play svg { width: 16px; height: 16px; }

.player__progress { display: flex; align-items: center; gap: 10px; width: 100%; }
.player__time { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--text-muted); white-space: nowrap; }
.progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 4px; cursor: pointer; position: relative; }
.progress-fill { height: 100%; background: var(--grad-main); border-radius: 4px; width: 0%; transition: width .1s linear; pointer-events: none; }
.progress-bar:hover .progress-fill { box-shadow: 0 0 8px var(--pink); }

.player__volume { display: flex; align-items: center; gap: 8px; min-width: 120px; }
.vol-slider { flex: 1; height: 4px; border-radius: 4px; cursor: pointer; accent-color: var(--pink); }

/* ── Edit detail page ────────────────────────────────────── */
.edit-page { max-width: 900px; margin: 0 auto; padding: 60px 24px; position: relative; z-index: 1; }
.edit-cover-wrap { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; max-width: 360px; }
.edit-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
.edit-cover-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,45,120,0.2), rgba(123,47,255,0.2));
}
.edit-detail-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .edit-detail-grid { grid-template-columns: 1fr; } }
.edit-meta { display: flex; flex-direction: column; gap: 16px; }
.edit-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { padding: 5px 14px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; border: 1px solid var(--border); color: var(--text-dim); }
.edit-price-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }

/* ── Waveform ────────────────────────────────────────────── */
.waveform { height: 64px; position: relative; overflow: hidden; }
#waveform-canvas { width: 100%; height: 100%; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; right: 24px; z-index: 9999;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: rgba(10,10,24,0.95); border: 1px solid var(--border);
  font-size: 13px; display: flex; align-items: center; gap: 10px;
  transform: translateY(20px); opacity: 0;
  transition: all .3s; backdrop-filter: blur(12px);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.ok  { border-color: var(--green); }
.toast.err { border-color: #ff5577; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-side { position: relative; height: auto; display: flex; overflow-x: auto; padding: 16px 0; }
  .dash-user { display: none; }
  .dash-nav { display: flex; }
  .dash-nav a { flex-direction: column; gap: 4px; font-size: 11px; padding: 8px 16px; }
  .dash-nav a.active { border-right: none; border-bottom: 2px solid var(--pink); }
}
@media (max-width: 600px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }
  .hero-vinyl { display: none; }
  .hero-stats { gap: 24px; }
  .grid-edits { grid-template-columns: 1fr 1fr; }
  .grid-featured { grid-template-columns: 1fr; }
  .player { gap: 12px; padding: 0 16px; }
  .player__volume { display: none; }
}
@media (max-width: 380px) {
  .grid-edits { grid-template-columns: 1fr; }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-gradient { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-muted { color: var(--text-muted); }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.flex { display: flex; } .items-center { align-items: center; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.hidden { display: none !important; }
.spin { animation: spin 1s linear infinite; }

/* No cover placeholder */
.cover-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(123,47,255,0.3), rgba(255,45,120,0.3));
  font-size: 40px;
}
