/* ================================================
   DJ HUEVO — styles.css
   Dark · Neon Green · Purple · Yellow
   Mobile-first, production-ready
   ================================================ */

/* ---- CUSTOM CURSOR ---- */
*, *::before, *::after { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--green, #2ECC71);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  will-change: transform;
}

.cursor-orb {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(46, 204, 113, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.23,1,0.32,1),
              height 0.35s cubic-bezier(0.23,1,0.32,1),
              border-color 0.25s ease,
              background 0.25s ease;
  will-change: transform;
  backdrop-filter: none;
}

.cursor-orb.hovering {
  width: 64px; height: 64px;
  border-color: rgba(46, 204, 113, 0.8);
  background: rgba(46, 204, 113, 0.06);
}

.cursor-orb.clicking {
  width: 24px; height: 24px;
  background: rgba(46, 204, 113, 0.2);
  border-color: var(--green, #2ECC71);
}

.cursor-dot.hovering {
  width: 4px; height: 4px;
  opacity: 0.6;
}

.cursor-dot.clicking {
  width: 8px; height: 8px;
  background: #fff;
}

.cursor-spore {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  will-change: transform, opacity;
  background: radial-gradient(circle, rgba(46,204,113,0.9) 0%, rgba(46,204,113,0) 70%);
}

@media (hover: none) {
  .cursor-dot, .cursor-orb { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ---- VARIABLES ---- */
:root {
  --green:       #2ECC71;
  --green-dim:   rgba(46, 204, 113, 0.12);
  --green-glow:  rgba(46, 204, 113, 0.25);
  --green-dark:  #27ae60;
  --purple:      #6B21A8;
  --purple-dim:  rgba(107, 33, 168, 0.15);
  --yellow:      #FDE047;
  --yellow-dim:  rgba(253, 224, 71, 0.12);
  --dark:        #070f09;
  --dark-2:      #0d1a0f;
  --dark-3:      #101f12;
  --dark-4:      #152215;
  --border:      #1a2e1c;
  --border-2:    #243526;
  --white:       #FFFFFF;
  --off-white:   #E8E8E8;
  --gray:        #888888;
  --gray-2:      #555555;
  --font:        'Inter', sans-serif;
  --max-w:       1100px;
  --narrow-w:    720px;
  --radius:      12px;
  --ease:        0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); background: none; border: none; }
input, select, textarea { font-family: var(--font); }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.c-green  { color: var(--green); }
.c-yellow { color: var(--yellow); }
.c-purple { color: var(--purple); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--narrow-w); }

.section        { padding: 96px 0; }
.section-alt    { background: var(--dark-2); }
.section-email  { background: linear-gradient(160deg, var(--dark-2) 0%, rgba(107,33,168,0.08) 100%); }

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  transition: all var(--ease);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(46,204,113,0.3);
  outline: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--border-2);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--gray);
  border-color: var(--border);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  color: var(--white);
  border-color: var(--border-2);
  outline: none;
}

.btn-full   { width: 100%; }
.btn-center { display: flex; margin: 0 auto; width: fit-content; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  background: rgba(7,15,9,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), padding var(--ease), background var(--ease);
}
.nav.scrolled {
  border-color: var(--border);
  padding: 12px 24px;
  background: rgba(7,15,9,0.96);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--ease);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img   { width: 28px; height: 28px; object-fit: contain; }
.nav-logo-text  {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.3px;
  transition: color var(--ease);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  background: var(--green);
  color: #000;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background var(--ease), transform var(--ease);
}
.nav-cta:hover { background: var(--green-dark); color: #000; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-cta { text-align: center; }
}

/* ---- LED LIGHT BAR DIVIDER ---- */
.led-bar {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}
.led-bar::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.04) 8%,
    rgba(255,255,255,0.55) 35%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 65%,
    rgba(255,255,255,0.04) 92%,
    transparent 100%
  );
  box-shadow:
    0 0 6px 1px rgba(255,255,255,0.35),
    0 0 18px 3px rgba(255,255,255,0.12),
    0 0 40px 6px rgba(200,240,220,0.07);
  animation: led-pulse 4s ease-in-out infinite;
}
@keyframes led-pulse {
  0%, 100% { opacity: 0.75; width: 65%; }
  50%       { opacity: 1;    width: 72%; }
}

