/* ============================================
   KOMODO — Yung Kayo Fan Site
   Dark reptilian aesthetic, Komodo dragon inspired
   Black base with deep emerald greens
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Righteous&family=Oswald:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Mono:wght@300;400;500&family=Anton&family=Russo+One&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Palette — Dark reptilian: blacks + emerald green */
  --bg-primary: #050705;
  --bg-secondary: #0a0d0a;
  --bg-elevated: #111611;
  --bg-card: #0c100c;
  --bg-glass: rgba(8, 14, 8, 0.85);
  --bg-overlay: rgba(0, 0, 0, 0.7);

  --accent: #22c55e;
  --accent-light: #4ade80;
  --accent-dark: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.08);
  --accent-gradient: linear-gradient(135deg, #22c55e, #16a34a);

  --gold: #d4af37;
  --gold-light: #e6c44a;

  --text-primary: #e2e8e2;
  --text-secondary: #7a917a;
  --text-muted: #3a4a3a;
  --text-bright: #f0f5f0;

  --border: rgba(34, 197, 94, 0.08);
  --border-hover: rgba(34, 197, 94, 0.18);
  --border-accent: rgba(34, 197, 94, 0.25);

  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;

  /* Typography - Hip-Hop Aesthetic */
  --font-brand: 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  --font-nav: 'Oswald', sans-serif;
  --font-display: 'Righteous', Impact, sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;
  --space-4xl: 140px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(200, 200, 200, 0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ENHANCEMENTS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
}

h1 {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 4px;
}

h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

h3 {
  font-family: var(--font-display);
  letter-spacing: 1px;
}

h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.serif { font-family: var(--font-display); }
.mono { font-family: var(--font-mono); }
.uppercase {
  font-family: var(--font-nav);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: var(--space-lg) auto;
}

.section-pad {
  padding: var(--space-4xl) 0;
}

.section-pad-sm {
  padding: var(--space-3xl) 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  padding: 14px 40px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Anton', 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-bright);
}

.nav-cta {
  padding: 10px 28px;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius-full);
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--duration-fast);
  border: none;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--text-bright);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--text-bright);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 5, 0.5) 0%,
    rgba(5, 10, 5, 0.25) 40%,
    rgba(5, 7, 5, 0.65) 80%,
    rgba(5, 7, 5, 1) 100%
  );
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(22, 163, 74, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(15, 122, 50, 0.05) 0%, transparent 60%),
    var(--bg-primary);
}

.hero-fallback .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-xl);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: var(--space-xl);
}

.hero-eyebrow .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-family: 'Anton', 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 4px;
  margin-bottom: var(--space-lg);
  color: var(--text-bright);
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--text-bright);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

.btn-accent {
  background: var(--accent-gradient);
  color: white;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MANIFESTO ===== */
.manifesto {
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto var(--space-lg);
}

.manifesto-quote em {
  color: var(--text-primary);
  font-style: normal;
}

.manifesto-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== FEATURED WORK / VIEWS GRID ===== */
.views-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.view-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
}

.view-card img,
.view-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  background: var(--bg-elevated);
}

.view-card:hover img,
.view-card:hover video {
  transform: scale(1.05);
}

.view-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity 0.4s;
}

.view-card:hover .view-overlay {
  opacity: 1;
}

.view-overlay .view-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.view-overlay .view-tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.view-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
}

.view-card:hover .view-play-icon {
  opacity: 1;
}

/* ===== MUSIC PLAYER SECTION ===== */
.music-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.music-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.music-cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
}

.music-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-cover .cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  gap: 12px;
}

.music-cover .cover-placeholder .icon {
  font-size: 3rem;
  color: var(--accent-light);
}

