/* ============================================================
   DJ Kasi DuchAz — Premium CSS  v2.0
   Brand: black + hot pink / magenta neon
   ============================================================ */

/* ── WordPress admin bar compensation ── */
html { scroll-behavior: smooth; }
.admin-bar .nav { top: 32px; }
.admin-bar .nav.scrolled { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
  .admin-bar .nav.scrolled { top: 46px; }
}

/* ── WordPress custom logo fix ── */
.nav-logo .custom-logo-link,
.mobile-menu-header .custom-logo-link,
.footer-brand .custom-logo-link {
  display: block;
  line-height: 0;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.nav-logo .custom-logo-link img,
.nav-logo .custom-logo {
  height: 44px !important;
  width: auto !important;
  display: block;
  filter:
    drop-shadow(0 0 3px #fff)
    drop-shadow(0 2px 6px rgba(0,0,0,0.9))
    drop-shadow(0 0 12px rgba(232,25,127,0.7));
}
@media (min-width: 768px) {
  .nav-logo .custom-logo-link img,
  .nav-logo .custom-logo { height: 52px !important; }
}
.mobile-menu-header .custom-logo-link img,
.mobile-menu-header .custom-logo {
  height: 38px !important;
  width: auto !important;
  filter: drop-shadow(0 0 8px rgba(232,25,127,0.7));
}
.footer-brand .custom-logo-link img,
.footer-brand .custom-logo {
  width: 170px !important;
  height: auto !important;
  filter: drop-shadow(0 0 10px rgba(232,25,127,0.55));
}
@media (min-width: 768px) {
  .footer-brand .custom-logo-link img,
  .footer-brand .custom-logo { width: 210px !important; }
}

/* ── WordPress body classes reset ── */
.home, .page { background: var(--black); }

/* ── Remove WP default margins/paddings ── */
.wp-site-blocks { padding: 0 !important; }
.entry-content, .page-content { margin: 0; padding: 0; }

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

:root {
  --pink:        #e8197f;
  --pink-light:  #ff5db8;
  --pink-pale:   #ffaad8;
  --pink-dim:    #8a0f4a;
  --pink-glow:   rgba(232,25,127,0.55);
  --black:       #000;
  --dark:        #060306;
  --dark2:       #0d080d;
  --dark3:       #140a14;
  --white:       #fff;
  --muted:       #888;
  --muted2:      #4a3a4a;
  --border:      rgba(232,25,127,0.18);
  --border-dim:  rgba(232,25,127,0.08);
  --glow:        0 0 40px rgba(232,25,127,0.55);
  --glow-sm:     0 0 18px rgba(232,25,127,0.4);
  --glow-lg:     0 0 80px rgba(232,25,127,0.35), 0 0 160px rgba(232,25,127,0.15);
  --radius:      14px;
  --transition:  .3s ease;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--pink-light);
  box-shadow: 0 0 10px var(--pink-light), 0 0 20px var(--pink);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232,25,127,0.6);
  transition: width .25s ease, height .25s ease, border-color .25s ease, transform .08s linear;
}
.cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: var(--pink-light);
  background: rgba(232,25,127,0.06);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%,100% { background-position: 0 0; }
  10% { background-position: -5% -10%; }
  20% { background-position: -15% 5%; }
  30% { background-position: 7% -25%; }
  40% { background-position: -5% 25%; }
  50% { background-position: -15% 10%; }
  60% { background-position: 15% 0%; }
  70% { background-position: 0% 15%; }
  80% { background-position: 3% 35%; }
  90% { background-position: -10% 10%; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; font-family: inherit; }
@media (hover: none) { button { cursor: pointer; } }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  color: var(--white);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 0;
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--pink), var(--pink-light), transparent);
  border-radius: 2px;
}
.section-title.centered { display: block; text-align: center; }
.section-title.centered::after { left: 50%; transform: translateX(-50%); }

.section + .section { border-top: 1px solid var(--border-dim); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  border: none; white-space: nowrap;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left .45s ease;
  pointer-events: none;
}
.btn:hover::before { left: 150%; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (min-width: 768px) { .btn { padding: 14px 30px; font-size: 0.78rem; } .btn svg { width: 16px; height: 16px; } }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #c4106a 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,25,127,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(232,25,127,0.6), 0 0 0 1px rgba(232,25,127,0.5);
}
.btn-primary:active { transform: translateY(-1px) scale(1.01); }

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-outline:hover {
  background: rgba(232,25,127,0.12);
  border-color: var(--pink-light);
  color: var(--pink-pale);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,25,127,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-outline:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--pink-light);
  border: 1px solid var(--border); padding: 11px 24px; border-radius: 50px;
}
.btn-ghost:hover { background: rgba(232,25,127,0.08); border-color: var(--pink); }

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

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .60s; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--pink);
  padding: 11px 0;
  position: relative;
  z-index: 1001;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  font-size: 0.6rem;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
}
@media (min-width: 768px) { .nav { padding: 22px 48px; } }

