/* ============================================
   VEEJAY — Shared Stylesheet
   style.css
   ============================================ */

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Tokens ── */
:root {
  --black:        #000000;
  --white:        #ffffff;
  --grey-dim:     rgba(255,255,255,0.35);
  --grey-faint:   rgba(255,255,255,0.2);
  --grey-ghost:   rgba(255,255,255,0.08);
  --border:       rgba(255,255,255,0.15);
  --border-hover: rgba(255,85,0,0.4);
  --sc-orange:    #ff5500;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-height:   72px;
}

/* ── Base ── */
html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Navigation ── */
.vj-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.vj-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
}

.vj-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.vj-nav-links li {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s;
}

.vj-nav-links li:hover,
.vj-nav-links li.active {
  color: rgba(255,255,255,0.85);
}

.vj-social {
  display: flex;
  gap: 18px;
}

.vj-social a,
.vj-social span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.vj-social a:hover,
.vj-social span:hover {
  color: var(--white);
}

/* ── Background Orbs ── */
.vj-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

/* Static orbs for releases page / mobile */
.orb-static-1 {
  left: 15%; top: 40%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,40,255,0.55) 0%, rgba(160,40,255,0.15) 50%, transparent 70%);
  opacity: 0.35;
}

.orb-static-2 {
  left: 82%; top: 55%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,50,180,0.55) 0%, rgba(255,50,180,0.15) 50%, transparent 70%);
  opacity: 0.28;
}

.orb-static-3 {
  left: 50%; top: 75%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(80,80,255,0.55) 0%, rgba(80,80,255,0.15) 50%, transparent 70%);
  opacity: 0.22;
}

/* ── Page wrapper ── */
.vj-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ── CTA Button ── */
.vj-cta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  border: 0.5px solid var(--border);
  padding: 10px 28px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}

.vj-cta:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ── Divider ── */
.vj-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.05);
  margin: 2px 16px;
}

/* ── Track list (releases page) ── */
.vj-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 48px) 40px 80px;
}

.vj-page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.vj-page-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey-faint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}

.track:hover {
  background: var(--grey-ghost);
}

.track-cover {
  width: 56px;
  height: 56px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.track-cover-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 3px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--grey-dim);
  margin-top: 3px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  border: 0.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 2px;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

.sc-btn:hover {
  color: var(--sc-orange);
  border-color: var(--border-hover);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .vj-nav {
    padding: 0 20px;
  }

  .vj-content {
    padding: calc(var(--nav-height) + 32px) 20px 60px;
  }

  .vj-nav-links {
    gap: 16px;
  }

  .vj-nav-links li {
    font-size: 11px;
  }

  .track {
    padding: 12px 8px;
    gap: 14px;
  }

  .sc-btn span {
    display: none; /* hide label on mobile, keep icon */
  }
}