.music-cover .cover-placeholder .title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.music-info .music-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.music-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.music-info .music-artist {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* Track List */
.track-list {
  margin-bottom: var(--space-xl);
}

.track-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.track-item:hover {
  background: rgba(255,255,255,0.02);
  padding-left: 8px;
}

.track-item.playing {
  color: var(--accent-light);
}

.track-num {
  width: 32px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-item.playing .track-num {
  color: var(--accent);
}

.track-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.track-duration {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Audio Progress */
.audio-progress {
  margin-bottom: var(--space-lg);
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.1s linear;
}

.progress-times {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.audio-controls button {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: color 0.2s;
  padding: 4px;
}

.audio-controls button:hover {
  color: var(--text-bright);
}

.audio-controls .play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-bright);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.audio-controls .play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

/* ===== DISCOGRAPHY PROJECTS ===== */
.disco-project {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.disco-project:last-of-type {
  border-bottom: none;
}

.disco-project-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.disco-project-embed {
  position: sticky;
  top: 100px;
}

.disco-project-embed iframe {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg);
}

.disco-project-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.disco-project-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.disco-project-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* Track list in disco projects */
.disco-project .track-list {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.disco-project .track-list::-webkit-scrollbar {
  width: 3px;
}

.disco-project .track-list::-webkit-scrollbar-track {
  background: var(--bg-elevated);
}

.disco-project .track-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

.track-item .feat {
  color: var(--text-muted);
  font-weight: 400;
}

.track-item.bonus {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin-left: -2px;
}

.track-item.bonus .track-num {
  color: var(--accent-light);
}

/* ===== EARLY PROJECTS GRID ===== */
.early-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.early-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s var(--ease-out);
}

.early-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.early-card-header {
  margin-bottom: var(--space-md);
}

.early-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-bright);
  margin: 6px 0 2px;
}

.early-card-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-list.compact .track-item {
  padding: 8px 0;
}

/* ===== SINGLES GRID ===== */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s;
}

.single-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

.single-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.single-title .feat {
  color: var(--text-muted);
  font-weight: 400;
}

.single-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 12px;
}

/* ===== FEATURED APPEARANCES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s;
}

.feature-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

.feature-song {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  white-space: nowrap;
}

.feature-details {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.feature-details em {
  color: var(--text-secondary);
}

.feature-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== SERVICES / CRAFT ===== */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.craft-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.craft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.craft-card:hover::before {
  transform: scaleX(1);
}

.craft-card:hover {
  background: var(--bg-elevated);
}

.craft-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.craft-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.craft-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FEATURED IN / PRESS ===== */
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.press-logos:hover {
  opacity: 0.7;
}

.press-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ===== INSTAGRAM / SOCIAL CTA ===== */
.social-cta {
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-cta .handle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
}

.social-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: var(--space-md);
  color: var(--text-bright);
}

.social-cta p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== MEMBERS / EXCLUSIVE ===== */
.members-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.members-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
}

.members-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  padding: 6px 18px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.members-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.members-card > p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.members-perks {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.perk .check {
  color: var(--accent-light);
  font-size: 0.9rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.newsletter > p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto var(--space-md);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 14px 32px;
  background: var(--text-bright);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

.newsletter .disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== LEAD CAPTURE (Full Form) ===== */
.lead-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
}

.lead-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
  text-align: center;
  color: var(--text-bright);
}

.lead-card > p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

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

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--text-bright);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: var(--space-sm);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: block;
}

.form-success .check-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--success);
}

/* ===== REFERRAL SECTION ===== */
.referral {
  border-bottom: 1px solid var(--border);
}

.referral-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.referral h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--text-bright);
}

.referral p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.referral-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.referral-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.referral-perk .icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ===== DISCORD EMBED ===== */
.discord-embed {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.discord-header {
  padding: var(--space-lg) var(--space-xl);
  background: #5865F2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.discord-header svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.discord-header h4 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.discord-header .member-count {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.discord-header .online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

.discord-body {
  padding: var(--space-xl);
  text-align: center;
}

.discord-body p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #5865F2;
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.3);
}

/* ===== SOCIAL LINKS GRID ===== */
.socials-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s;
}

