/* ═══════════════════════════════════════════════════════════
   DJ TWIST — Portfolio CSS
   Bold · Graphic · Creative · Night-Vibes
═══════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --clr-bg:        #080810;
  --clr-surface:   #0e0e1a;
  --clr-surface2:  #141425;
  --clr-border:    rgba(255,255,255,0.07);

  --clr-primary:   #ff2d78;
  --clr-primary-d: #c41255;
  --clr-secondary: #7b2eff;
  --clr-accent:    #00f0ff;
  --clr-gold:      #ffd700;

  --clr-text:      #f0f0f8;
  --clr-muted:     #7a7a9a;
  --clr-white:     #ffffff;

  --gradient-hero: linear-gradient(135deg, #0a0015 0%, #0d001f 40%, #001220 100%);
  --gradient-accent: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  --gradient-glow: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-ui:       'Rajdhani', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-glow-primary: 0 0 40px rgba(255,45,120,0.4);
  --shadow-glow-secondary: 0 0 40px rgba(123,46,255,0.4);
  --shadow-glow-accent: 0 0 30px rgba(0,240,255,0.3);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: 3px; }

/* ─── Typography ────────────────────────────────────────── */
.accent { color: var(--clr-primary); }

/* ─── Container ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Noise Overlays ─────────────────────────────────────── */
.noise-overlay,
.noise-overlay-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.noise-overlay-light { opacity: 0.03; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(8,8,16,0.9);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--clr-border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  cursor: pointer;
}
.logo-dj {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-name { color: var(--clr-white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-primary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--clr-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--gradient-accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.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(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
}

/* Grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,45,120,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,120,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  z-index: 0;
  pointer-events: none;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,45,120,0.2) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,46,255,0.2) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,240,255,0.12) 0%, transparent 70%);
  top: 50%; right: 30%;
  animation: orbFloat3 6s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, 30px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-30px, -40px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Hero layout */
.hero .container { display: flex; align-items: center; gap: 60px; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0; }
.hero-content { position: relative; z-index: 2; flex: 1; }
.hero-visual { position: relative; z-index: 2; flex: 0 0 420px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,45,120,0.3);
  border-radius: var(--radius-xl);
  padding: 6px 18px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Hero title */
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}
.title-line {
  font-family: var(--font-display);
  display: block;
}
.title-line-1 {
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--clr-white);
  letter-spacing: 8px;
}
.title-line-2 {
  font-size: clamp(6rem, 14vw, 12rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  line-height: 0.9;
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-size: inherit;
  letter-spacing: inherit;
}
.glitch::before {
  animation: glitchTop 4s infinite linear;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  animation: glitchBottom 4s infinite linear;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitchTop {
  0%, 85%, 100% { transform: translate(0); filter: none; }
  87% { transform: translate(-3px, -2px); filter: hue-rotate(90deg); }
  90% { transform: translate(3px, 0px); }
  93% { transform: translate(-2px, 1px); }
}
@keyframes glitchBottom {
  0%, 85%, 100% { transform: translate(0); filter: none; }
  87% { transform: translate(3px, 2px); filter: hue-rotate(-90deg); }
  90% { transform: translate(-3px, 0px); }
  93% { transform: translate(2px, -1px); }
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--clr-muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Genre tags */
.hero-genres {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.genre-tag {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
}
.genre-sep {
  color: var(--clr-primary);
  font-size: 0.7rem;
}

/* CTA Buttons group */
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
  width: fit-content;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 28px;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--clr-primary);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--clr-primary);
  vertical-align: super;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--clr-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* ─── Turntable ──────────────────────────────────────────── */
.deck-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.turntable {
  width: 340px;
  height: 340px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
  border-radius: 16px;
  border: 1px solid rgba(255,45,120,0.2);
  box-shadow: 0 0 60px rgba(255,45,120,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.turntable::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1px solid rgba(255,45,120,0.1);
  border-radius: 10px;
  pointer-events: none;
}
.platter {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #1e1e35 0%, #0a0a14 100%);
  border-radius: 50%;
  border: 3px solid rgba(255,45,120,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}
.vinyl {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #0a0a14 0deg, #151525 5deg, #0a0a14 10deg,
    #151525 15deg, #0a0a14 20deg, #151525 25deg,
    #0a0a14 30deg, #151525 35deg, #0a0a14 40deg,
    #151525 45deg, #0a0a14 50deg, #151525 55deg,
    #0a0a14 60deg, #151525 65deg, #0a0a14 70deg,
    #151525 75deg, #0a0a14 80deg, #151525 85deg,
    #0a0a14 90deg, #151525 95deg, #0a0a14 100deg,
    #151525 105deg, #0a0a14 110deg, #151525 115deg,
    #0a0a14 120deg, #151525 125deg, #0a0a14 130deg,
    #151525 135deg, #0a0a14 140deg, #151525 145deg,
    #0a0a14 150deg, #151525 155deg, #0a0a14 160deg,
    #151525 165deg, #0a0a14 170deg, #151525 175deg,
    #0a0a14 180deg, #151525 185deg, #0a0a14 190deg,
    #151525 195deg, #0a0a14 200deg, #151525 205deg,
    #0a0a14 210deg, #151525 215deg, #0a0a14 220deg,
    #151525 225deg, #0a0a14 230deg, #151525 235deg,
    #0a0a14 240deg, #151525 245deg, #0a0a14 250deg,
    #151525 255deg, #0a0a14 260deg, #151525 265deg,
    #0a0a14 270deg, #151525 275deg, #0a0a14 280deg,
    #151525 285deg, #0a0a14 290deg, #151525 295deg,
    #0a0a14 300deg, #151525 305deg, #0a0a14 310deg,
    #151525 315deg, #0a0a14 320deg, #151525 325deg,
    #0a0a14 330deg, #151525 335deg, #0a0a14 340deg,
    #151525 345deg, #0a0a14 350deg, #151525 355deg,
    #0a0a14 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vinyl-label {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.vinyl-label span {
  font-family: var(--font-display);
  font-size: 0.5rem;
  color: white;
  letter-spacing: 1px;
  text-align: center;
}
.spinning {
  animation: spin 3s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Tonearm */
.tonearm {
  position: absolute;
  top: 20px;
  right: 36px;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #888, #ccc, #888);
  border-radius: 2px;
  transform-origin: right center;
  transform: rotate(-30deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.tonearm::after {
  content: '';
  position: absolute;
  left: -6px; top: -3px;
  width: 10px; height: 10px;
  background: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--clr-primary);
}

/* Deck buttons */
.deck-buttons {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.db {
  width: 12px; height: 12px;
  border-radius: 50%;
  cursor: pointer;
}
.db1 { background: var(--clr-primary); box-shadow: 0 0 8px var(--clr-primary); }
.db2 { background: var(--clr-secondary); box-shadow: 0 0 8px var(--clr-secondary); }
.db3 { background: var(--clr-accent); box-shadow: 0 0 8px var(--clr-accent); }

/* Waveform */
.waveform-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 60px;
}
.wave-bar {
  width: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: waveAnim 1s ease-in-out infinite alternate;
}
.wave-bar:nth-child(1) { animation-delay: 0.0s; height: 15px; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 30px; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 45px; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 55px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 40px; }
.wave-bar:nth-child(6) { animation-delay: 0.15s; height: 60px; }
.wave-bar:nth-child(7) { animation-delay: 0.25s; height: 50px; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; height: 35px; }
.wave-bar:nth-child(9) { animation-delay: 0.05s; height: 55px; }
.wave-bar:nth-child(10) { animation-delay: 0.45s; height: 20px; }
.wave-bar:nth-child(11) { animation-delay: 0.12s; height: 45px; }
.wave-bar:nth-child(12) { animation-delay: 0.22s; height: 30px; }
.wave-bar:nth-child(13) { animation-delay: 0.32s; height: 50px; }
.wave-bar:nth-child(14) { animation-delay: 0.42s; height: 40px; }
.wave-bar:nth-child(15) { animation-delay: 0.08s; height: 60px; }
.wave-bar:nth-child(16) { animation-delay: 0.18s; height: 35px; }
.wave-bar:nth-child(17) { animation-delay: 0.28s; height: 25px; }
.wave-bar:nth-child(18) { animation-delay: 0.38s; height: 45px; }
.wave-bar:nth-child(19) { animation-delay: 0.48s; height: 20px; }
.wave-bar:nth-child(20) { animation-delay: 0.14s; height: 35px; }

@keyframes waveAnim {
  from { transform: scaleY(0.3); opacity: 0.6; }
  to { transform: scaleY(1); opacity: 1; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--clr-muted);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255,45,120,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,45,120,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: rgba(255,45,120,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,45,120,0.2);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-submit { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Common
═══════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-dark {
  background: var(--clr-surface);
  position: relative;
}

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--clr-white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* Avatar */
.about-image-frame { position: relative; }
.dj-avatar {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-surface2), #0a0020);
  border: 2px solid rgba(255,45,120,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto;
}
.avatar-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.avatar-icon {
  font-size: 8rem;
  color: var(--clr-primary);
  filter: drop-shadow(0 0 20px rgba(255,45,120,0.5));
  z-index: 1;
}

/* Rotating rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}
.ring-1 {
  width: 420px; height: 420px;
  border-color: rgba(255,45,120,0.15);
  animation: ringRotate 20s linear infinite;
}
.ring-2 {
  width: 460px; height: 460px;
  border-color: rgba(123,46,255,0.1);
  animation: ringRotate 30s linear infinite reverse;
}
.ring-3 {
  width: 500px; height: 500px;
  border-color: rgba(0,240,255,0.06);
  animation: ringRotate 40s linear infinite;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Side badges */
.side-badge {
  position: absolute;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(255,45,120,0.4);
  white-space: nowrap;
}
.badge-top { top: 20px; right: -10px; }
.badge-bottom { bottom: 20px; left: -10px; background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent)); }

/* About content */
.about-intro {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 20px;
}
.about-intro strong { color: var(--clr-primary); }
.about-body {
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}
.highlight-card:hover {
  border-color: rgba(255,45,120,0.3);
  background: rgba(255,45,120,0.05);
  transform: translateY(-2px);
}
.highlight-card i {
  font-size: 1.3rem;
  color: var(--clr-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.highlight-card div { display: flex; flex-direction: column; gap: 2px; }
.highlight-card strong { font-size: 0.85rem; color: var(--clr-white); }
.highlight-card span { font-size: 0.8rem; color: var(--clr-muted); }

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(255,45,120,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,45,120,0.1);
}
.featured-service {
  background: linear-gradient(135deg, rgba(255,45,120,0.08), rgba(123,46,255,0.08));
  border-color: rgba(255,45,120,0.3);
}
.featured-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: var(--gradient-accent);
  color: white;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(255,45,120,0.2);
  box-shadow: 0 0 20px rgba(255,45,120,0.3);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--clr-muted);
}
.service-features li i { color: var(--clr-primary); font-size: 0.75rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-primary);
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ═══════════════════════════════════════════════════════════
   MIXES SECTION
═══════════════════════════════════════════════════════════ */
.mixes-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 40px;
}
.mix-featured { grid-row: 1 / 3; }

.mix-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.mix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,45,120,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.mix-art {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.mix-featured .mix-art { height: 280px; }
.mix-art-1 { background: linear-gradient(135deg, #1a0030, #001020, #002010); }
.mix-art-2 { background: linear-gradient(135deg, #200020, #100030, #000010); }
.mix-art-3 { background: linear-gradient(135deg, #001030, #000020, #100010); }
.mix-art-4 { background: linear-gradient(135deg, #200010, #100020, #000030); }

/* Decorative patterns on mix arts */
.mix-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,45,120,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(123,46,255,0.2) 0%, transparent 50%);
}
.mix-art::after {
  content: '♪';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: rgba(255,255,255,0.04);
}
.mix-art-2::after { content: '♫'; }
.mix-art-3::after { content: '◈'; }
.mix-art-4::after { content: '♩'; }

.mix-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.mix-card:hover .mix-overlay { opacity: 1; }
.play-btn {
  width: 64px; height: 64px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255,45,120,0.5);
  transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn i { margin-left: 4px; }

.mix-waveform {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 30px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.mw-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 1px;
  animation: waveAnim 1s ease-in-out infinite alternate;
}
.mw-bar:nth-child(1) { height: 40%; animation-delay: 0.0s; }
.mw-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.mw-bar:nth-child(3) { height: 55%; animation-delay: 0.2s; }
.mw-bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.mw-bar:nth-child(5) { height: 65%; animation-delay: 0.05s; }
.mw-bar:nth-child(6) { height: 100%; animation-delay: 0.15s; }
.mw-bar:nth-child(7) { height: 75%; animation-delay: 0.25s; }
.mw-bar:nth-child(8) { height: 50%; animation-delay: 0.35s; }
.mw-bar:nth-child(9) { height: 80%; animation-delay: 0.08s; }
.mw-bar:nth-child(10) { height: 45%; animation-delay: 0.18s; }
.mw-bar:nth-child(11) { height: 60%; animation-delay: 0.28s; }
.mw-bar:nth-child(12) { height: 35%; animation-delay: 0.38s; }

.mix-info { padding: 20px; }
.mix-genre-tag {
  display: inline-block;
  background: rgba(255,45,120,0.15);
  color: var(--clr-primary);
  border: 1px solid rgba(255,45,120,0.25);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mix-genre-tag.hip { background: rgba(123,46,255,0.15); color: #a070ff; border-color: rgba(123,46,255,0.25); }
.mix-genre-tag.house { background: rgba(0,240,255,0.1); color: var(--clr-accent); border-color: rgba(0,240,255,0.2); }
.mix-genre-tag.rnb { background: rgba(255,215,0,0.1); color: var(--clr-gold); border-color: rgba(255,215,0,0.2); }
.mix-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.mix-info p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.mix-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mix-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-muted);
  font-family: var(--font-ui);
}
.mix-meta i { color: var(--clr-primary); font-size: 0.7rem; }
.mixes-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-bottom: 60px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.gi-large { grid-column: 1 / 2; grid-row: 1 / 3; }
.gi-medium { grid-column: 2 / 4; }
.gi-tall { grid-row: 1 / 3; }

.gallery-card {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-md);
}
.gc-1 { background: linear-gradient(135deg, #1a0030 0%, #300010 50%, #001020 100%); }
.gc-2 { background: linear-gradient(135deg, #001030 0%, #100030 100%); }
.gc-3 { background: linear-gradient(135deg, #200020 0%, #001010 100%); }
.gc-4 { background: linear-gradient(135deg, #100020 0%, #200010 50%, #000020 100%); }
.gc-5 { background: linear-gradient(135deg, #001a20 0%, #0a0020 100%); }
.gc-6 { background: linear-gradient(135deg, #200010 0%, #100030 100%); }

/* Pattern overlays for gallery cards */
.gc-1::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, rgba(255,45,120,0.35) 0%, transparent 60%), radial-gradient(ellipse at 70% 60%, rgba(123,46,255,0.25) 0%, transparent 50%); }
.gc-2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,240,255,0.2) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(255,45,120,0.15) 0%, transparent 50%); }
.gc-3::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(123,46,255,0.35) 0%, transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(0,240,255,0.15) 0%, transparent 50%); }
.gc-4::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(255,215,0,0.15) 0%, transparent 60%), radial-gradient(ellipse at 50% 70%, rgba(255,45,120,0.25) 0%, transparent 50%); }
.gc-5::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 50%, rgba(0,240,255,0.25) 0%, transparent 60%); }
.gc-6::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(255,45,120,0.3) 0%, transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(123,46,255,0.2) 0%, transparent 50%); }

.gallery-card::after {
  content: '📸';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.2;
}
.gc-1::after { content: '🎵'; font-size: 5rem; }
.gc-6::after { content: '🎤'; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gi-label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logos ticker */
.logos-section { text-align: center; }
.logos-title {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--clr-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.logos-ticker {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
}
.logos-ticker::before,
.logos-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logos-ticker::before { left: 0; background: linear-gradient(90deg, var(--clr-surface), transparent); }
.logos-ticker::after { right: 0; background: linear-gradient(-90deg, var(--clr-surface), transparent); }
.logos-track {
  display: flex;
  gap: 20px;
  animation: tickerScroll 20s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--clr-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.logo-chip i { color: var(--clr-primary); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.testi-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testi-card:hover {
  border-color: rgba(255,45,120,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.testi-featured {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(255,45,120,0.06), rgba(123,46,255,0.06));
  border-color: rgba(255,45,120,0.2);
}
.testi-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: var(--gradient-accent);
}
.testi-quote-icon {
  font-size: 2rem;
  color: rgba(255,45,120,0.3);
  margin-bottom: 16px;
}
.testi-featured .testi-quote-icon { font-size: 3rem; }
.testi-text {
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.testi-featured .testi-text { font-size: 1.05rem; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.ta-2 { background: linear-gradient(135deg, var(--clr-secondary), #a070ff); }
.ta-3 { background: linear-gradient(135deg, #00a0a0, var(--clr-accent)); }
.ta-4 { background: linear-gradient(135deg, #a07000, var(--clr-gold)); }
.testi-author strong { display: block; color: var(--clr-white); font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--clr-muted); }
.testi-stars { margin-left: auto; display: flex; gap: 3px; }
.testi-stars i { color: var(--clr-gold); font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,45,120,0.25) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,46,255,0.25) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--clr-white);
  letter-spacing: 1px;
  margin: 12px 0 20px;
}
.cta-content p {
  font-size: 1.1rem;
  color: var(--clr-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-white);
  letter-spacing: 1px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--clr-white); font-size: 0.85rem; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--clr-muted); font-size: 0.9rem; transition: var(--transition); }
.contact-item a:hover { color: var(--clr-primary); }

.social-links { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--clr-border); }
.social-links h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 16px;
}
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface2);
  color: var(--clr-muted);
}
.social-icon:hover { transform: translateY(-3px); }
.si-instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: transparent; }
.si-tiktok:hover { background: #000; color: #fff; border-color: transparent; }
.si-soundcloud:hover { background: #f50; color: white; border-color: transparent; }
.si-youtube:hover { background: #f00; color: white; border-color: transparent; }
.si-twitter:hover { background: #1da1f2; color: white; border-color: transparent; }

/* Contact Form */
.contact-form-wrap {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--clr-text);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 122, 154, 0.5);
}
.form-group select option { background: var(--clr-bg); }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(0,240,100,0.1);
  border: 1px solid rgba(0,240,100,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #00f064;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-success i { font-size: 1.2rem; }
.form-success.show { display: flex; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,45,120,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,120,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 40px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--clr-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  color: var(--clr-primary);
  border-color: rgba(255,45,120,0.3);
}
.footer-links-group h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 0.9rem;
  color: var(--clr-muted);
  transition: var(--transition);
}
.footer-links-group a:hover { color: var(--clr-primary); }
.footer-newsletter h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.footer-newsletter p { font-size: 0.88rem; color: var(--clr-muted); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-bg);
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 18px;
  color: var(--clr-text);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--clr-muted); }
.newsletter-btn {
  background: var(--gradient-accent);
  border: none;
  color: white;
  padding: 12px 18px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover { opacity: 0.85; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
  font-size: 0.85rem;
  color: var(--clr-muted);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   MINI PLAYER
═══════════════════════════════════════════════════════════ */
.mini-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: rgba(14,14,26,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,45,120,0.3);
  border-radius: var(--radius-xl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,45,120,0.1);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-slow);
}
.mini-player.show {
  transform: translateY(0);
  opacity: 1;
}
.mp-info { display: flex; align-items: center; gap: 12px; }
.mp-disc {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.spinning-slow { animation: spin 4s linear infinite; }
.mp-text { display: flex; flex-direction: column; }
.mp-title { font-size: 0.85rem; color: var(--clr-white); font-weight: 600; white-space: nowrap; }
.mp-artist { font-size: 0.75rem; color: var(--clr-muted); }
.mp-controls { display: flex; align-items: center; gap: 8px; }
.mp-btn, .mp-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mp-btn { background: var(--gradient-accent); color: white; font-size: 0.9rem; }
.mp-btn:hover { transform: scale(1.1); }
.mp-close { background: rgba(255,255,255,0.07); color: var(--clr-muted); font-size: 0.8rem; }
.mp-close:hover { background: rgba(255,255,255,0.15); color: white; }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; padding: 140px 24px 60px; }
  .hero .container { flex-direction: column; gap: 40px; }
  .hero-visual { flex: none; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .dj-avatar { width: 280px; height: 280px; }
  .ring-1 { width: 310px; height: 310px; }
  .ring-2 { width: 340px; height: 340px; }
  .ring-3 { width: 370px; height: 370px; }
  .about-highlights { grid-template-columns: 1fr; }
  .mixes-grid { grid-template-columns: 1fr; }
  .mix-featured { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-featured { grid-row: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-large { grid-column: 1 / -1; }
  .gi-medium { grid-column: auto; }
  .gi-tall { grid-row: auto; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(8,8,16,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--clr-white); }
  .hamburger { display: flex; z-index: 1000; }

  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .turntable { width: 270px; height: 270px; }
  .platter { width: 190px; height: 190px; }
  .vinyl { width: 160px; height: 160px; }
  .hero-stats { flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gi-large, .gi-medium { grid-column: auto; }
  .gi-tall { grid-row: auto; }
  .gallery-item { height: 200px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stat-item { padding: 12px 16px; }
  .mini-player { left: 16px; right: 16px; bottom: 16px; }
}