/* ---- CONFETTI ---- */
.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 99996;
  border-radius: 1px;
  will-change: transform, opacity;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 60% 42%, rgba(18,68,36,1) 0%, rgba(9,30,16,1) 45%, rgba(7,16,10,1) 70%, #060d08 100%);
}

/* film grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.55;
  z-index: 4;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

/* main emerald nebula bloom — sits behind album art */
.hero-glow--green {
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, #1a6b38 0%, #0d3e1e 40%, transparent 72%);
  opacity: 0.8;
  top: 50%; left: 50%;
  transform: translate(-20%, -55%);
  animation: nebula-breathe-green 8s ease-in-out infinite;
}

/* deep purple edge haze */
.hero-glow--purple {
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, #1a0a30 0%, #0a0415 50%, transparent 75%);
  opacity: 0.5;
  bottom: -100px; right: -80px;
  animation: nebula-pulse 11s ease-in-out infinite reverse;
}

/* secondary deep forest bloom top-left */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, #0f3d20 0%, transparent 70%);
  opacity: 0.55;
  top: -80px; left: -60px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: nebula-pulse 13s ease-in-out infinite;
}

@keyframes nebula-breathe-green {
  0%, 100% { opacity: 0.7; transform: translate(-20%, -55%) scale(1); }
  50%       { opacity: 0.9;  transform: translate(-20%, -55%) scale(1.06); }
}

@keyframes nebula-pulse {
  0%, 100% { opacity: 0.45; scale: 1; }
  50%       { opacity: 0.65; scale: 1.06; }
}