.social-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-bright);
  transform: translateY(-1px);
}

.social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== DISCOGRAPHY CARDS ===== */
.disco-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.disco-scroll::-webkit-scrollbar {
  height: 4px;
}

.disco-scroll::-webkit-scrollbar-track {
  background: var(--bg-elevated);
}

.disco-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

.disco-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.disco-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.disco-cover {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.disco-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disco-cover .placeholder {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.disco-info {
  padding: var(--space-md);
}

.disco-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-bright);
}

.disco-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.disco-type {
  padding: 2px 8px;
  background: var(--accent-glow);
  color: var(--accent-light);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  background: var(--bg-elevated);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: white;
  font-size: 1.8rem;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.gallery-play-overlay svg {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  padding: 8px;
}

.gallery-item:hover .gallery-play-overlay {
  opacity: 1;
}

.gallery-item.playing .gallery-play-overlay {
  opacity: 0;
}

/* Photo Gallery Specific Styles */
.photo-gallery {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-photo {
  position: relative;
  cursor: pointer;
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.gallery-photo:hover .gallery-photo-overlay {
  opacity: 1;
}

.gallery-photo-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.gallery-photo img {
  filter: grayscale(0%);
  transition: filter 0.4s var(--ease-out), transform 0.6s var(--ease-out);
}

.gallery-photo:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* ===== PHOTO LIGHTBOX ===== */
.photo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.photo-lightbox.show {
  display: flex;
  opacity: 1;
}

.photo-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.photo-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: lightboxIn 0.4s var(--ease-out);
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo-lightbox-info {
  text-align: center;
  color: var(--text-bright);
}

.photo-lightbox-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--text-bright);
}

.photo-lightbox-info span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.photo-lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10002;
}

.photo-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.photo-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10002;
}

.photo-lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.photo-lightbox-prev {
  left: var(--space-xl);
}

.photo-lightbox-next {
  right: var(--space-xl);
}

@media (max-width: 768px) {
  .photo-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .photo-lightbox-prev {
    left: var(--space-md);
  }
  
  .photo-lightbox-next {
    right: var(--space-md);
  }
  
  .photo-lightbox-close {
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
  }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.video-modal-embed {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: lightboxIn 0.4s var(--ease-out);
}

.video-modal-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-bright);
  margin: 0;
}

.video-modal-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10003;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--accent);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95vw;
  }
  
  .video-modal-close {
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
  }
}

/* Video Thumbnail Styles */
.video-thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.view-card .video-thumbnail {
  position: absolute;
  inset: 0;
}

.gallery-item .video-thumbnail {
  position: absolute;
  inset: 0;
}

/* Gallery Audio Toggle */
.gallery-audio-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
  padding: 0;
}

.gallery-audio-btn:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

.gallery-item.playing .gallery-audio-btn,
.view-card.playing .gallery-audio-btn {
  display: flex;
}

.gallery-audio-btn svg {
  width: 16px;
  height: 16px;
}

/* View card playing state */
.view-card.playing .view-play-icon {
  opacity: 0;
}

/* ===== EXIT INTENT MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalIn 0.4s var(--ease-out);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-bright);
}

.modal .modal-sub {
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-bottom: var(--space-lg);
}

.modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.modal-form {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.modal-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.modal-form input:focus {
  border-color: var(--accent);
}

.modal-form button {
  padding: 12px 24px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.2s;
}

.modal-form button:hover {
  transform: translateY(-1px);
}

.modal-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 8px;
  margin-top: 8px;
}

.modal-dismiss:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== SMS MARKETING POPUP ===== */
.sms-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.sms-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.sms-modal {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  animation: smsModalIn 0.4s ease-out;
}

.sms-modal-content {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl);
  text-align: center;
}

@keyframes smsModalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sms-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.sms-modal-close:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 1);
}

