/* ============================================
   NEXUS BEATZ — ULTRA PREMIUM DESIGN v6
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;800&family=Syne:wght@500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --bg-dark: #020203;
  --bg-card: rgba(10, 10, 14, 0.4);
  --bg-glass: rgba(255, 255, 255, 0.02);
  
  --accent-1: #6a11cb;
  --accent-2: #2575fc;
  --accent-3: #ff0844;
  --accent-4: #00f2fe;

  --text-main: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-mute: rgba(255, 255, 255, 0.3);

  --font-head: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(255, 255, 255, 0.15);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; cursor: none; } /* Custom cursor */
body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--text-main); color: var(--bg-dark); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px;
  background: #fff; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 10000;
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 9999;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s, border-color 0.3s;
}
body:hover .cursor-dot, body:hover .cursor-ring { opacity: 1; }
.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border-color: transparent;
  backdrop-filter: blur(2px);
}
.cursor-hover .cursor-dot { width: 0; height: 0; }

/* ============================================
   BACKGROUND EFFECTS (AURORA + NOISE + GRID)
   ============================================ */
.bg-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: 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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

.aurora-container {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  overflow: hidden; filter: blur(80px); opacity: 0.6;
}
.aurora-blob {
  position: absolute; border-radius: 50%;
  animation: float 20s infinite ease-in-out alternate;
  mix-blend-mode: screen;
}
.aurora-1 { width: 60vw; height: 60vw; top: -10vw; left: -10vw; background: radial-gradient(circle, var(--accent-1), transparent 60%); animation-delay: 0s; }
.aurora-2 { width: 50vw; height: 50vw; bottom: -10vw; right: -10vw; background: radial-gradient(circle, var(--accent-2), transparent 60%); animation-delay: -5s; }
.aurora-3 { width: 70vw; height: 70vw; top: 20vh; left: 20vw; background: radial-gradient(circle, var(--accent-3), transparent 60%); animation-delay: -10s; opacity: 0.5; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(10vw, 10vh) scale(1.2); } }

/* Cyber Grid */
.cyber-grid {
  position: fixed; bottom: 0; left: 0; width: 100%; height: 50vh;
  background: 
    linear-gradient(transparent 0%, var(--bg-dark) 80%),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  z-index: -2; pointer-events: none;
  animation: gridMove 10s linear infinite;
}
@keyframes gridMove { 0% { background-position: 0 0, 0 0, 0 0; } 100% { background-position: 0 0, 0 40px, 0 40px; } }

#particles-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5; mix-blend-mode: screen; }