.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
@media (min-width: 768px) { .nav.scrolled { padding: 14px 48px; } }

.nav-logo img {
  height: 52px; width: auto;
  filter:
    drop-shadow(0 0 3px #fff)
    drop-shadow(0 2px 6px rgba(0,0,0,0.9))
    drop-shadow(0 0 12px rgba(232,25,127,0.7));
  transition: filter var(--transition);
}
@media (min-width: 768px) { .nav-logo img { height: 64px; } }
.nav-logo:hover img {
  filter:
    drop-shadow(0 0 4px #fff)
    drop-shadow(0 2px 8px rgba(0,0,0,0.95))
    drop-shadow(0 0 20px rgba(255,93,184,1))
    drop-shadow(0 0 36px rgba(232,25,127,0.7));
}

.nav-links { display: none; }
@media (min-width: 900px) {
  .nav-links {
    display: flex; align-items: center; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--pink-light);
    transform: scaleX(0); transform-origin: right;
    transition: transform .3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--pink-light)) !important;
    color: var(--white) !important; padding: 10px 24px;
    border-radius: 50px; font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(232,25,127,0.3);
  }
  .nav-cta::after { display: none; }
  .nav-cta:hover { box-shadow: var(--glow); transform: translateY(-2px); }
}

.nav-burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
@media (min-width: 900px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
  width: min(300px, 85vw);
  background: var(--dark2); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -12px 0 60px rgba(0,0,0,0.7);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu[hidden] { display: flex; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--border);
}
.mobile-menu-header img { height: 38px; width: auto; filter: drop-shadow(0 0 8px rgba(232,25,127,0.7)); }
.mobile-menu-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(232,25,127,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background var(--transition);
}
.mobile-menu-close:hover { background: rgba(232,25,127,0.25); }
.mobile-menu-close svg { width: 16px; height: 16px; }

.mobile-menu ul { list-style: none; padding: 20px 0; flex: 1; }
.mobile-menu li { border-bottom: 1px solid rgba(232,25,127,0.06); }
.mobile-menu a {
  display: block; padding: 16px 26px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--pink-light); background: rgba(232,25,127,0.06); padding-left: 34px; }

.nav-cta-mobile {
  display: block; margin: 20px 22px 26px;
  padding: 15px; text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white) !important; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(232,25,127,0.3);
}
.nav-cta-mobile:hover { box-shadow: var(--glow); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
@media (min-width: 768px) { .hero { align-items: center; min-height: 100vh; } }

.hero-bg {
  position: absolute; inset: 0;
  background: var(--black) center top / cover no-repeat;
}
@media (min-width: 768px) { .hero-bg { background-position: center 15%; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 20%,
    rgba(0,0,0,0.4)  60%,
    rgba(0,0,0,0.95) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(232,25,127,0.22) 0%, transparent 55%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-overlay {
    background:
      radial-gradient(ellipse at 65% 40%, rgba(232,25,127,0.06) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.92) 100%);
  }
  .hero-overlay::after {
    background: radial-gradient(ellipse at 50% 85%, rgba(232,25,127,0.14) 0%, transparent 55%);
  }
}

/* Animated vignette pulse */
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  animation: vignette-breathe 6s ease-in-out infinite alternate;
}
@keyframes vignette-breathe {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px 60px;
  width: 100%; max-width: 900px;
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 768px) { .hero-content { padding: 0 40px; margin-top: 6vh; } }

.hero-logo {
  width: clamp(200px, 60vw, 560px);
  height: auto; margin-bottom: 0px;
  filter:
    drop-shadow(0 0 4px #fff)
    drop-shadow(0 3px 12px rgba(0,0,0,0.95))
    drop-shadow(0 0 24px rgba(232,25,127,0.9))
    drop-shadow(0 0 60px rgba(232,25,127,0.5));
  animation: logo-neon 3.5s ease-in-out infinite alternate;
}
@media (min-width: 768px) { .hero-logo { width: clamp(300px, 36vw, 520px); margin-bottom: 4px; } }
@keyframes logo-neon {
  from {
    filter:
      drop-shadow(0 0 3px #fff)
      drop-shadow(0 3px 10px rgba(0,0,0,0.95))
      drop-shadow(0 0 16px rgba(232,25,127,0.85))
      drop-shadow(0 0 45px rgba(232,25,127,0.35));
  }
  to {
    filter:
      drop-shadow(0 0 6px #fff)
      drop-shadow(0 3px 14px rgba(0,0,0,0.98))
      drop-shadow(0 0 30px rgba(255,93,184,1))
      drop-shadow(0 0 80px rgba(232,25,127,0.6));
  }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 13vw, 7.5rem);
  line-height: 0.88; letter-spacing: 0.04em; margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, var(--pink-pale) 45%, var(--pink-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 24px rgba(232,25,127,0.45));
}

.hero-tagline {
  font-size: clamp(0.82rem, 3.5vw, 1.1rem);
  color: rgba(255,255,255,0.75); letter-spacing: 0.1em;
  margin-bottom: 16px; font-weight: 300;
  text-transform: uppercase;
}

.hero-tags {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px;
}
.hero-tags span {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink-light); border: 1px solid rgba(232,25,127,0.3);
  padding: 5px 14px; border-radius: 50px; background: rgba(232,25,127,0.08);
  backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease;
}
.hero-tags span:hover { background: rgba(232,25,127,0.18); border-color: var(--pink-light); }

.hero-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-btns .btn { flex: 0 0 auto; width: auto; }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 22px; height: 38px; border: 1.5px solid rgba(232,25,127,0.45); border-radius: 11px; position: relative; }
.hero-scroll span::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--pink); border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot { 0%,100% { top:5px; opacity:1; } 80% { top:20px; opacity:0; } }

