/* ══════════════════════════════════════════
   NJEM — Artist Website Styles
   ══════════════════════════════════════════ */

/* ── Custom Font ── */
@font-face {
  font-family: 'Homoarak';
  src: url('Fonts/HOMOARAK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Color Palette ── */
:root {
  --black:       #060608;
  --deep:        #0c0c10;
  --surface:     #111118;
  --card:        #16161f;
  --border:      rgba(255,255,255,0.07);
  --cyan:        #00e5ff;
  --purple:      #8b5cf6;
  --pink:        #e040fb;
  --text:        #f0f0f8;
  --muted:       #8888aa;
  --glow-cyan:   0 0 30px rgba(0,229,255,0.35), 0 0 60px rgba(0,229,255,0.12);
  --glow-purple: 0 0 30px rgba(139,92,246,0.4),  0 0 60px rgba(139,92,246,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Hide native cursor everywhere — custom cursor is used instead */
*, *::before, *::after { cursor: none !important; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Homoarak', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ──
   FIX: cursor no longer uses top/left positioning.
   It starts off-screen via transform and JS moves it
   exclusively via transform: translate(x, y).
   No CSS top/left means no position-vs-transform conflict.
   Colours are hardcoded (not CSS vars) to avoid any
   var() resolution timing issues at paint time.        */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #00e5ff;       /* hardcoded cyan — no var() */
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transform: translate(-200px, -200px);  /* starts off-screen */
  transition: width 0.12s ease, height 0.12s ease, background 0.12s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(0, 229, 255, 0.55);  /* hardcoded */
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transform: translate(-200px, -200px);  /* starts off-screen */
  transition: width 0.18s ease, height 0.18s ease;
}

/* Grow ring slightly on hoverable elements */
a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring { width: 46px; height: 46px; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}
nav.scrolled {
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img {
  height: 48px;        /* controls the logo height — adjust to taste */
  width: auto;         /* keeps the aspect ratio correct */
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Homoarak', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover {opacity: 0.75;}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ── Background Video ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* Dark overlay — keeps hero text readable over any footage.
   Tweak the 0.55 opacity values to show more/less video:
   0.35 = brighter video  |  0.75 = very dark/safe for text  */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6,6,8,0.55) 0%,
      rgba(6,6,8,0.40) 55%,
      rgba(6,6,8,0.90) 100%
    ),
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,92,246,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(0,229,255,0.07) 0%, transparent 60%);
}

/* Fallback gradient shown while video loads */
.hero-video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: /* This line of code will remove the background */
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,92,246,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(0,229,255,0.1) 0%, transparent 60%),
    var(--black);
  z-index: -1;
}

/* Grid, grain, orbs stack above the video */
.grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite alternate;
}
@keyframes gridPulse {
  from { opacity: 0.4; } to { opacity: 0.8; }
}
.scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(
    transparent 0px, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
  opacity: 0.3;
}
.grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grainAnim 0.4s steps(1) infinite;
}
@keyframes grainAnim {
  0%,100%{transform:translate(0,0)} 10%{transform:translate(-1%,-1%)} 20%{transform:translate(1%,1%)}
  30%{transform:translate(-1%,1%)} 40%{transform:translate(1%,-1%)} 50%{transform:translate(-1%,0)}
  60%{transform:translate(1%,0)} 70%{transform:translate(0,-1%)} 80%{transform:translate(0,1%)}
  90%{transform:translate(-1%,-1%)}
}
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); z-index: 1;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-1 { width: 400px; height: 400px; background: rgba(139,92,246,0.1);  top: 10%; right: 5%; }
.orb-2 { width: 300px; height: 300px; background: rgba(0,229,255,0.06);  bottom: 15%; left: 5%; animation-delay: -4s; }
.orb-3 { width: 200px; height: 200px; background: rgba(224,64,251,0.06); top: 50%; left: 45%; animation-delay: -8s; }
@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-30px) scale(1.05); }
}

