/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
  --gold: #C9892A;
  --gold-light: #E8A84A;
  --gold-dim: #8B5E1A;
  --gold-bright: #FFD080;
  --cyan: #38C8D4;
  --cyan-dim: #1A7A82;
  --cyan-bright: #7EEAF3;
  --purple: #a78bfa;
  --purple-dim: #6d28d9;
  --dark: #06080E;
  --dark-2: #0A0D16;
  --dark-3: #0F1420;
  --dark-card: #111827;
  --dark-card-2: #161D2E;
  --dark-border: rgba(201, 137, 42, 0.15);
  --text: #EEF0F8;
  --text-muted: #8A8FA8;
  --glow-gold: rgba(201, 137, 42, 0.4);
  --glow-cyan: rgba(56, 200, 212, 0.3);
  --glow-purple: rgba(167, 139, 250, 0.25);
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
  --nav-height: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gold-dim) var(--dark); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--gold), var(--gold-dim)); border-radius: 3px; }

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  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");
  background-repeat: repeat;
  background-size: 128px 128px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.btn:hover::before {
  animation: shimmer 0.7s ease forwards;
}

@keyframes shimmer {
  to { left: 150%; }
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 0 24px var(--glow-gold), 0 4px 16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  animation: gradientShift 4s ease infinite;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 48px var(--glow-gold), 0 8px 28px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}

@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201, 137, 42, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(201,137,42,0.2);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-full { width: 100%; justify-content: center; }

.hidden { display: none !important; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s, box-shadow 0.4s;
  backdrop-filter: blur(0);
}

.navbar.scrolled {
  background: rgba(6, 8, 14, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--dark-border), 0 4px 32px rgba(0,0,0,0.7);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(65%) saturate(500%) hue-rotate(15deg) brightness(85%);
}

.logo-text { color: var(--text); }
.accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s;
  border-radius: 1px;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 0 20px var(--glow-gold);
}
.nav-cta:hover {
  box-shadow: 0 0 40px var(--glow-gold);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

/* Aurora animated background */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 80% 50% at 65% 45%, rgba(201,137,42,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 65%, rgba(56,200,212,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(167,139,250,0.07) 0%, transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(201,137,42,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(56,200,212,0.07) 0%, transparent 50%);
  animation: auroraShift2 15s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.1) rotate(3deg); opacity: 1; }
  100% { transform: scale(0.95) rotate(-2deg); opacity: 0.9; }
}

@keyframes auroraShift2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

/* Bokeh */
.hero-bokeh { position: absolute; inset: 0; pointer-events: none; }
.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: bokehFloat 10s ease-in-out infinite;
}
.b1 { width: 500px; height: 500px; background: rgba(201,137,42,0.2); top: -120px; right: 0%; animation-delay: 0s; opacity: 0.7; }
.b2 { width: 300px; height: 300px; background: rgba(56,200,212,0.18); bottom: 5%; left: 2%; animation-delay: -3.5s; opacity: 0.6; }
.b3 { width: 220px; height: 220px; background: rgba(167,139,250,0.16); top: 35%; left: 18%; animation-delay: -5s; opacity: 0.5; }
.b4 { width: 380px; height: 380px; background: rgba(56,200,212,0.1); top: -60px; left: 25%; animation-delay: -2s; opacity: 0.5; }
.b5 { width: 180px; height: 180px; background: rgba(201,137,42,0.22); bottom: 18%; right: 18%; animation-delay: -6.5s; opacity: 0.6; }

@keyframes bokehFloat {
  0%,100% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-24px) scale(1.04) rotate(2deg); }
  66% { transform: translateY(-12px) scale(0.97) rotate(-1deg); }
}

#waveCanvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title .line1 {
  font-family: var(--font-accent);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f5e6c8 35%, var(--gold-bright) 65%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(201,137,42,0.4));
  position: relative;
}

.hero-title .line2 {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.accent-gold { color: var(--gold) !important; -webkit-text-fill-color: var(--gold); }

.hero-desc {
  margin: 26px 0 38px;
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}

.hero-glow-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-glow-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,137,42,0.22) 0%, transparent 65%);
  animation: pulseRing 3.5s ease-in-out infinite;
}
.hero-glow-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,137,42,0.2);
  animation: pulseRingBorder 3.5s ease-in-out infinite reverse;
}