/* ============================================================
   EQUALIZER BARS
   ============================================================ */
.eq-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 36px;
  margin: -4px 0 4px;
}
@media (min-width: 768px) {
  .eq-bars { height: 44px; gap: 4px; margin: -2px 0 6px; }
}

.eq-bar {
  display: block;
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--pink-light);
  box-shadow: 0 0 6px var(--pink), 0 0 14px rgba(232,25,127,0.5);
  animation: eq-bounce var(--dur, 1s) ease-in-out infinite alternate;
  transform-origin: bottom;
}
@media (min-width: 768px) { .eq-bar { width: 4px; } }

/* Each bar gets a unique height range and speed via custom properties */
.eq-bar:nth-child(1)  { --dur: 0.7s; height: 30%; animation-delay: 0.00s; }
.eq-bar:nth-child(2)  { --dur: 0.9s; height: 70%; animation-delay: 0.10s; }
.eq-bar:nth-child(3)  { --dur: 0.6s; height: 50%; animation-delay: 0.05s; }
.eq-bar:nth-child(4)  { --dur: 1.1s; height: 90%; animation-delay: 0.20s; }
.eq-bar:nth-child(5)  { --dur: 0.8s; height: 60%; animation-delay: 0.15s; }
.eq-bar:nth-child(6)  { --dur: 0.5s; height: 35%; animation-delay: 0.08s; }
.eq-bar:nth-child(7)  { --dur: 1.0s; height: 80%; animation-delay: 0.25s; }
.eq-bar:nth-child(8)  { --dur: 0.7s; height: 55%; animation-delay: 0.12s; }
.eq-bar:nth-child(9)  { --dur: 0.9s; height: 100%; animation-delay: 0.30s; }
.eq-bar:nth-child(10) { --dur: 0.6s; height: 45%; animation-delay: 0.18s; }
.eq-bar:nth-child(11) { --dur: 1.2s; height: 75%; animation-delay: 0.22s; }
.eq-bar:nth-child(12) { --dur: 0.8s; height: 40%; animation-delay: 0.06s; }
.eq-bar:nth-child(13) { --dur: 0.7s; height: 85%; animation-delay: 0.28s; }
.eq-bar:nth-child(14) { --dur: 1.0s; height: 55%; animation-delay: 0.14s; }
.eq-bar:nth-child(15) { --dur: 0.6s; height: 30%; animation-delay: 0.35s; }
.eq-bar:nth-child(16) { --dur: 0.9s; height: 65%; animation-delay: 0.09s; }
.eq-bar:nth-child(17) { --dur: 0.7s; height: 90%; animation-delay: 0.32s; }
.eq-bar:nth-child(18) { --dur: 1.1s; height: 50%; animation-delay: 0.17s; }
.eq-bar:nth-child(19) { --dur: 0.8s; height: 70%; animation-delay: 0.24s; }
.eq-bar:nth-child(20) { --dur: 0.6s; height: 35%; animation-delay: 0.40s; }

@keyframes eq-bounce {
  from { transform: scaleY(0.15); opacity: 0.5; }
  to   { transform: scaleY(1);    opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .eq-bar { animation: none; transform: scaleY(0.5); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.about::before {
  content: 'KASI';
  position: absolute; right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(130px, 22vw, 240px);
  color: rgba(232,25,127,0.03);
  letter-spacing: 0.05em; pointer-events: none; line-height: 1; user-select: none;
}

.about-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }

.about-img {
  position: relative; border-radius: 2px; overflow: hidden;
  max-width: 500px; margin: 0 auto; width: 100%;
}
@media (min-width: 768px) { .about-img { max-width: none; margin: 0; } }
.about-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px; filter: grayscale(15%) contrast(1.05);
  transition: filter .6s ease, transform .6s ease;
}
.about-img:hover img { filter: grayscale(0%) contrast(1.1); transform: scale(1.02); }

.about-img::before {
  content: '';
  position: absolute; left: 0; top: 8%; bottom: 8%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  z-index: 2;
}
/* Corner accent */
.about-img::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
  z-index: 2;
  opacity: 0.6;
}