/* ============================================
   NAVIGATION
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 2rem; transition: transform 0.4s var(--ease-out-expo);
}
.header__inner {
  max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  background: rgba(5, 5, 8, 0.4); backdrop-filter: blur(24px) saturate(150%);
  padding: 1rem 2rem; border-radius: 100px; border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.logo {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; text-transform: uppercase;
  text-decoration: none; color: #fff; letter-spacing: 2px;
}
.nav { display: flex; gap: 2rem; }
.nav a {
  font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase;
  text-decoration: none; color: var(--text-dim); transition: 0.3s; letter-spacing: 1px;
}
.nav a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero, .artist-hero {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 200px 2rem 5rem; min-height: 100vh;
}
.hero__badge {
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 4px; padding: 0.6rem 1.5rem; border-radius: 100px;
  background: var(--bg-glass); border: 1px solid var(--border-glow);
  margin-bottom: 2rem; display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(10px); color: #fff;
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #fff;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-head); font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800; line-height: 0.9; margin-bottom: 1.5rem;
  letter-spacing: -2px; text-transform: uppercase;
  position: relative;
}
.text-gradient {
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.text-gradient-growl { background: linear-gradient(135deg, #ff0844, #ffb199); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 30px rgba(255,8,68,0.4)); }
.text-gradient-sentie { background: linear-gradient(135deg, #00f2fe, #4facfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 30px rgba(0,242,254,0.4)); }

.hero__desc { font-size: 1.25rem; color: var(--text-dim); max-width: 600px; margin: 0 auto 3rem; font-weight: 300; }

/* Buttons */
.hero__actions { display: flex; gap: 1rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 1.2rem 2.5rem; border-radius: 100px; font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; border: none; cursor: pointer; position: relative; overflow: hidden;
  /* Magnetic logic handles transform */
}
.btn--glow {
  background: #fff; color: #000;
  box-shadow: 0 15px 35px rgba(255,255,255,0.2);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn--glow:hover { box-shadow: 0 20px 50px rgba(255,255,255,0.4); }
.btn--outline {
  background: rgba(255,255,255,0.03); color: #fff;
  border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s;
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* ============================================
   SECTIONS & LAYOUT
   ============================================ */
.section { position: relative; z-index: 1; padding: 8rem 2rem; }
.section__inner { max-width: 1400px; margin: 0 auto; }
.section__header { margin-bottom: 5rem; display: flex; flex-direction: column; align-items: flex-start; }
.section__label {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section__label::before { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.3); }
.section__title { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1; text-transform: uppercase; }

/* ============================================
   ARTIST CARDS (Ultra Glassmorphism)
   ============================================ */
.artists-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.artist-card {
  position: relative; display: block; text-decoration: none; color: inherit;
  border-radius: 24px; padding: 1px; /* for gradient border */
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transition: transform 0.5s var(--ease-out-expo);
}
.artist-card__inner {
  background: var(--bg-card); backdrop-filter: blur(40px); border-radius: 23px;
  padding: 3rem; height: 100%; position: relative; overflow: hidden;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.02), 0 20px 40px rgba(0,0,0,0.5);
}
/* Hover Glow */
.artist-card::before {
  content: ''; position: absolute; inset: -20px; z-index: -1; border-radius: 40px;
  background: radial-gradient(circle at center, var(--hover-color, rgba(255,255,255,0.2)), transparent 70%);
  opacity: 0; transition: opacity 0.5s; filter: blur(30px);
}
.artist-card.growl { --hover-color: rgba(255, 8, 68, 0.4); }
.artist-card.sentie { --hover-color: rgba(0, 242, 254, 0.4); }
.artist-card:hover { transform: translateY(-10px) scale(1.02); }
.artist-card:hover::before { opacity: 1; }

.artist-card__visual {
  width: 100%; aspect-ratio: 16/9; border-radius: 12px; margin-bottom: 2rem;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 5rem; font-weight: 800; color: rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.artist-card__visual::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card), transparent);
}
.artist-card__genre {
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-dim); margin-bottom: 0.5rem; display: block;
}
.artist-card__name { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.artist-card__desc { color: var(--text-dim); font-size: 1.1rem; font-weight: 300; }

/* ============================================
   RELEASES
   ============================================ */
.releases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.release-card {
  background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 16px;
  padding: 1.5rem; backdrop-filter: blur(20px); transition: 0.4s;
}
.release-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.release-card__cover {
  width: 100%; aspect-ratio: 1; border-radius: 8px; background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  font-family: var(--font-mono); color: var(--text-mute);
}
.release-card__title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { border-top: 1px solid var(--border-glass); padding: 4rem 2rem; margin-top: 5rem; }
.footer__inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer__brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }

/* ============================================
   ANIMATIONS (GSAP-like via CSS)
   ============================================ */
.reveal-text { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
.reveal-text .line { display: block; transform: translateY(100%); opacity: 0; transition: transform 0.8s var(--ease-out-expo), opacity 0.8s; }
.reveal-text.in-view .line { transform: translateY(0); opacity: 1; }

.fade-up { transform: translateY(40px); opacity: 0; transition: transform 0.8s var(--ease-out-expo), opacity 0.8s; }
.fade-up.in-view { transform: translateY(0); opacity: 1; }
.del-1 { transition-delay: 0.1s; }
.del-2 { transition-delay: 0.2s; }
.del-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width: 1024px) { .artists-grid { grid-template-columns: 1fr; } }
@media(max-width: 768px) {
  html { cursor: auto; } /* Disable custom cursor on mobile */
  .cursor-dot, .cursor-ring { display: none; }
  .header { padding: 1rem; }
  .header__inner { border-radius: 20px; padding: 1rem; }
  .nav { display: none; }
  .hero { padding-top: 150px; }
  .hero__title { font-size: 3rem; }
  .section__title { font-size: 2.5rem; }
  .footer__inner { flex-direction: column; gap: 2rem; text-align: center; }
}