@keyframes pulseRing {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
@keyframes pulseRingBorder {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.hero-dj-img {
  width: 390px;
  max-width: 92%;
  border-radius: 24px;
  object-fit: cover;
  filter: drop-shadow(0 0 50px rgba(201,137,42,0.35)) drop-shadow(0 24px 70px rgba(0,0,0,0.85));
  border: 1px solid rgba(201,137,42,0.25);
  position: relative;
  z-index: 1;
}

/* Corner accent lines on hero image */
.hero-image-wrap::before,
.hero-image-wrap::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 3;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.hero-image-wrap::before {
  top: 12px;
  left: calc(50% - 195px);
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.hero-image-wrap::after {
  bottom: 12px;
  right: calc(50% - 195px);
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s 1.5s forwards;
  opacity: 0;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { opacity: 1; }
  70% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

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

/* ===========================
   STATS BAND
   =========================== */
.stats-band {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-card) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,137,42,0.05) 0%, transparent 70%);
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-family: var(--font-accent);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201,137,42,0.4);
}
.stat-plus { font-family: var(--font-accent); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); }

.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

.stat-divider { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--dark-border), transparent); }

/* ===========================
   SECTION COMMON
   =========================== */
.section-tag {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  color: var(--text);
}

.section-title .accent-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(201,137,42,0.3));
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header .section-sub { margin: 0 auto; }

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.6), 0 0 1px rgba(201,137,42,0.2);
}

/* Decorative corner on about image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(225deg, rgba(201,137,42,0.2), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-wrap:hover .about-img { transform: scale(1.05); }

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,14,0.85) 0%, rgba(6,8,14,0.2) 50%, transparent 100%);
}

.floating-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,137,42,0.25);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 24px rgba(201,137,42,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-card-icon { font-size: 2.2rem; }
.floating-card strong { display: block; font-size: 0.88rem; color: var(--gold); margin-bottom: 4px; }
.floating-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

.about-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.85; }

/* Genre Badges */
.genre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.genre-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}
.genre-badge:hover {
  border-color: rgba(201,137,42,0.5);
  color: var(--gold);
  background: rgba(201,137,42,0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,137,42,0.15);
}
.genre-badge.gold { border-color: rgba(201,137,42,0.4); color: var(--gold); background: rgba(201,137,42,0.08); }
.genre-badge.cyan { border-color: rgba(56,200,212,0.4); color: var(--cyan); background: rgba(56,200,212,0.08); }

/* ===========================
   SETS / SOUNDCLOUD
   =========================== */
.sets {
  background: var(--dark-2);
  position: relative;
}
.sets::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.sets::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* Spotify Player */
.spotify-player-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(30, 215, 96, 0.1), 0 32px 80px rgba(0,0,0,0.6);
}

/* Animated neon border */
.spotify-player-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg,
    #1DB954,
    var(--gold),
    var(--cyan),
    var(--purple),
    #1DB954
  );
  background-size: 300% 300%;
  animation: borderGlow 6s linear infinite;
  z-index: 0;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.spotify-player-wrap > * { position: relative; z-index: 1; }

.spotify-player-inner {
  background: var(--dark-card);
  border-radius: 22px;
  overflow: hidden;
  margin: 2px;
}

.spotify-player-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--dark-border);
  background: linear-gradient(135deg, rgba(30,215,96,0.07), rgba(201,137,42,0.04));
  flex-wrap: wrap;
}

.spotify-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1DB954;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.spotify-player-label { flex: 1; }

.spotify-genre-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.spotify-set-title {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0;
}

.spotify-open-btn { flex-shrink: 0; white-space: nowrap; }

.spotify-iframe-wrap { line-height: 0; }
.spotify-iframe-wrap iframe { display: block; border: none; }

.sets-cta { text-align: center; margin-top: 52px; }

/* ===========================
   DNA MUSICAL / SOUND
   =========================== */
.sound {
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

.sound::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,200,212,0.4), transparent);
}

.sound-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(56,200,212,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 50%, rgba(201,137,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 10%, rgba(167,139,250,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.sound-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism sound cards */
.sound-card {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  cursor: default;
}

.sound-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-accent, var(--gold));
  opacity: 0.6;
  transition: opacity 0.3s, height 0.3s;
  border-radius: 2px 2px 0 0;
}

.sound-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, var(--card-glow, rgba(201,137,42,0.1)) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}

.sound-card:hover {
  transform: translateY(-12px);
  border-color: var(--card-border, rgba(201,137,42,0.35));
  box-shadow:
    0 28px 70px rgba(0,0,0,0.6),
    0 0 50px var(--card-glow, rgba(201,137,42,0.12)),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.sound-card:hover::before { opacity: 1; height: 3px; }
.sound-card:hover::after { opacity: 1; }

.sound-card[data-color="cyan"] {
  --card-accent: var(--cyan);
  --card-glow: rgba(56,200,212,0.14);
  --card-border: rgba(56,200,212,0.4);
}
.sound-card[data-color="gold"] {
  --card-accent: var(--gold);
  --card-glow: rgba(201,137,42,0.14);
  --card-border: rgba(201,137,42,0.4);
}
.sound-card[data-color="purple"] {
  --card-accent: #a78bfa;
  --card-glow: rgba(167,139,250,0.14);
  --card-border: rgba(167,139,250,0.4);
}
.sound-card[data-color="green"] {
  --card-accent: #4ade80;
  --card-glow: rgba(74,222,128,0.14);
  --card-border: rgba(74,222,128,0.4);
}

.sound-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px var(--card-glow, rgba(201,137,42,0.2)));
}