/* ════════════════════════════════════════════
   AUDIO PLAYER BAR
   Fixed to the bottom of the screen.
   Starts hidden (transform: translateY(100%))
   and slides up when JS adds .visible.
   ════════════════════════════════════════════ */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
 
  /* Dark glass background */
  background: rgba(6, 6, 8, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
 
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
 
  /* Hidden below screen until a track is played */
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
 
/* JS adds this class to slide the bar up */
.player-bar.visible {
  transform: translateY(0);
}
 
/* ── Track info (left side) ── */
.player-info {
  min-width: 160px;
  max-width: 220px;
  overflow: hidden;
}
.player-track-name {
  font-family: 'Homoarak', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-track-meta {
  font-family: 'Homoarak', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
/* ── Control buttons (centre) ── */
.player-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.player-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.player-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
/* Play/pause is slightly larger */
.player-btn--play {
  width: 44px; height: 44px;
  font-size: 0.75rem;
  border-color: rgba(0, 229, 255, 0.4);
  color: var(--cyan);
}
.player-btn--play:hover {
  background: var(--cyan);
  color: #000;
}
 
/* ── Progress bar (takes remaining width) ── */
.player-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.player-time {
  font-family: 'Homoarak', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 32px;
}
 
/* Range input — progress bar */
.player-progress {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  position: relative;
}
.player-progress::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--cyan) 0%,
    var(--cyan) calc(var(--progress, 0) * 1%),
    rgba(255,255,255,0.08) calc(var(--progress, 0) * 1%),
    rgba(255,255,255,0.08) 100%
  );
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: -4.5px;
  box-shadow: 0 0 6px rgba(0,229,255,0.6);
  cursor: pointer;
}
.player-progress::-moz-range-track {
  height: 3px; border-radius: 2px; background: rgba(255,255,255,0.08);
}
.player-progress::-moz-range-thumb {
  border: none; width:12px; height:12px; border-radius:50%; background:var(--cyan); cursor:pointer;
}
.player-progress::-moz-range-progress { height:3px; border-radius:2px; background:var(--cyan); }
 
/* ── Volume (right side) ── */
.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.player-vol-icon {
  font-size: 2.3rem;
  color: var(--muted);
}
.player-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.2s;
}
.player-volume:hover::-webkit-slider-thumb { background: var(--cyan); }
.player-volume::-moz-range-thumb { border:none; width:10px; height:10px; border-radius:50%; background:var(--muted); cursor:pointer; }
 

/* Hero text content */
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem;
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: 'Homoarak', monospace;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--cyan);
}
.hero-title {
  font-family: 'Homoarak', monospace;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(0,229,255,0.2), 0 2px 20px rgba(0,0,0,0.8);
}
.hero-title::before, .hero-title::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; right: 0;
  font-family: 'Homoarak', monospace; font-weight: 900;
}
.hero-title::before {
  color: var(--cyan);
  animation: glitch1 3.5s infinite;
  clip-path: polygon(0 0,100% 0,100% 35%,0 35%);
}
.hero-title::after {
  color: var(--purple);
  animation: glitch2 3.5s infinite;
  clip-path: polygon(0 65%,100% 65%,100% 100%,0 100%);
}
@keyframes glitch1 {
  0%,92%,100%{transform:translate(0);opacity:0}
  93%{transform:translate(-3px,1px);opacity:1}
  94%{transform:translate(3px,-1px);opacity:1}
  95%,96%{transform:translate(-2px,0);opacity:1}
  97%{transform:translate(0);opacity:0}
}
@keyframes glitch2 {
  0%,92%,100%{transform:translate(0);opacity:0}
  93%{transform:translate(3px,1px);opacity:1}
  94%{transform:translate(-3px,-1px);opacity:1}
  95%,96%{transform:translate(2px,0);opacity:1}
  97%{transform:translate(0);opacity:0}
}
.hero-tagline {
  margin-top: 1.5rem;
  font-size: 1rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
  font-family: 'Homoarak', sans-serif; font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-cta {
  margin-top: 3rem;
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: 'Homoarak', monospace;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; cursor: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--cyan); color: #000;
  border: 1px solid var(--cyan); font-weight: 700;
}
.btn-primary:hover { box-shadow: var(--glow-cyan); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--purple); color: var(--purple);
  box-shadow: var(--glow-purple); transform: translateY(-2px);
}
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'Homoarak', monospace; font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator .line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(6px)}
}