.sms-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sms-title {
  font-family: 'Anton', var(--font-display), sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.sms-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.sms-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sms-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.sms-form input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.sms-form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sms-form input[type="tel"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.sms-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.sms-submit-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.sms-submit-btn:active {
  transform: translateY(0);
}

.sms-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.sms-privacy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.sms-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 8px;
  margin-top: 4px;
}

.sms-dismiss:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile - Half Screen */
@media (max-width: 768px) {
  .sms-modal-overlay {
    padding: 0;
    align-items: flex-end;
    justify-content: center;
  }
  
  .sms-modal {
    max-width: 100%;
    width: 100%;
    max-height: 50vh;
    min-height: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .sms-modal-content {
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .sms-icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    flex-shrink: 0;
  }
  
  .sms-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  
  .sms-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  
  .sms-subtitle {
    font-size: 0.75rem;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  
  .sms-description {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
  }
  
  .sms-form {
    gap: 10px;
    margin-bottom: var(--space-sm);
  }
  
  .sms-form input[type="tel"],
  .sms-submit-btn {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  
  .sms-privacy {
    font-size: 0.6rem;
    margin-top: 0;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }
  
  .sms-dismiss {
    font-size: 0.7rem;
    padding: 6px;
    margin-top: 0;
  }
  
  .sms-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .sms-modal {
    max-height: 55vh;
  }
  
  .sms-modal-content {
    padding: var(--space-md);
    gap: 8px;
  }
  
  .sms-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .sms-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  
  .sms-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  
  .sms-subtitle {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }
  
  .sms-description {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  
  .sms-form input[type="tel"],
  .sms-submit-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  
  .sms-privacy {
    font-size: 0.55rem;
  }
  
  .sms-dismiss {
    font-size: 0.65rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  font-family: 'Anton', 'Bebas Neue', Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-bright);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  line-height: 1.1;
}

.footer-brand .logo .accent {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--text-secondary);
}

/* ===== ANALYTICS PANEL ===== */
.analytics-panel {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}

.analytics-panel.show {
  display: block;
}

.analytics-panel h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-bright);
}

.analytics-panel .close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
}

.analytics-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}

.analytics-stat:last-child { border-bottom: none; }
.analytics-stat .label { color: var(--text-muted); }
.analytics-stat .value { font-weight: 600; color: var(--accent-light); font-family: var(--font-mono); }

.campaign-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  z-index: 999;
  display: none;
}

/* ===== HIDDEN SOUNDCLOUD IFRAME ===== */
.sc-iframe {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

/* ===== FLOATING MUSIC PLAYER ===== */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(8, 12, 8, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}

.player-progress {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}

.player-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  width: 0%;
  transition: width 0.3s linear;
  position: relative;
}

.player-progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0;
  transition: opacity 0.2s;
}

.player-progress:hover .player-progress-fill::after {
  opacity: 1;
}

.player-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  flex: 1;
}

.player-album-art {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-light);
  flex-shrink: 0;
  overflow: hidden;
}

.player-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-text {
  overflow: hidden;
}

.player-track-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.player-btn:hover {
  color: var(--text-bright);
  background: rgba(255,255,255,0.06);
}

.player-btn.play-btn {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
}

.player-btn.play-btn:hover {
  background: var(--accent-light);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}

.player-btn.play-btn.is-playing .icon-play { display: none; }
.player-btn.play-btn.is-playing .icon-pause { display: block !important; }

.player-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 80px;
  white-space: nowrap;
}

.player-time-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.player-album-select select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 6px 28px 6px 12px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237a917a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.player-album-select select:hover,
.player-album-select select:focus,
.player-album-select select:active {
  border-color: var(--accent);
  color: var(--text-bright);
  background-color: rgba(255,255,255,0.03);
}

@media (max-width: 768px) {
  .player-album-select select:active {
    transform: scale(0.98);
    background-color: rgba(255,255,255,0.05);
  }
}