.about-img-glow {
  position: absolute; inset: -2px; border-radius: 4px;
  background: linear-gradient(135deg, var(--pink), transparent 60%);
  z-index: -1; opacity: 0.35;
}

.about-text .section-title { margin-bottom: 22px; }
.about-bio {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  line-height: 1.95; margin-bottom: 22px;
  border-left: 2px solid rgba(232,25,127,0.35);
  padding-left: 18px;
}
.about-more { margin-bottom: 22px; }
.about-more p { color: rgba(255,255,255,0.58); line-height: 1.85; margin-bottom: 14px; font-size: 0.93rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  background: linear-gradient(160deg, #0a0210 0%, #050108 40%, #0d0510 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 90px 0;
}
@media (min-width: 768px) { .stats { padding: 120px 0; } }

.stats-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(232,25,127,0.14) 0%, transparent 70%);
  pointer-events: none;
  animation: stats-pulse 7s ease-in-out infinite alternate;
}
@keyframes stats-pulse {
  from { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%,-50%) scale(1.2); }
}

.stats-header { text-align: center; margin-bottom: 56px; }
.stats-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1; letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 0%, var(--pink-pale) 45%, var(--pink-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 28px rgba(232,25,127,0.45));
  margin-bottom: 12px;
}
.stats-sub {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 44px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.stat-card {
  position: relative; display: flex; flex-direction: column; gap: 18px;
  padding: 30px 22px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(232,25,127,0.14);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  text-decoration: none; color: inherit; overflow: hidden;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), border-color .35s ease, box-shadow .35s ease;
}
@media (min-width: 768px) { .stat-card { padding: 38px 30px 32px; } }
.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(232,25,127,0.55);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(232,25,127,0.22), 0 0 50px rgba(232,25,127,0.18);
}

.stat-card-glow {
  position: absolute; inset: 0; border-radius: 22px;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,25,127,0.12) 0%, transparent 65%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.stat-card:hover .stat-card-glow { opacity: 1; }