/* star field — tiny white dots scattered */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-stars::before,
.hero-stars::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15%  20%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 72%  8%,  rgba(255,255,255,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 38%  65%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 88%  40%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 55%  82%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 28%  44%, rgba(255,255,255,0.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 92%  72%, rgba(255,255,255,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 8%   58%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 62% 28%, rgba(180,255,200,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 44%  12%, rgba(200,255,220,0.4)  0%, transparent 100%);
  background-size: 100% 100%;
  animation: stars-drift 30s linear infinite;
}
.hero-stars::after {
  background-image:
    radial-gradient(1px 1px at 23%  75%, rgba(255,255,255,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 67%  55%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 82%  18%, rgba(255,255,255,0.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 12%  33%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 90%, rgba(150,255,180,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 35%  5%,  rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 75%  88%, rgba(255,255,255,0.4)  0%, transparent 100%);
  animation-duration: 45s;
  animation-direction: reverse;
  opacity: 0.7;
}

@keyframes stars-drift {
  0%   { transform: translateY(0px) translateX(0px); }
  50%  { transform: translateY(-6px) translateX(3px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* subtle horizontal depth fog band */
.hero-fog {
  position: absolute;
  left: 0; right: 0;
  top: 45%; height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,30,18,0.35) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
  filter: blur(20px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(72px, 14vw, 152px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.88;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--off-white);
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

/* Countdown */
.countdown { margin-bottom: 36px; position: relative; }
.countdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.countdown-units {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.countdown-unit {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 10px;
  text-align: center;
  min-width: 0;
  box-shadow: none;
}
.countdown-num {
  display: block;
  font-size: clamp(52px, 9vw, 86px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -3px;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 20px rgba(46,204,113,0.5),
    0 0 50px rgba(46,204,113,0.2);
  transition: text-shadow 0.4s ease;
}
/* Secs number pulses on its own continuous loop */
#cd-secs {
  animation: secs-pulse 1s ease-in-out infinite;
}
@keyframes secs-pulse {
  0%, 49%, 100% {
    text-shadow: 0 0 20px rgba(46,204,113,0.5), 0 0 50px rgba(46,204,113,0.2);
  }
  50% {
    text-shadow: 0 0 32px rgba(46,204,113,0.85), 0 0 70px rgba(46,204,113,0.35);
  }
}
.countdown-unit-label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 6px;
  opacity: 0.7;
}
.countdown-sep {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: rgba(46,204,113,0.25);
  margin-bottom: 18px;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: 0;
}
/* Glowing underline that sweeps */
.countdown-line {
  width: 100%;
  max-width: 380px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(46,204,113,0.2) 15%,
    rgba(46,204,113,0.8) 50%,
    rgba(46,204,113,0.2) 85%,
    transparent 100%
  );
  margin-top: 14px;
  position: relative;
  z-index: 1;
  animation: led-pulse 3.5s ease-in-out infinite;
}

@media (max-width: 480px) {
  .countdown-unit { padding: 0 6px; }
  .countdown-num  { letter-spacing: -2px; }
}

/* Audio player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  max-width: 380px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.audio-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
  color: #000;
  font-size: 13px;
}
.audio-btn:hover {
  background: var(--green-dark);
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(46,204,113,0.4);
}
.audio-icon { line-height: 1; pointer-events: none; }
.audio-info { flex: 1; min-width: 0; }
.audio-track {
  display: block;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-status {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}
.audio-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}
.audio-progress {
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 0.8s linear;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero album art */
.hero-art {
  position: relative;
  flex-shrink: 0;
}
.hero-album-art {
  width: 280px;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.hero-art-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(46,204,113,0.15) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; }
  .hero-album-art { width: 200px; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 20px 60px; }
  .hero-title { letter-spacing: -2px; }
  .countdown-unit { min-width: 56px; padding: 8px 10px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ---- LISTEN BAR ---- */
.listen-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.listen-bar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.listen-bar-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border: 1px solid rgba(46,204,113,0.25);
  border-radius: 100px;
  transition: all var(--ease);
}
.listen-bar-link:hover {
  background: var(--green-dim);
  border-color: var(--green);
}

/* ---- MUSIC ---- */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--ease);
  min-width: 180px;
  justify-content: center;
}
.platform-icon { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }

.platform-spotify { background: #1DB954; color: #fff; border-color: #1DB954; }
.platform-spotify:hover { background: #17a84a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,185,84,0.3); }

.platform-apple { background: #fc3c44; color: #fff; border-color: #fc3c44; }
.platform-apple:hover { background: #e0353d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(252,60,68,0.3); }

.platform-youtube { background: #FF0000; color: #fff; border-color: #FF0000; }
.platform-youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.3); }

.spotify-wrap {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.music-note {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}
.music-note strong { color: var(--white); }

@media (max-width: 600px) {
  .platforms { flex-direction: column; }
  .platform-btn { width: 100%; }
}

/* ---- MERCH ---- */
.merch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid rgba(253,224,71,0.2);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.merch-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.merch-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.merch-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.merch-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.merch-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  gap: 8px;
}
.merch-card-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--off-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.merch-card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.shopify-wrap { margin-bottom: 32px; min-height: 40px; }
.merch-note {
  font-size: 12px;
  color: var(--gray-2);
  text-align: center;
  margin-bottom: 24px;
}

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

/* ---- BOOKING ---- */
#booking {
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-cybertruck.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  filter: brightness(0.18) saturate(0.6);
  z-index: 0;
  transform: scale(1.03);
}
#booking::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,15,9,0.55) 0%, transparent 25%, transparent 75%, rgba(7,15,9,0.7) 100%),
    linear-gradient(90deg, rgba(7,15,9,0.4) 0%, transparent 50%, rgba(7,15,9,0.4) 100%);
  z-index: 1;
}
#booking .container {
  position: relative;
  z-index: 2;
}

/* Cybertruck LED accent — top border of booking section */
#booking .led-bar-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.02) 5%,
    rgba(255,255,255,0.7) 30%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.7) 70%,
    rgba(255,255,255,0.02) 95%,
    transparent 100%
  );
  box-shadow:
    0 0 8px 2px rgba(255,255,255,0.5),
    0 0 24px 4px rgba(200,255,220,0.15);
  z-index: 3;
  animation: led-pulse 6s ease-in-out infinite;
}

.booking-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.booking-meta-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  flex: 1;
  min-width: 150px;
}
.booking-meta-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.booking-meta-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.booking-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; color: var(--off-white); }
.req { color: var(--green); }

.form-input {
  background: var(--dark-4);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}
.form-input::placeholder { color: var(--gray-2); }
.form-input.error { border-color: #ef4444; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.form-select option { background: var(--dark-3); color: var(--white); }
.form-textarea { resize: vertical; min-height: 96px; }
.form-row       { margin-bottom: 20px; }
.form-row-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--gray-2); text-align: center; margin-bottom: 18px; line-height: 1.6; }

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }
  .booking-meta { flex-direction: column; }
}