/* ── Shared Section Styles ── */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.section-label {
  font-family: 'Homoarak', monospace;
  font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--cyan);
}
.section-title {
  font-family: 'Homoarak', monospace;
  font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1; text-transform: uppercase;
  letter-spacing: -0.02em; margin-bottom: 4rem;
}
.section-title .accent { color: var(--cyan); }

/* ── Featured Release Banner ── */
.featured-release {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 3rem; align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative; overflow: hidden;
}
.featured-release::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--cyan), var(--purple));
}
.featured-art {
  aspect-ratio: 1;
  border: 1px solid rgba(0,229,255,0.18);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,229,255,0.08), 0 0 80px rgba(139,92,246,0.06);
}
.featured-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.featured-art:hover img { transform: scale(1.03); }
.featured-art-label {
  position: absolute; top: 0.8rem; right: 0.8rem;
  font-family: 'Homoarak', monospace;
  font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2); padding: 0.2rem 0.6rem; border-radius: 2px;
}
.featured-tag {
  font-family: 'Homoarak', monospace; font-size: 0.62rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--purple);
  margin-bottom: 0.6rem;
}
.featured-title {
  font-family: 'Homoarak', monospace; font-weight: 900; font-size: 1.5rem;
  color: var(--text); margin-bottom: 0.8rem;
}
.featured-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.featured-meta {
  display: flex; gap: 0.8rem;
  font-family: 'Homoarak', monospace; font-size: 0.65rem;
  color: var(--muted); letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.featured-actions { display: flex; gap: 0.8rem; }

/* ── Music Section ── */
#music { background: var(--deep); }
.tracks-grid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.track {
  background: var(--card);
  display: grid; grid-template-columns: 52px 1fr auto;
  align-items: center; gap: 1.5rem; padding: 1.4rem 1.8rem;
  /* cursor: none; transition: background 0.2s ease; */
  position: relative; overflow: hidden;
}
.track::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--cyan);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s ease;
}
.track:hover { background: rgba(0,229,255,0.04); }
.track:hover::before { transform: scaleY(1); }
.track-num-wrap {
  width: 48px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.track-num {
  font-family: 'Homoarak', monospace; font-size: 0.8rem; color: var(--muted);
  position: absolute; transition: opacity 0.15s ease;
}
.track-play {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 0.6rem;
  position: absolute; opacity: 0; transition: opacity 0.15s ease;
}
.track:hover .track-num  { opacity: 0; }
.track:hover .track-play { opacity: 1; }
.track-name { font-family: 'Homoarak', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.track-meta { font-family: 'Homoarak', monospace; font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }
.track-right { text-align: right; }
.track-duration { font-family: 'Homoarak', monospace; font-size: 0.75rem; color: var(--muted); }
.track-badge {
  display: inline-block; margin-top: 0.3rem;
  padding: 0.15rem 0.6rem;
  font-family: 'Homoarak', monospace; font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(0,229,255,0.3); color: var(--cyan); border-radius: 2px;
}
.platforms { margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.platform-btn {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.4rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 2px;
  color: var(--muted); font-family: 'Homoarak', sans-serif; font-size: 0.8rem;
  text-decoration: none; cursor: none; transition: all 0.2s ease;
}
.platform-btn:hover { border-color: var(--purple); color: var(--purple); }
.platform-icon { font-size: 1rem; }

/* ── About Section ── */
#about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.img-card {
  width: 100%; aspect-ratio: 3/4; background: var(--card);
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden; position: relative;
}
.img-card-2 {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; aspect-ratio: 1;
  background: var(--deep); border: 1px solid rgba(0,229,255,0.15);
  border-radius: 2px; overflow: hidden; box-shadow: var(--glow-cyan);
}
.img-card img, .img-card-2 img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.img-placeholder-main {
  background: linear-gradient(145deg, rgba(139,92,246,0.18) 0%, rgba(0,229,255,0.06) 50%, rgba(224,64,251,0.08) 100%);
}
.img-placeholder-secondary {
  background: linear-gradient(145deg, rgba(0,229,255,0.12) 0%, rgba(139,92,246,0.1) 100%);
}
.img-ph-inner { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 1; }
.img-ph-icon { color: var(--muted); opacity: 0.4; }
.img-ph-label { font-family: 'Homoarak', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.img-ph-hint  { font-family: 'Homoarak', monospace; font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(136,136,170,0.4); }
.img-ph-corner { position: absolute; width: 20px; height: 20px; border-color: rgba(0,229,255,0.25); border-style: solid; }
.img-ph-corner-tl { top: 1rem; left: 1rem; border-width: 1px 0 0 1px; }
.img-ph-corner-br { bottom: 1rem; right: 1rem; border-width: 0 1px 1px 0; }
.about-bio { font-size: 1.05rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; }
.about-bio strong { color: var(--text); font-weight: 600; }
.about-stats {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 2px;
}
.stat { background: var(--card); padding: 1.5rem 1rem; text-align: center; }
.stat-number { font-family: 'Homoarak', monospace; font-weight: 900; font-size: 1.8rem; color: var(--cyan); display: block; }
.stat-label  { font-family: 'Homoarak', monospace; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; display: block; }

/* ── Media Section ── */
#media { background: var(--deep); }
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 320px; gap: 4px; }

/* ── 2-video media layout ── */
.media-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.media-video-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 0 30px rgba(0,229,255,0.04);
}
.media-video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.media-item { background: var(--card); border: 1px solid var(--border); position: relative; overflow: hidden; cursor: none; }
.media-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.ph-blue   { background: linear-gradient(135deg, rgba(0,100,180,0.35)  0%, rgba(0,229,255,0.08) 100%); }
.ph-purple { background: linear-gradient(135deg, rgba(100,40,200,0.35) 0%, rgba(139,92,246,0.1) 100%); }
.ph-teal   { background: linear-gradient(135deg, rgba(0,160,140,0.3)   0%, rgba(0,229,255,0.06) 100%); }
.ph-pink   { background: linear-gradient(135deg, rgba(180,0,120,0.3)   0%, rgba(224,64,251,0.08) 100%); }
.ph-orange { background: linear-gradient(135deg, rgba(180,80,0,0.3)    0%, rgba(255,140,0,0.08) 100%); }
.ph-cyan   { background: linear-gradient(135deg, rgba(0,150,180,0.3)   0%, rgba(0,229,255,0.06) 100%); }
.media-item:hover .media-placeholder { filter: brightness(1.3); }
.media-ph-content {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  font-family: 'Homoarak', monospace; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,240,248,0.5);
}
.media-overlay {
  position: absolute; inset: 0; background: rgba(6,6,8,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.media-item:hover .media-overlay { opacity: 1; }
.media-overlay-icon {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--cyan); display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 1.1rem; box-shadow: var(--glow-cyan);
  transition: transform 0.2s ease;
}
.media-item:hover .media-overlay-icon { transform: scale(1.1); }

/* ── Services Section ── */
#services { background: var(--black); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.service-card { background: var(--card); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.3s ease; }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--cyan), var(--purple));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { background: rgba(0,229,255,0.03); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 1.6rem; margin-bottom: 1.5rem; display: block; filter: grayscale(1) brightness(2); transition: filter 0.3s ease; }
.service-card:hover .service-icon { filter: none; }
.service-title { font-family: 'Homoarak', monospace; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.service-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.service-list  { list-style: none; padding: 0; border-top: 1px solid var(--border); padding-top: 1rem; }
.service-list li { font-family: 'Homoarak', monospace; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--muted); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.service-list li::before { content: '— '; color: var(--cyan); }

/* ── Contact Section ── */
#contact { background: var(--deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact-item { margin-bottom: 2rem; }
.contact-item-label { font-family: 'Homoarak', monospace; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.4rem; display: block; }
.contact-item-value { font-size: 0.95rem; color: var(--text); }
.contact-item-value a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--cyan); }
.socials { display: flex; gap: 0.8rem; margin-top: 2.5rem; }
.social-link { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; cursor: none; transition: all 0.2s ease; }
.social-link:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); }
.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-family: 'Homoarak', monospace; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
input, textarea { width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: 2px; padding: 0.85rem 1.1rem; font-family: 'Homoarak', sans-serif; font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; resize: none; }
input::placeholder, textarea::placeholder { color: rgba(136,136,170,0.4); }
input:focus, textarea:focus { border-color: rgba(0,229,255,0.4); box-shadow: 0 0 0 3px rgba(0,229,255,0.07); }
textarea { min-height: 130px; }
.btn-submit { width: 100%; background: transparent; border: 1px solid var(--cyan); color: var(--cyan); padding: 1rem 2rem; font-family: 'Homoarak', monospace; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 2px; cursor: none; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn-submit::before { content: ''; position: absolute; top: 0; left: -100%; bottom: 0; width: 100%; background: var(--cyan); transition: left 0.3s ease; z-index: -1; }
.btn-submit:hover { color: #000; box-shadow: var(--glow-cyan); }
.btn-submit:hover::before { left: 0; }

/* ── Footer ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'Homoarak', monospace; font-weight: 900; font-size: 1.1rem; letter-spacing: 0.2em; color: var(--text); text-transform: uppercase; }
.footer-logo span { color: var(--cyan); }
.footer-copy { font-family: 'Homoarak', monospace; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-family: 'Homoarak', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--cyan); }

/* ── Reveal Animation ── */
.reveal {
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; font-family: 'Homoarak', monospace; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--muted); cursor: none; transition: color 0.2s; }
.lightbox-close:hover { color: var(--cyan); }
.lightbox-content { max-width: 800px; width: 90%; background: var(--card); border: 1px solid var(--border); padding: 3rem; border-radius: 4px; text-align: center; }
.lightbox-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(0,229,255,0.08)); display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.lightbox-ph-inner { display: flex; flex-direction: column; align-items: center; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .featured-release { grid-template-columns: 1fr; }
  .featured-art { max-width: 160px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .media-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .media-video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .hero-video { object-fit: cover; }
}

/* ── PLAYER BAR ── */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(5, 5, 10, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  height: 70px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.player-bar.visible { transform: translateY(0); }

.player-info {
  min-width: 180px;
  flex-shrink: 0;
}

.player-track-name {
  font-family: 'Homoarak', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.player-track-meta {
  font-family: 'Homoarak', monospace;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.player-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
  line-height: 1;
}

.player-btn:hover { color: #fff; }

.player-btn--play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent, #a259ff);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn--play:hover { opacity: 0.85; }

.player-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.player-time {
  font-family: 'Homoarak', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  width: 32px;
}

.player-progress,
.player-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  outline: none;
  cursor: pointer;
}

.player-progress { flex: 1; }
.player-volume   { width: 80px; flex-shrink: 0; }

.player-progress::-webkit-slider-thumb,
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent, #a259ff);
  cursor: pointer;
}

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

.player-vol-icon {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* Active track highlight */
.track.playing .track-name { color: var(--accent, #a259ff); }
.track.playing .track-play { color: var(--accent, #a259ff); }

/* Push footer up so player bar doesn't cover it */
footer { padding-bottom: 80px; }

@media (max-width: 600px) {
  .player-bar { gap: 1rem; padding: 0 1rem; }
  .player-volume-wrap { display: none; }
  .player-info { min-width: 120px; }
  .player-track-name { max-width: 120px; }
}