.stat-platform { display: flex; align-items: center; gap: 13px; }
.stat-icon {
  width: 50px; height: 50px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
@media (min-width: 768px) { .stat-icon { width: 56px; height: 56px; } }
.stat-card:hover .stat-icon { transform: scale(1.12); }
.stat-icon svg { width: 26px; height: 26px; }
@media (min-width: 768px) { .stat-icon svg { width: 28px; height: 28px; } }

.fb-icon { background: rgba(74,144,226,0.14); color: #4a90e2; box-shadow: 0 0 0 1px rgba(74,144,226,0.2); }
.stat-card:hover .fb-icon { box-shadow: 0 0 22px rgba(74,144,226,0.45); }
.tt-icon { background: rgba(0,242,234,0.1); color: #00f2ea; box-shadow: 0 0 0 1px rgba(0,242,234,0.2); }
.stat-card:hover .tt-icon { box-shadow: 0 0 22px rgba(0,242,234,0.38); }
.ig-icon { background: rgba(232,25,127,0.12); color: var(--pink-light); box-shadow: 0 0 0 1px rgba(232,25,127,0.2); }
.stat-card:hover .ig-icon { box-shadow: 0 0 22px rgba(232,25,127,0.45); }
.x-icon  { background: rgba(255,255,255,0.07); color: #e7e9ea; box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }
.stat-card:hover .x-icon { box-shadow: 0 0 22px rgba(255,255,255,0.22); }

.stat-platform-name {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.stat-body { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 3.8rem);
  line-height: 1; letter-spacing: 0.02em; color: var(--white);
  transition: color .3s ease;
}
.stat-card:hover .stat-num { color: var(--pink-pale); }
.stat-unit { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.stat-badge {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink-light); opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.stat-card:hover .stat-badge { opacity: 1; transform: translateY(0); }

.stats-total {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  padding: 22px 32px; border-radius: 18px;
  background: rgba(232,25,127,0.05);
  border: 1px solid rgba(232,25,127,0.14);
  backdrop-filter: blur(14px); flex-wrap: wrap; text-align: center;
}
.stats-total-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: 0.05em;
  color: var(--pink-light); filter: drop-shadow(0 0 14px rgba(232,25,127,0.55));
}
.stats-total-divider { width: 1px; height: 30px; background: rgba(232,25,127,0.25); display: none; }
@media (min-width: 480px) { .stats-total-divider { display: block; } }
.stats-total-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); }

/* ============================================================
   MUSIC
   ============================================================ */
.music { background: var(--dark); }

.stream-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px;
}
@media (min-width: 640px) { .stream-grid { grid-template-columns: repeat(3, 1fr); } }

.stream-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 20px; border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  text-decoration: none; color: inherit;
  min-width: 0; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.stream-card:hover { transform: translateY(-5px); }
.stream-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stream-card-icon svg { width: 28px; height: 28px; }

.stream-spotify { border-color: rgba(29,185,84,0.18); }
.stream-spotify .stream-card-icon { background: rgba(29,185,84,0.14); color: #1db954; }
.stream-spotify:hover { border-color: #1db954; box-shadow: 0 0 32px rgba(29,185,84,0.28); }

.stream-apple { border-color: rgba(252,60,68,0.18); }
.stream-apple .stream-card-icon { background: rgba(252,60,68,0.14); color: #fc3c44; }
.stream-apple:hover { border-color: #fc3c44; box-shadow: 0 0 32px rgba(252,60,68,0.28); }

.stream-youtube { border-color: rgba(255,0,0,0.18); }
.stream-youtube .stream-card-icon { background: rgba(255,0,0,0.1); color: #ff4444; }
.stream-youtube:hover { border-color: #ff4444; box-shadow: 0 0 32px rgba(255,0,0,0.28); }

.stream-card-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stream-card-name { font-size: 0.98rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stream-card-action { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color .3s ease; }
.stream-card:hover .stream-card-action { color: var(--pink-light); }

.podcasts-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.podcasts-title { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); letter-spacing: 0.05em; color: var(--white); }
.podcasts-sub { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.podcasts-list { display: flex; flex-direction: column; }
.podcast-row {
  display: grid; grid-template-columns: 32px 1fr auto 36px;
  align-items: center; gap: 16px; padding: 15px 14px;
  border-radius: 12px; text-decoration: none; color: inherit;
  transition: background .25s ease;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.podcast-row:last-child { border-bottom: none; }
.podcast-row:hover { background: rgba(255,255,255,0.04); }
.podcast-rank {
  font-family: var(--font-display); font-size: 1rem; color: var(--muted);
  text-align: center; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
}
.podcast-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.podcast-name { font-size: 0.9rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.podcast-views { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.05em; }
.podcast-bar-wrap { width: 80px; height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; display: none; }
@media (min-width: 600px) { .podcast-bar-wrap { display: block; } }
.podcast-bar { height: 100%; background: linear-gradient(to right, var(--pink-dim), var(--pink-light)); border-radius: 2px; min-width: 3px; }
.podcast-play {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); opacity: 0.4;
  transition: opacity .25s ease, color .25s ease;
}
.podcast-play svg { width: 14px; height: 14px; }
.podcast-row:hover .podcast-play { opacity: 1; color: var(--pink-light); }

/* ============================================================
   MEDIA / PRESS
   ============================================================ */
.media { background: var(--black); position: relative; }
.media::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, var(--pink), transparent);
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .press-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }

/* Make the 5th card span 2 cols on the 3-col layout so it's centred */
@media (min-width: 1024px) {
  .press-card:last-child:nth-child(3n - 1) { grid-column: span 1; }
  .press-card:nth-child(4) { grid-column: 1; }
  .press-card:nth-child(5) { grid-column: 2; }
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease, background .35s ease;
}
/* Pink left accent bar */
.press-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.press-card:hover {
  border-color: rgba(232,25,127,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(232,25,127,0.1);
  background: rgba(232,25,127,0.03);
}
.press-card:hover::before { opacity: 1; }

/* Top row: favicon + name + arrow */
.press-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.press-outlet-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.press-outlet-logo img {
  width: 24px; height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.press-outlet-info {
  display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0;
}
.press-outlet-name {
  font-size: 0.92rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.press-outlet-type {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink);
}

.press-arrow {
  font-size: 1rem; color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color .3s ease, transform .3s ease;
}
.press-card:hover .press-arrow {
  color: var(--pink-light);
  transform: translate(2px, -2px);
}

/* Quote */
.press-quote {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  border-left: none;
  padding: 0;
  flex: 1;
  position: relative;
  padding-left: 16px;
}
.press-quote::before {
  content: '"';
  position: absolute; left: 0; top: -4px;
  font-size: 2rem; line-height: 1;
  color: rgba(232,25,127,0.35);
  font-style: normal;
  font-family: Georgia, serif;
}

/* Footer tag */
.press-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.press-tag {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px; border-radius: 50px;
  transition: color .3s ease, border-color .3s ease;
}
.press-card:hover .press-tag {
  color: var(--pink-light);
  border-color: rgba(232,25,127,0.3);
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands { background: var(--dark); border-top: none; position: relative; overflow: hidden; }
.brands::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(232,25,127,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.brands-sub { text-align: center; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: -22px; margin-bottom: 52px; }

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(232,25,127,0.08);
  border: 1px solid rgba(232,25,127,0.1);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }

.brand-card {
  display: flex; align-items: center; justify-content: center;
  padding: 44px 28px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}
@media (min-width: 768px) { .brand-card { padding: 56px 36px; } }

/* Hover shimmer sweep */
.brand-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(232,25,127,0.06) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.brand-card:hover::before { transform: translateX(100%); }
.brand-card:hover { background: rgba(232,25,127,0.04); }

.brand-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-svg {
  width: 100%;
  max-width: 140px;
  height: 48px;
  color: rgba(255,255,255,0.22);
  transition: color .4s ease, filter .4s ease;
}
@media (min-width: 768px) { .brand-svg { max-width: 160px; } }

.brand-card:hover .brand-svg {
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 0 12px rgba(232,25,127,0.4));
}

.brand-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  transition: color .4s ease;
  font-weight: 500;
}
.brand-card:hover .brand-label {
  color: var(--pink-light);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--black); padding-bottom: 72px; }
.gallery-header { margin-bottom: 32px; }

.slideshow {
  position: relative; width: 100%;
  max-width: 960px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  background: var(--dark2);
  box-shadow: 0 0 80px rgba(232,25,127,0.18);
  contain: layout paint;
}
@media (min-width: 768px) { .slideshow { border-radius: 22px; } }

.slideshow-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); width: 100%; }
.slide {
  flex: 0 0 100%; width: 100%; min-width: 0; overflow: hidden;
  padding: 0 !important; background: none !important; border: none !important;
  display: block !important; height: clamp(300px, 72vw, 640px);
}
@media (min-width: 768px) { .slide { height: clamp(420px, 56vw, 640px); } }
.slide img {
  width: 100% !important; display: block !important; max-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; object-position: center 20% !important;
  margin: 0 !important; border-radius: 0 !important;
}

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(232,25,127,0.4);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
@media (min-width: 768px) { .slide-arrow { width: 56px; height: 56px; } }
.slide-arrow:hover { background: rgba(232,25,127,0.32); border-color: var(--pink); box-shadow: var(--glow-sm); transform: translateY(-50%) scale(1.08); }
.slide-arrow svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .slide-arrow svg { width: 22px; height: 22px; } }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-counter {
  position: absolute; top: 16px; right: 18px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.55);
  padding: 5px 12px; border-radius: 50px; backdrop-filter: blur(10px);
  border: 1px solid rgba(232,25,127,0.22);
}
#slide-current { color: var(--pink-light); }

.slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slide-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.28); border: none; padding: 0; cursor: none;
  transition: background var(--transition), width var(--transition);
}
@media (hover: none) { .slide-dot { cursor: pointer; } }
.slide-dot.active { background: var(--pink-light); width: 24px; border-radius: 4px; box-shadow: 0 0 10px var(--pink); }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(16px);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 0 80px rgba(232,25,127,0.28); }
.lightbox-close {
  position: absolute; top: 22px; right: 22px;
  background: rgba(232,25,127,0.14); border: 1px solid var(--border);
  border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(232,25,127,0.32); }