.form-success {
  background: rgba(46,204,113,0.07);
  border: 1px solid rgba(46,204,113,0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.form-success-title { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.form-success-sub   { font-size: 14px; color: var(--gray); }

/* ---- ABOUT ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-para { font-size: 16px; color: var(--off-white); line-height: 1.8; margin-bottom: 18px; }
.about-para strong { color: var(--green); }
.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.about-art-frame {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.about-album { width: 100%; display: block; }

.about-tracks-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.track-list { display: flex; flex-direction: column; gap: 2px; }
.track-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.track-item:last-child { border-bottom: none; }
.track-num { font-size: 11px; font-weight: 700; color: var(--gray-2); min-width: 20px; font-variant-numeric: tabular-nums; }
.track-name { font-size: 13px; font-weight: 500; color: var(--off-white); }

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-art { max-width: 400px; }
}

/* ---- EMAIL CAPTURE ---- */
.email-form { max-width: 480px; margin: 0 auto; }
.email-row { display: flex; gap: 8px; margin-bottom: 10px; }
.email-input { flex: 1; }
.email-disclaimer { font-size: 12px; color: var(--gray-2); text-align: center; }

@media (max-width: 500px) {
  .email-row { flex-direction: column; }
  .email-row .btn { width: 100%; }
}

/* ---- FOOTER ---- */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo  { width: 32px; height: 32px; object-fit: contain; }
.footer-name  { display: block; font-size: 17px; font-weight: 900; letter-spacing: 2px; }
.footer-location { display: block; font-size: 11px; color: var(--gray); letter-spacing: 1px; margin-top: 2px; }
.footer-nav   { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-link  { font-size: 13px; color: var(--gray); transition: color var(--ease); }
.footer-link:hover { color: var(--white); }
.footer-socials { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-social { font-size: 12px; font-weight: 600; color: var(--gray); transition: color var(--ease); }
.footer-social:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy, .footer-credit { font-size: 12px; color: var(--gray-2); }
.footer-credit-link { color: var(--green); transition: color var(--ease); }
.footer-credit-link:hover { color: var(--green-dark); }

@media (max-width: 600px) {
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- PRINT ---- */
@media print {
  .nav, .hero-bg, .audio-player, .listen-bar { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 40px 0; }
}

/* ================================================
   MOTION & VISUAL UPGRADES
   ================================================ */

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, rgba(107,33,168,0.85) 100%);
  z-index: 99999;
  box-shadow: 0 0 10px rgba(46,204,113,0.6), 0 0 20px rgba(46,204,113,0.2);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ---- CYBERTRUCK HERO BACKGROUND ---- */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background: url('images/hero-cybertruck.jpg') center 30% / cover no-repeat;
  opacity: 0.28;
  z-index: 1;
  filter: saturate(0.55) brightness(0.75);
  pointer-events: none;
}

/* ---- ALBUM ART — FLOAT + GLOW ---- */
.hero-art-inner {
  position: relative;
  animation: hero-float 7s ease-in-out infinite;
}

/* Inner glow — tight green halo */
.hero-art-glow {
  position: absolute;
  inset: -36px;
  background: radial-gradient(ellipse, rgba(46,204,113,0.75) 0%, rgba(46,204,113,0.25) 45%, transparent 72%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(24px);
  animation: glow-breathe 9s ease-in-out infinite;
  will-change: opacity;
}

/* Outer glow — wide ambient bloom */
.hero-art-glow-outer {
  position: absolute;
  inset: -90px;
  background: radial-gradient(ellipse, rgba(46,204,113,0.30) 0%, rgba(107,33,168,0.18) 48%, transparent 72%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  animation: glow-breathe 14s ease-in-out infinite reverse;
  will-change: opacity;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1;    }
}

/* ---- SIDE BREATHING GLOWS (bedroom LED effect) ---- */
.hero-side-glow {
  position: absolute;
  top: 0;
  width: 260px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.hero-side-glow--left {
  left: 0;
  background: linear-gradient(90deg,
    rgba(46,204,113,0.22) 0%,
    rgba(46,204,113,0.08) 55%,
    transparent 100%
  );
  animation: side-breathe 9s ease-in-out infinite;
}
.hero-side-glow--right {
  right: 0;
  background: linear-gradient(-90deg,
    rgba(107,33,168,0.28) 0%,
    rgba(107,33,168,0.10) 55%,
    transparent 100%
  );
  animation: side-breathe 11s ease-in-out infinite 1.5s;
}
@keyframes side-breathe {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ---- DROP INDICATOR (replaces countdown) ---- */
.drop-indicator {
  margin-bottom: 36px;
  position: relative;
}
.drop-glow {
  position: absolute;
  top: 50%; left: -10px;
  width: 320px; height: 90px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(46,204,113,0.22) 0%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 10s ease-in-out infinite;
  will-change: opacity;
}
.drop-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.drop-track {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
  z-index: 1;
}
.drop-sweep {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 55%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(46,204,113,0.25) 20%,
    rgba(46,204,113,1) 65%,
    rgba(46,204,113,0.5) 85%,
    transparent 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 8px 2px rgba(46,204,113,0.4);
  animation: sweep-slide 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes sweep-slide {
  0%   { transform: translateX(-120%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(230%); opacity: 0; }
}
.drop-text {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.drop-days {
  color: var(--green);
  text-shadow:
    0 0 18px rgba(46,204,113,0.7),
    0 0 40px rgba(46,204,113,0.3);
  animation: num-pulse 3.5s ease-in-out infinite;
}
@keyframes num-pulse {
  0%, 100% {
    text-shadow: 0 0 18px rgba(46,204,113,0.7), 0 0 40px rgba(46,204,113,0.3);
  }
  50% {
    text-shadow: 0 0 28px rgba(46,204,113,1), 0 0 60px rgba(46,204,113,0.5), 0 0 90px rgba(46,204,113,0.2);
  }
}

/* ---- COUNTDOWN GLOW ---- */
.countdown {
  position: relative;
}
.countdown-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 380px; height: 100px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(46,204,113,0.28) 0%, rgba(46,204,113,0.06) 60%, transparent 80%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 6s ease-in-out infinite 1s;
}
.countdown-units { position: relative; z-index: 1; }
.countdown-label { position: relative; z-index: 1; }

/* ---- SECTION AMBIENT GLOWS ---- */
/* Green ambient left of section titles */
.section-title {
  position: relative;
}
.section-title::before {
  content: '';
  position: absolute;
  top: 50%; left: -30px;
  width: 260px; height: 80px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(46,204,113,0.18) 0%, transparent 72%);
  filter: blur(22px);
  pointer-events: none;
  z-index: -1;
}

/* Purple-green ambient behind spotify embed */
.spotify-wrap::before {
  content: '';
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at 50% 50%, rgba(46,204,113,0.14) 0%, rgba(107,33,168,0.10) 55%, transparent 78%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.spotify-wrap iframe { position: relative; z-index: 1; }

/* ---- HERO VISUAL — CYBERTRUCK PHOTO (UNUSED — KEPT FOR REFERENCE) ---- */
.hero-visual-wrap {
  position: relative;
  width: 400px;
  flex-shrink: 0;
  animation: hero-float 7s ease-in-out infinite;
}

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

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.8),
    0 0 0 1px rgba(46,204,113,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}

/* Ambient glow behind photo */
.hero-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse, rgba(46,204,113,0.14) 0%, rgba(107,33,168,0.06) 55%, transparent 78%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Neon left-edge scan line */
.hero-photo-neon {
  position: absolute;
  top: 8%;
  left: -2px;
  width: 3px;
  height: 84%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(46,204,113,0.3) 15%,
    rgba(46,204,113,1) 50%,
    rgba(46,204,113,0.3) 85%,
    transparent 100%
  );
  border-radius: 3px;
  box-shadow:
    0 0 12px 3px rgba(46,204,113,0.6),
    0 0 28px 8px rgba(46,204,113,0.2);
  z-index: 2;
  animation: neon-scan 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes neon-scan {
  0%, 100% { opacity: 0.6; height: 84%; top: 8%; }
  50%       { opacity: 1;   height: 88%; top: 6%; }
}

/* Subtle scanline overlay */
.hero-photo-scanline {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.03) 3px,
    rgba(0,0,0,0.03) 4px
  );
  z-index: 2;
  pointer-events: none;
}

/* Floating album badge */
.hero-album-card {
  position: absolute;
  bottom: -22px;
  left: -32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(8,18,10,0.92);
  border: 1px solid rgba(46,204,113,0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.03);
  animation: card-float 5.5s ease-in-out infinite 0.8s;
  cursor: default;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0)  rotate(-1.5deg); }
  50%       { transform: translateY(-9px) rotate(0deg); }
}

.hero-album-card-img {
  width: 46px; height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-album-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-album-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.hero-album-card-sub {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-album-card-dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-left: 4px;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(46,204,113,0.8);
}

@media (max-width: 900px) {
  .hero-visual-wrap {
    width: 260px;
    margin: 0 auto;
    animation: none;
  }
  .hero-album-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    animation: none;
  }
}

/* ---- HERO TITLE CHARACTER ANIMATION ---- */
.hero-title {
  perspective: 600px;
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px) rotateX(35deg);
  animation: char-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

@keyframes char-in {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* ---- AUDIO VISUALIZER ---- */
.audio-viz {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  flex-shrink: 0;
  padding: 0 2px;
}

.viz-bar {
  width: 3px;
  height: 3px;
  min-height: 3px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
  opacity: 0.35;
  transform-origin: bottom center;
}

.audio-player.playing .viz-bar { opacity: 1; }

.audio-player.playing .viz-bar:nth-child(1) { animation: vbar 0.85s ease-in-out infinite; }
.audio-player.playing .viz-bar:nth-child(2) { animation: vbar 0.65s ease-in-out infinite 0.14s; }
.audio-player.playing .viz-bar:nth-child(3) { animation: vbar 0.50s ease-in-out infinite 0.06s; }
.audio-player.playing .viz-bar:nth-child(4) { animation: vbar 0.75s ease-in-out infinite 0.22s; }
.audio-player.playing .viz-bar:nth-child(5) { animation: vbar 0.60s ease-in-out infinite 0.09s; }
.audio-player.playing .viz-bar:nth-child(6) { animation: vbar 0.95s ease-in-out infinite 0.18s; }

@keyframes vbar {
  0%, 100% { height: 3px; }
  50%       { height: 18px; }
}

/* ---- ALL PLATFORMS CTA ---- */
.platforms-all-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  transition: all var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.platforms-all-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-dim);
  opacity: 0;
  transition: opacity var(--ease);
}
.platforms-all-cta:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(46,204,113,0.15); }
.platforms-all-cta:hover::before { opacity: 1; }

.platforms-all-icon {
  display: flex;
  align-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.platforms-all-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 4px;
}

/* ---- EXTRA PLATFORM BUTTONS ---- */
.platform-amazon {
  background: #FF9900; color: #000; border-color: #FF9900;
}
.platform-amazon:hover {
  background: #e68a00; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.35);
}

.platform-tidal {
  background: #111; color: #fff; border-color: #333;
}
.platform-tidal:hover {
  background: #1a1a1a; border-color: rgba(255,255,255,0.5); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

.platform-deezer {
  background: #9B59B6; color: #fff; border-color: #9B59B6;
}
.platform-deezer:hover {
  background: #8e44ad; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,89,182,0.35);
}

/* ---- MERCH CTA SECTION ---- */
.merch-cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Radial spotlight background */
.merch-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(46,204,113,0.07) 0%, rgba(107,33,168,0.05) 55%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 12s ease-in-out infinite;
  will-change: opacity;
}

.merch-cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.merch-cta-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Expanding ring animations */
.merch-cta-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.merch-cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(46,204,113,0.25);
  animation: ring-expand 3s ease-out infinite;
  pointer-events: none;
}
.merch-cta-ring--2 {
  animation-delay: 1.5s;
  border-color: rgba(46,204,113,0.15);
}

@keyframes ring-expand {
  0%   { transform: translate(-50%, -50%) scale(0.7); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* The main shop button */
.merch-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  background: var(--green);
  color: #000;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow:
    0 0 0 0 rgba(46,204,113,0.5),
    0 16px 48px rgba(46,204,113,0.3);
  animation: btn-pulse 3s ease-in-out infinite;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.25s ease,
              background 0.2s ease;
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(46,204,113,0.4), 0 16px 48px rgba(46,204,113,0.25);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(46,204,113,0), 0 16px 60px rgba(46,204,113,0.45);
  }
}

.merch-cta-btn:hover {
  transform: scale(1.06) translateY(-2px);
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 24px 64px rgba(46,204,113,0.5);
}

.merch-cta-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.merch-cta-text {
  line-height: 1;
}

.merch-cta-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.merch-cta-btn:hover .merch-cta-arrow {
  transform: translateX(4px);
}

.merch-cta-sub {
  font-size: 12px;
  color: var(--gray-2);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

/* ---- MERCH PREVIEW GRID ---- */
.merch-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.merch-preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px 24px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Color glow per card */
.merch-preview-card--green  { color: var(--green); }
.merch-preview-card--purple { color: #a855f7; }
.merch-preview-card--yellow { color: var(--yellow); }

.merch-preview-card--green:hover  { border-color: var(--green);  box-shadow: 0 20px 60px rgba(46,204,113,0.15),  0 0 0 1px rgba(46,204,113,0.2); }
.merch-preview-card--purple:hover { border-color: #a855f7;       box-shadow: 0 20px 60px rgba(168,85,247,0.15),  0 0 0 1px rgba(168,85,247,0.2); }
.merch-preview-card--yellow:hover { border-color: var(--yellow); box-shadow: 0 20px 60px rgba(253,224,71,0.15),  0 0 0 1px rgba(253,224,71,0.2); }

.merch-preview-card:hover { transform: translateY(-6px); }

/* Ambient glow blob behind hoodie */
.merch-preview-card::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.06;
  filter: blur(40px);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.merch-preview-card:hover::before { opacity: 0.12; }

.merch-preview-hoodie {
  width: 120px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hoodie-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px currentColor);
  transition: filter 0.3s ease;
}
.merch-preview-card:hover .hoodie-svg {
  filter: drop-shadow(0 0 20px currentColor);
}

.merch-preview-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.merch-preview-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}
.merch-preview-color {
  font-size: 11px;
  font-weight: 600;
  color: currentColor;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.merch-preview-cta {
  font-size: 12px;
  font-weight: 700;
  color: currentColor;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}
.merch-preview-card:hover .merch-preview-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .merch-preview-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ---- MERCH CARD 3D TILT ---- */
.merch-card {
  transform-style: preserve-3d;
  perspective: 800px;
}
.merch-card:hover {
  border-color: var(--green);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(46,204,113,0.08);
}

/* Shimmer sweep on merch card hover */
.merch-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: var(--radius);
}
.merch-card:hover::after { opacity: 1; }

/* ---- ENHANCED BUTTON GLOW ---- */
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(46,204,113,0.4), 0 0 0 1px rgba(46,204,113,0.3);
}

/* ---- LISTEN BAR ENHANCED ---- */
.listen-bar-link {
  position: relative;
  overflow: hidden;
}
.listen-bar-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-dim);
  opacity: 0;
  transition: opacity var(--ease);
  border-radius: inherit;
}
.listen-bar-link:hover::before { opacity: 1; }

