* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon: #a855f7;
  --neon-glow: #c084fc;
  --dark: #0a0a0f;
  --dark2: #111119;
  --dark3: #1a1a2e;
  --text: #e2e2e8;
  --text-dim: #8888a0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

canvas#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.08) 0%, transparent 70%);
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.glitch {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow:
    0 0 10px var(--neon),
    0 0 40px var(--neon),
    0 0 80px var(--neon),
    0 0 120px rgba(168,85,247,0.4);
  position: relative;
  animation: flicker 4s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  color: #ff00ff;
  opacity: 0.8;
}

.glitch::after {
  animation: glitch-2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  color: #00ffff;
  opacity: 0.8;
}

.tagline {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-glow);
}

.bio {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  margin-top: 3rem;
  animation: bounce 2s infinite;
  font-size: 1.5rem;
  color: var(--neon);
}

/* ====== SECTIONS ====== */
.section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  text-shadow: 0 0 20px var(--neon);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--neon);
  margin: 1rem auto 0;
  box-shadow: 0 0 10px var(--neon);
}

/* ====== VIDEO ====== */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(168,85,247,0.3);
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ====== TRACKS ====== */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.track-card {
  background: var(--dark2);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.track-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s, border-color 0.3s;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(168,85,247,0.2);
  border-color: var(--neon);
}

.track-info {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.track-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon);
  opacity: 0.6;
}

.track-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.track-info .ft {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 300;
}

.track-card iframe {
  width: 100%;
  height: 166px;
  border: none;
}

/* ====== SOCIAL ====== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 2.5rem;
  background: var(--dark2);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  min-width: 160px;
}

.social-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 30px rgba(168,85,247,0.25);
  transform: translateY(-5px);
  color: var(--neon-glow);
}

.social-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.3s;
}

.social-card:hover .social-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px var(--neon));
}

.social-card span {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ====== FOOTER ====== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid rgba(168,85,247,0.1);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.7; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

@keyframes glitch-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

@keyframes glitch-2 {
  0% { transform: translate(0); }
  20% { transform: translate(3px, -3px); }
  40% { transform: translate(3px, 3px); }
  60% { transform: translate(-3px, -3px); }
  80% { transform: translate(-3px, 3px); }
  100% { transform: translate(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    justify-content: center;
  }

  .tagline {
    letter-spacing: 0.15em;
    font-size: 1rem;
  }
}