.lightbox-close svg { width: 18px; height: 18px; }

/* ============================================================
   EVENTS
   ============================================================ */
.events { background: var(--black); border-top: 1px solid var(--border); }
.events-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }

.event-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 22px; background: var(--dark2);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
@media (min-width: 600px) {
  .event-card { flex-direction: row; align-items: center; gap: 26px; padding: 26px 32px; }
  .event-card:hover { border-color: var(--pink-dim); transform: translateX(5px); }
}
.event-date {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  padding: 11px 18px; background: rgba(232,25,127,0.1);
  border: 1px solid var(--border); border-radius: 12px; align-self: flex-start;
}
@media (min-width: 600px) { .event-date { flex-direction: column; gap: 2px; min-width: 68px; text-align: center; } }
.event-day { font-family: var(--font-display); font-size: 1.7rem; color: var(--pink-light); line-height: 1; }
.event-month { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.event-info { flex: 1; }
.event-info h3 { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 4px; }
.event-info p { font-size: 0.82rem; color: var(--muted); }
.event-btn { flex-shrink: 0; padding: 11px 22px; font-size: 0.78rem; align-self: flex-start; }
@media (min-width: 600px) { .event-btn { align-self: center; } }

.events-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 56px 24px; border: 1px dashed rgba(232,25,127,0.22);
  border-radius: var(--radius); text-align: center; gap: 12px;
}
.events-empty svg { width: 38px; height: 38px; color: var(--pink-dim); margin-bottom: 8px; }
.events-empty p { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.45); }
.events-empty span { font-size: 0.82rem; color: var(--muted); max-width: 320px; line-height: 1.7; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  background: var(--black); border-top: none;
  position: relative; overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,25,127,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.booking::after {
  content: '';
  position: absolute; bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,25,127,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.booking-grid { display: flex; flex-direction: column; gap: 44px; }
@media (min-width: 768px) { .booking-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; } }

.booking-info .section-title { margin-bottom: 16px; }
.booking-info > p { color: var(--muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 30px; }
.booking-contacts { display: flex; flex-direction: column; gap: 13px; }

.contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.88rem; color: rgba(255,255,255,0.72);
  padding: 14px 18px; background: var(--dark2);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  word-break: break-all;
}
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--pink-light); }
.contact-item:hover { border-color: var(--pink-dim); color: var(--white); transform: translateX(4px); }
.wa-contact { border-color: rgba(37,211,102,0.2); }
.wa-contact svg { color: #25d366; }
.wa-contact:hover { border-color: #25d366; box-shadow: 0 0 18px rgba(37,211,102,0.22); }

.booking-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .booking-form { padding: 44px; } }

.form-row { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 480px) { .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.form-group label span { color: var(--pink-light); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(232,25,127,0.15);
  border-radius: 10px; padding: 13px 16px;
  color: var(--white); font-family: inherit;
  font-size: max(16px, 0.9rem);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted2); }
.form-group select { appearance: none; cursor: none; }
@media (hover: none) { .form-group select { cursor: pointer; } }
.form-group select option { background: var(--dark3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,25,127,0.14);
  background: rgba(232,25,127,0.04);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { margin-top: 12px; font-size: 0.8rem; text-align: center; color: var(--pink-light); min-height: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 56px 0 0; }
@media (min-width: 768px) { .footer { padding: 80px 0 0; } }

.footer-inner { display: flex; flex-direction: column; gap: 40px; padding-bottom: 48px; }
@media (min-width: 640px) { .footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; gap: 56px; padding-bottom: 64px; } }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .footer-brand { grid-column: 1 / -1; } }
@media (min-width: 900px) { .footer-brand { grid-column: auto; } }