.sound-waves {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.sound-waves span {
  flex: 1;
  background: var(--card-accent, var(--gold));
  opacity: 0.4;
  border-radius: 3px;
  animation: waveAnim 1.4s ease-in-out infinite;
}
.sound-waves span:nth-child(2) { animation-delay: 0.1s; }
.sound-waves span:nth-child(3) { animation-delay: 0.2s; }
.sound-waves span:nth-child(4) { animation-delay: 0.3s; }
.sound-waves span:nth-child(5) { animation-delay: 0.4s; }
.sound-waves span:nth-child(6) { animation-delay: 0.5s; }
.sound-waves span:nth-child(7) { animation-delay: 0.15s; }
.sound-waves span:nth-child(8) { animation-delay: 0.25s; }

.sound-card:hover .sound-waves span { opacity: 0.85; }

@keyframes waveAnim {
  0%,100% { height: 100%; }
  50% { height: 25%; }
}

.sound-card h3 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--card-accent, var(--gold));
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px var(--card-glow, rgba(201,137,42,0.3));
}

.sound-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.sound-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--card-accent, var(--gold));
  opacity: 0.6;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  background: var(--dark-2);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.3), transparent);
}

.gallery-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-duo-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.04);
}

.gallery-duo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,137,42,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.gallery-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-duo-item:hover img { transform: scale(1.08); }
.gallery-duo-item:hover::before { opacity: 1; }

.gallery-duo-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,14,0.85) 0%, rgba(6,8,14,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.gallery-duo-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--gold-light);
  font-weight: 700;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(201,137,42,0.5);
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.contact-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,137,42,0.07) 0%, transparent 70%);
  top: 50%;
  left: -250px;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-bg-glow::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,200,212,0.05) 0%, transparent 70%);
  top: 20%;
  right: -300px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info p { color: var(--text-muted); line-height: 1.85; margin-bottom: 36px; }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(17,24,39,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 16px 20px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(201,137,42,0.45);
  transform: translateX(8px);
  background: rgba(201,137,42,0.06);
  box-shadow: 0 4px 24px rgba(201,137,42,0.1), -4px 0 0 rgba(201,137,42,0.3);
}
.contact-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(201,137,42,0.12);
  border: 1px solid rgba(201,137,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-card:hover .contact-card-icon {
  background: rgba(201,137,42,0.2);
  box-shadow: 0 0 20px rgba(201,137,42,0.2);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: var(--text); }
.contact-card span { font-size: 0.82rem; color: var(--text-muted); }

/* Form */
.contact-form-wrap {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,137,42,0.2);
  border-radius: 24px;
  padding: 44px;
  box-shadow:
    0 0 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(0,0,0,0.2);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,137,42,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,137,42,0.12), 0 0 20px rgba(201,137,42,0.08);
  background: rgba(201,137,42,0.04);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238A8FA8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.form-group select option { background: var(--dark-3); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  background: rgba(56,200,212,0.08);
  border: 1px solid rgba(56,200,212,0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(56,200,212,0.08);
}

.form-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #f87171;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201,137,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 1.65rem;
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }

.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,137,42,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,137,42,0.2);
}

.footer-links h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--text); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-credit { color: var(--text-muted); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  transform: translateY(24px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-out;
  opacity: 0;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   UTILITY: neon divider lines
   =========================== */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-image-wrap { order: 1; }
  .hero-dj-img { width: 280px; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-image-wrap::before { left: calc(50% - 140px); }
  .hero-image-wrap::after { right: calc(50% - 140px); }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .floating-card { right: 0; }

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

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

  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 78px 0; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6,8,14,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--dark-border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--dark-border); width: 100%; }
  .nav-cta { text-align: center; }

  .hero-content { gap: 36px; }

  .stats-container { justify-content: center; }
  .stat-divider { display: none; }

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

  .gallery-duo { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-title .line1 { font-size: 3rem; }
  .hero-dj-img { width: 230px; }
  .sound-grid { grid-template-columns: 1fr; }
  .hero-image-wrap::before,
  .hero-image-wrap::after { display: none; }
}