/* ---- TRACK LIST HOVER ---- */
.track-item {
  transition: background var(--ease), padding-left var(--ease);
  border-radius: 6px;
  padding-left: 4px;
}
.track-item:hover {
  background: rgba(46,204,113,0.05);
  padding-left: 10px;
}
.track-item:hover .track-name { color: var(--white); }
.track-item:hover .track-num  { color: var(--green); }

/* ---- COUNTDOWN UNIT PULSE ---- */
.countdown-unit {
  transition: none;
  position: relative;
  overflow: visible;
}

/* ---- SECTION LABEL UNDERLINE ACCENT ---- */
.section-label {
  position: relative;
}
.section-label::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--green);
  margin-top: 5px;
  opacity: 0.5;
}

/* ---- ABOUT ART HOVER ---- */
.about-art-frame {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.about-art-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 40px rgba(46,204,113,0.08);
}

/* ---- BOOKING META PULSE ---- */
.booking-meta-item {
  transition: border-left-color var(--ease), background var(--ease);
}
.booking-meta-item:hover {
  background: rgba(46,204,113,0.04);
  border-left-color: var(--green);
}

/* ── MERCH PARTICLES ── */
.merch-float-char {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-weight: 900;
  font-family: 'Space Grotesk', 'Courier New', monospace;
  line-height: 1;
  will-change: transform, opacity;
  animation: merch-char-rise var(--dur, 7s) linear forwards;
  z-index: 0;
}
@keyframes merch-char-rise {
  0%   { opacity: 0;   transform: translateY(0px)    translateX(0px)                        scale(0.55); }
  10%  { opacity: 1; }
  50%  { opacity: 0.85; transform: translateY(-90px)  translateX(calc(var(--drift,30px)*0.45)) scale(1.05); }
  85%  { opacity: 0.5; }
  100% { opacity: 0;   transform: translateY(-200px) translateX(var(--drift, 30px))         scale(0.85); }
}