.footer-logo {
  width: 170px; height: auto;
  filter: drop-shadow(0 0 10px rgba(232,25,127,0.55));
  transition: filter var(--transition);
}
@media (min-width: 768px) { .footer-logo { width: 210px; } }
.footer-logo:hover { filter: drop-shadow(0 0 18px rgba(255,93,184,1)) drop-shadow(0 0 36px rgba(232,25,127,0.55)); }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; max-width: 290px; }

.footer-nav h4, .footer-connect h4 {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink-light); margin-bottom: 18px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition), padding-left var(--transition); display: inline-block; }
.footer-nav a:hover { color: var(--white); padding-left: 7px; }

.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; flex-shrink: 0; display: block; overflow: hidden; max-width: 16px; max-height: 16px; }
.footer-social a:hover { border-color: var(--pink); color: var(--pink-light); transform: translateY(-4px); box-shadow: var(--glow-sm); }

.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact a { font-size: 0.8rem; color: rgba(255,255,255,0.48); display: flex; align-items: center; gap: 9px; transition: color var(--transition); word-break: break-all; }
.footer-contact a svg { width: 14px; height: 14px; flex-shrink: 0; overflow: hidden; max-width: 14px; max-height: 14px; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.72rem; color: var(--muted2); }
.footer-bottom a { color: var(--pink); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--pink-light); }
.footer-credit { font-size: 0.68rem; color: rgba(255,255,255,0.22); }
.footer-credit a { color: var(--pink); font-weight: 600; transition: color var(--transition); }
.footer-credit a:hover { color: var(--pink-light); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-scroll span::after, .hero-logo, .marquee-track, body::before { animation: none !important; }
  html { scroll-behavior: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ============================================================
   MOBILE & CROSS-BROWSER FIXES
   ============================================================ */

/* Safe area insets for notched phones (iPhone X+, Android) */
.nav {
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}
.hero-content {
  padding-bottom: max(60px, calc(60px + env(safe-area-inset-bottom)));
}
.footer-bottom {
  padding-bottom: max(20px, calc(20px + env(safe-area-inset-bottom)));
}

/* Minimum touch target size (44px) for all interactive elements */
.btn, .nav-burger, .slide-arrow, .slide-dot,
.mobile-menu-close, .lightbox-close,
.stat-card, .stream-card, .podcast-row {
  min-height: 44px;
}
.nav-burger { min-width: 44px; min-height: 44px; justify-content: center; }
.slide-dot  { min-width: 24px; min-height: 44px; align-items: center; display: inline-flex; }

/* Prevent text size adjustment on orientation change */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Smooth scrolling on iOS */
html { -webkit-overflow-scrolling: touch; }

/* Fix tap highlight on mobile */
a, button { -webkit-tap-highlight-color: rgba(232,25,127,0.15); }

/* Facebook in-app browser & WebView: disable custom cursor */
body { cursor: auto; }
.cursor-dot, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor-dot, .cursor-ring { display: block; }
}

/* Fix hero min-height on mobile browsers with dynamic toolbars */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* dynamic viewport height — Chrome 108+, Safari 15.4+ */
}

/* Prevent horizontal scroll from animations on small screens */
.marquee-strip { overflow: hidden; max-width: 100vw; }
.about { overflow-x: hidden; }

/* Mobile nav: ensure burger is always visible and right-aligned */
@media (max-width: 899px) {
  .nav { padding: 12px 20px; }
  .nav-logo img { height: 40px !important; }
}