.player-toggle-list {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 8px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.player-toggle-list:hover {
  color: var(--text-bright);
  background: rgba(255,255,255,0.06);
}

.player-toggle-list.active {
  color: var(--accent-light);
  background: var(--accent-glow);
}

/* Player Tracklist Panel */
.player-tracklist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  border-top: 0 solid var(--border);
}

.player-tracklist.open {
  max-height: 360px;
  border-top-width: 1px;
}

.player-tracklist-inner {
  max-height: 340px;
  overflow-y: auto;
  padding: 8px 24px 12px;
}

.player-tracklist-inner::-webkit-scrollbar {
  width: 3px;
}

.player-tracklist-inner::-webkit-scrollbar-track {
  background: transparent;
}

.player-tracklist-inner::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

.ptl-item {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  gap: 12px;
}

.ptl-item:hover {
  background: rgba(255,255,255,0.04);
}

.ptl-item.active {
  background: var(--accent-glow);
}

.ptl-item.active .ptl-num {
  color: var(--accent-light);
}

.ptl-item.active .ptl-name {
  color: var(--accent-light);
}

.ptl-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.ptl-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ptl-feat {
  color: var(--text-muted);
  font-weight: 400;
}

.ptl-dur {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Add bottom padding to footer so player doesn't cover it */
.footer {
  padding-bottom: 90px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 0.85rem;
  color: var(--text-primary);
  z-index: 10001;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .music-card { grid-template-columns: 280px 1fr; gap: var(--space-xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .views-grid { grid-template-columns: repeat(2, 1fr); }
  .referral-inner { grid-template-columns: 1fr; text-align: center; }
  .referral-perks { align-items: center; }
  .disco-project-grid { grid-template-columns: 320px 1fr; gap: var(--space-xl); }
  .singles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1rem; }

  .section-pad { padding: var(--space-3xl) 0; }
  .container { padding: 0 20px; }

  .music-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .music-cover { max-width: 300px; margin: 0 auto; }
  .audio-controls { justify-content: center; }

  .craft-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .views-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .press-logos { gap: var(--space-lg); }

  .members-perks { flex-direction: column; align-items: center; }

  .disco-project-grid {
    grid-template-columns: 1fr;
  }

  .disco-project-embed {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .early-projects-grid { grid-template-columns: 1fr; }
  .singles-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .feature-item { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Player responsive */
  .player-inner { padding: 8px 16px; gap: 12px; flex-wrap: wrap; }
  .player-album-select { 
    display: block; 
    order: 3;
    width: 100%;
    margin-top: 8px;
  }
  .player-album-select select {
    width: 100%;
    font-size: 0.8rem;
    padding: 10px 32px 10px 14px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .player-time { display: none; }
  .player-track-info { min-width: 0; flex: 1 1 auto; }
  .player-album-art { width: 38px; height: 38px; }
  .player-track-name { font-size: 0.8rem; }
  .player-controls { order: 1; }
  .player-toggle-list { order: 2; }
  .footer { padding-bottom: 100px; }

  /* Chatbox above music player on tablets */
  .chatbox {
    bottom: 100px;
  }
  .chat-toggle {
    bottom: 100px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .craft-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .socials-row { flex-direction: column; align-items: center; }
  
  .player-album-select select {
    font-size: 0.75rem;
    padding: 12px 36px 12px 16px;
  }
  .singles-grid { grid-template-columns: 1fr; }
}

/* ===== CHATBOX ===== */
.chat-toggle {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
  transition: all 0.3s var(--ease-out);
}

.chat-toggle:hover {
  background: var(--accent-light);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(22, 163, 74, 0.5);
}

.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.chat-badge.hidden {
  display: none;
}

.chatbox {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9500;
  width: 370px;
  max-height: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatboxIn 0.35s var(--ease-out);
}

.chatbox.open {
  display: flex;
}

@keyframes chatboxIn {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--accent);
  color: white;
  flex-shrink: 0;
}

.chatbox-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbox-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbox-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.chatbox-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  opacity: 0.85;
}

.chatbox-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.chatbox-close {
  background: none;
  border: none;
  color: white;
  opacity: 0.7;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
}

.chatbox-close:hover {
  opacity: 1;
}

.chatbox-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  max-height: 320px;
}

.chatbox-messages::-webkit-scrollbar {
  width: 3px;
}

.chatbox-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbox-messages::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

.chat-msg {
  display: flex;
  max-width: 85%;
}

.chat-msg.bot {
  align-self: flex-start;
}

.chat-msg.user {
  align-self: flex-end;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-word;
}

.chat-msg.bot .chat-bubble {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
  background: var(--accent);
  color: white;
  border-bottom-right-radius: 4px;
}

.chatbox-quick-replies {
  display: flex;
  gap: 6px;
  padding: 0 16px 10px;
  flex-wrap: wrap;
}

.quick-reply {
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.quick-reply:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.chatbox-input {
  display: flex;
  padding: 12px 14px;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.chatbox-input input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.chatbox-input input::placeholder {
  color: var(--text-muted);
}

.chatbox-input input:focus {
  border-color: var(--accent);
}

.chatbox-input button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.chatbox-input button:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}

@media (max-width: 480px) {
  .chatbox {
    bottom: 100px;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(85vh - 100px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .chat-toggle {
    bottom: 100px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ===== MERCH STORE ===== */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.merch-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 197, 94, 0.06);
}

.merch-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.merch-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 1px;
  z-index: 2;
}

.merch-info {
  padding: var(--space-md);
}

.merch-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.merch-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.merch-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merch-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
}

.merch-btn {
  padding: 8px 18px !important;
  font-size: 0.75rem !important;
}

@media (max-width: 1024px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .merch-info { padding: 10px; }
  .merch-info h4 { font-size: 0.85rem; }
  .merch-btn { padding: 6px 12px !important; font-size: 0.7rem !important; }
}

/* ===== VISUAL EFFECTS ===== */

/* Glitch text animation */
@keyframes glitchText {
  0% { transform: translate(0); filter: none; }
  10% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
  20% { transform: translate(2px, -1px); filter: hue-rotate(-90deg); }
  30% { transform: translate(-1px, 2px); clip-path: inset(40% 0 30% 0); }
  40% { transform: translate(1px, -2px); clip-path: inset(20% 0 60% 0); }
  50% { transform: translate(-2px, 0); filter: saturate(3); clip-path: none; }
  60% { transform: translate(2px, 1px); filter: none; }
  70% { transform: translate(0, -1px); }
  80% { transform: translate(-1px, 0); filter: brightness(1.2); }
  90% { transform: translate(1px, 1px); }
  100% { transform: translate(0); filter: none; }
}

/* Glow pulse for accent elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.1); }
  50% { box-shadow: 0 0 25px rgba(34, 197, 94, 0.25); }
}

/* Early section cards enhanced hover */
.early-section .early-card {
  transition: all 0.4s var(--ease-out), box-shadow 0.4s;
}

.early-section .early-card:hover {
  border-color: rgba(34, 197, 94, 0.3) !important;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.08), inset 0 0 30px rgba(34, 197, 94, 0.02);
  transform: translateY(-4px);
}

/* Floating animation for subtle movement */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Section headers glow accent */
.uppercase[style*="accent-light"] {
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* Enhanced view cards with glow on hover */
.view-card:hover {
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
}

/* Music player glow */
.music-player {
  box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.5);
}

/* Disco type badge glow */
.disco-type {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Nav CTA glow */
.nav-cta {
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.nav-cta:hover {
  box-shadow: 0 4px 25px rgba(34, 197, 94, 0.4) !important;
}

/* Hero title shimmer */
.hero h1 {
  text-shadow: 0 0 60px rgba(34, 197, 94, 0.1);
}

/* Smooth loading fade in */
body {
  animation: fadeInBody 0.8s ease;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}