.merch-sparkle {
  position: absolute;
  pointer-events: none;
  width: var(--sz, 10px);
  height: var(--sz, 10px);
  will-change: transform, opacity;
  animation: merch-sparkle-pop var(--dur, 1s) ease-out forwards;
}
.merch-sparkle::before,
.merch-sparkle::after {
  content: '';
  position: absolute;
  background: rgba(46,204,113,var(--alpha,0.85));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(46,204,113,0.55);
}
.merch-sparkle::before { width:100%; height:2px; top:50%; left:0; transform:translateY(-50%); }
.merch-sparkle::after  { width:2px; height:100%; left:50%; top:0; transform:translateX(-50%); }
@keyframes merch-sparkle-pop {
  0%   { opacity:1; transform:scale(0.2) rotate(0deg); }
  35%  { opacity:1; transform:scale(1.5) rotate(35deg); }
  100% { opacity:0; transform:scale(0.4) rotate(70deg) translateY(-16px); }
}

/* diagonal 45° variant on sparkles */
.merch-sparkle--diag::before { transform:translateY(-50%) rotate(45deg); }
.merch-sparkle--diag::after  { transform:translateX(-50%) rotate(45deg); }

@media (prefers-reduced-motion: reduce) {
  .hero-visual-wrap, .hero-album-card, .hero-photo-neon,
  [data-reveal], .char, .viz-bar,
  .merch-float-char, .merch-sparkle { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .char { opacity: 1; transform: none; }
  .merch-float-char { display: none; }
  .merch-sparkle { display: none; }
}