/* Fix slideshow overflow on narrow screens */
.slideshow { max-width: 100%; }
.slideshow-track { will-change: transform; }

/* Booking form: prevent iOS zoom on input focus (font-size >= 16px) */
.form-group input,
.form-group select,
.form-group textarea { font-size: 16px !important; }

/* Press cards: single column on very small screens */
@media (max-width: 400px) {
  .press-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
}

/* Stream cards: stack on small mobile */
@media (max-width: 480px) {
  .stream-grid { grid-template-columns: 1fr; }
}

/* Fix about image aspect ratio on small screens */
@media (max-width: 480px) {
  .about-img img { aspect-ratio: 4/5; }
}

/* Ensure footer social icons don't overflow */
.footer-social { flex-wrap: wrap; }

/* Fix podcast row on very small screens */
@media (max-width: 360px) {
  .podcast-row { grid-template-columns: 28px 1fr 32px; }
  .podcast-bar-wrap { display: none; }
}

/* ============================================================
   MOBILE SCROLL PERFORMANCE
   ============================================================ */

/* Kill the grain animation on mobile — biggest perf win */
@media (max-width: 899px) {
  body::before { display: none; }
}

/* Disable backdrop-filter on mobile — GPU killer */
@media (max-width: 899px) {
  .nav.scrolled,
  .mobile-menu,
  .stat-card,
  .stream-card,
  .booking-form,
  .hero-tags span,
  .slide-counter,
  .lightbox,
  .stats-total {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Compensate with solid backgrounds */
  .nav.scrolled { background: rgba(0,0,0,0.96) !important; }
  .mobile-menu  { background: #0d080d !important; }
  .booking-form { background: rgba(20,10,20,0.98) !important; }
  .stat-card    { background: rgba(20,10,20,0.9) !important; }
}

/* Promote scrolling layers to GPU */
body { -webkit-overflow-scrolling: touch; }

/* Contain paint for heavy sections */
.stats, .about, .music, .media, .brands, .gallery, .booking, .events {
  contain: layout style;
}

/* Reduce box-shadow complexity on mobile */
@media (max-width: 899px) {
  .stat-card:hover,
  .press-card:hover,
  .stream-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  }
  .hero-logo {
    filter:
      drop-shadow(0 0 4px #fff)
      drop-shadow(0 2px 8px rgba(0,0,0,0.9))
      drop-shadow(0 0 16px rgba(232,25,127,0.7)) !important;
  }
  @keyframes logo-neon {
    from { filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 12px rgba(232,25,127,0.7)); }
    to   { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 20px rgba(232,25,127,0.9)); }
  }
}

/* Disable heavy animations on mobile */
@media (max-width: 899px) {
  .stats-bg-glow { animation: none !important; }
  .hero-vignette { animation: none !important; }
  .marquee-track { animation-duration: 40s; } /* slower = less repaints */
}

/* Use transform instead of top/left for cursor (already done, but ensure) */
.cursor-dot, .cursor-ring { will-change: left, top; }

/* Slideshow: hardware accelerate the track */
.slideshow-track {
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Passive scroll listener hint via CSS */
.hero, .section { touch-action: pan-y; }

/* ── Hero button responsive labels ── */
.btn-label-short { display: none; }
.btn-label-full  { display: inline; }
@media (max-width: 540px) {
  .btn-label-full  { display: none; }
  .btn-label-short { display: inline; }
  .hero-btns .btn-outline svg { display: block; }
}

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

.merch-header { text-align: center; margin-bottom: 48px; }
.merch-sub {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 12px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
@media (min-width: 600px) { .merch-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 900px) { .merch-grid { gap: 24px; } }

.merch-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), border-color .3s ease, box-shadow .3s ease;
}
.merch-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(232,25,127,0.55);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 40px rgba(232,25,127,0.18);
}

.merch-img-wrap {
  position: relative;
  /* Use a fixed height instead of aspect-ratio so images aren't cropped */
  height: 260px;
  overflow: hidden;
  background: var(--dark2);
}
@media (min-width: 600px) { .merch-img-wrap { height: 300px; } }
@media (min-width: 900px) { .merch-img-wrap { height: 340px; } }

.merch-img-wrap img,
.merch .merch-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 8px;
  margin: 0 !important;
  display: block !important;
  transition: transform .5s ease, filter .5s ease;
}
.merch-card:hover .merch-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.merch-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  background: rgba(0,0,0,0.1);
}
.merch-card:hover .merch-overlay { opacity: 1; }

.merch-cta-icon {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: #25d366;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  filter: drop-shadow(0 0 12px rgba(37,211,102,0.7));
}
.merch-cta-icon svg { width: 44px; height: 44px; }

.merch-footer { text-align: center; }

@media (hover: none) {
  .merch-card:active { transform: scale(0.97); }
}
