body {
  background-color: #020617;
  color: #ffffff;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

/* --- NEON UTILITIES --- */
.text-neon {
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff,
    0 0 40px #ff00ff;
}

.text-neon-blue {
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #00ffff,
    0 0 30px #00ffff;
}

.border-glow {
  box-shadow:
    0 0 10px rgba(0, 255, 255, 0.5),
    inset 0 0 10px rgba(0, 255, 255, 0.2);
}

/* --- BACKGROUND FX --- */
.bg-smoke {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(189, 0, 255, 0.15),
    transparent 60%
  );
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

/* --- UI ELEMENTS --- */
.btn-neon {
  background: transparent;
  border: 2px solid #ff00ff;
  color: #fff;
  text-transform: uppercase;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

.btn-neon:hover {
  background: #ff00ff;
  color: #000;
  box-shadow:
    0 0 30px #ff00ff,
    0 0 60px #ff00ff;
  text-shadow: none;
  transform: scale(1.05);
}

/* --- GLASSMORPHISM PLAYER --- */
.spotify-player {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.equalizer-bar {
  background-color: #00ffff;
  width: 3px;
  animation: equalizer 1s infinite ease-in-out;
}
@keyframes equalizer {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 16px;
  }
}

/* --- UTILS --- */
.section-hidden {
  display: none !important;
}
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#lightbox-modal {
  background-color: rgba(0, 0, 0, 0.95);
  touch-action: none;
}

.rotate-mobile {
  transform: rotate(90deg);
  width: 100vh !important;
  height: 100vw !important;
  max-width: 100vh !important;
  max-height: 100vw !important;
  object-fit: contain;
}
