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

:root {
  --neon-red: #ff3c00;
  --neon-orange: #ff9000;
  --neon-yellow: #ffd700;
  --bg-dark: #0a0a0f;
  --bg-mid: #111118;
  --text: #f0f0f0;
  --text-muted: #888;
  --accent: #ff4500;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 60, 0, 0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--neon-orange);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255,144,0,0.6);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--neon-orange); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,60,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 40%, rgba(255,144,0,0.08) 0%, transparent 60%);
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.neon-sign-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-logo {
  width: min(640px, 90vw);
  display: block;
  filter: drop-shadow(0 0 18px rgba(255,100,0,0.6)) drop-shadow(0 0 40px rgba(255,60,0,0.3));
  animation: float 4s ease-in-out infinite;
}

.neon-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: transparent;
  border: 2px solid var(--neon-orange);
  color: var(--neon-orange);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 15px rgba(255,144,0,0.2);
}

.btn-primary:hover {
  background: var(--neon-orange);
  color: #000;
  box-shadow: 0 0 30px rgba(255,144,0,0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  font-size: 1.4rem;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* SECTIONS */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-mid); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--neon-red), var(--neon-orange));
  margin: 0.6rem auto 0;
  box-shadow: 0 0 10px rgba(255,144,0,0.5);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255,144,0,0.2);
  flex: 1;
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--neon-orange);
  text-shadow: 0 0 20px rgba(255,144,0,0.4);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ARTISTS */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.artist-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.artist-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
  filter: brightness(0.7) saturate(0.8);
}

.artist-card:hover .artist-img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1.1);
}

.artist-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.artist-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.artist-info span {
  font-size: 0.8rem;
  color: var(--neon-orange);
  letter-spacing: 1px;
}

/* RELEASES */
.releases-list { display: flex; flex-direction: column; gap: 1rem; }

.release-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s;
}

.release-item:hover {
  border-color: rgba(255,144,0,0.3);
  background: rgba(255,144,0,0.04);
}

.release-cover {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
}

.release-info { flex: 1; }
.release-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.release-info p { color: var(--text-muted); font-size: 0.9rem; }
.release-date { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }

.btn-ghost {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,144,0,0.4);
  color: var(--neon-orange);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-ghost:hover { background: var(--neon-orange); color: #000; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact-details li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.contact-details a { color: var(--neon-orange); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.social-links { display: flex; gap: 1rem; }

.social-link {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--neon-orange); color: var(--neon-orange); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--neon-orange);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

/* JUKEBOX */
.jukebox-section { background: var(--bg-dark); overflow: hidden; }

.jukebox-sub {
  text-align: center;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.jukebox-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.jukebox-curtains {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.curtain {
  position: absolute;
  top: -20px;
  bottom: -20px;
  width: 90px;
  z-index: 1;
  pointer-events: none;
}

.curtain-left {
  left: 0;
  background: linear-gradient(to right, #6b0000 0%, #a00000 40%, rgba(100,0,0,0) 100%);
  border-left: 4px solid #ff3c00;
  box-shadow: inset -10px 0 20px rgba(255,60,0,0.15), 2px 0 20px rgba(255,60,0,0.3);
}

.curtain-right {
  right: 0;
  background: linear-gradient(to left, #6b0000 0%, #a00000 40%, rgba(100,0,0,0) 100%);
  border-right: 4px solid #ff3c00;
  box-shadow: inset 10px 0 20px rgba(255,60,0,0.15), -2px 0 20px rgba(255,60,0,0.3);
}

.curtain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0px,
    rgba(0,0,0,0) 8px,
    rgba(0,0,0,0.1) 16px
  );
}

.jukebox-stage {
  position: relative;
  z-index: 0;
  padding: 10px;
}

#jukeboxCanvas {
  display: block;
  cursor: pointer;
}

.jukebox-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.jb-spin-btn {
  position: relative;
  background: transparent;
  border: 3px solid var(--neon-orange);
  color: var(--neon-orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  padding: 0.8rem 3.5rem;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.2s, background 0.2s;
  box-shadow: 0 0 20px rgba(255,144,0,0.3), inset 0 0 20px rgba(255,144,0,0.05);
  text-shadow: 0 0 10px rgba(255,144,0,0.6);
  animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,144,0,0.3), inset 0 0 20px rgba(255,144,0,0.05); }
  50% { box-shadow: 0 0 40px rgba(255,144,0,0.6), inset 0 0 30px rgba(255,144,0,0.1); }
}

.jb-spin-btn:hover {
  background: var(--neon-orange);
  color: #000;
  box-shadow: 0 0 60px rgba(255,144,0,0.8);
  animation: none;
}

.jb-spin-btn:active { transform: scale(0.97); }

/* bulb-row decoration above button */
.jb-btn-lights {
  display: block;
  position: absolute;
  top: 4px; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,220,80,0.8) 0px, rgba(255,220,80,0.8) 4px,
    transparent 4px, transparent 12px
  );
}

.jb-winner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(255,215,0,0.8);
  min-height: 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.jb-winner.visible { opacity: 1; }

.jb-play-btn {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding: 0.6rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
  box-shadow: 0 0 15px rgba(255,215,0,0.2);
}

.jb-play-btn:hover {
  background: #ffd700;
  color: #000;
  box-shadow: 0 0 30px rgba(255,215,0,0.6);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-stats { gap: 1rem; }

  .release-item { flex-wrap: wrap; }
  .btn-ghost { margin-top: 0.5rem; }
}
