/* ========================================
   Seth Bonnell - Official Website
   Refined & polished redesign
   ======================================== */

:root {
  --black: #050505;
  --dark: #0a0a0a;
  --dark-2: #111;
  --dark-3: #181818;
  --dark-4: #222;
  --gray: #666;
  --mid-gray: #999;
  --light-gray: #bbb;
  --white: #f0f0f0;
  --accent: #e84393;
  --accent-hover: #ff6bab;
  --accent-dim: #c9357d;
  --accent-glow: rgba(232, 67, 147, 0.2);
  --accent-glow-strong: rgba(232, 67, 147, 0.4);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --max-width: 1100px;
  --nav-height: 80px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

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

/* ---- ANNOUNCEMENT BAR ---- */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #120a1a 0%, #1e0f2a 50%, #120a1a 100%);
  border-bottom: 1px solid rgba(232, 67, 147, 0.25);
  padding: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announce-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce-bar-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
  animation: announcePulse 1.5s ease-in-out infinite;
}
@keyframes announcePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.announce-bar-text {
  font-size: 0.6875rem;
  color: var(--light-gray);
  letter-spacing: 0.02em;
}
.announce-bar-text strong {
  color: var(--white);
  font-weight: 700;
}
.announce-bar-btn {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
}
.announce-bar-btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: scale(1.04);
}
.announce-bar-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
  margin-left: 4px;
}
.announce-bar-close:hover { color: var(--white); }

/* Offset nav and hero when bar is visible */
body.has-announce-bar .nav { top: var(--announce-bar-h, 33px); }
body.has-announce-bar .hero { padding-top: var(--announce-bar-h, 33px); }

/* ---- PRELOADER ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  width: 72px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--glass-border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
}
.nav-logo-img { height: 70px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin-left: 40px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s, text-shadow 0.3s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.nav.scrolled .nav-links a { text-shadow: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  transform-origin: center;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.nav-stream-btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero-slide.active {
  opacity: 1;
}

/* Glitch transition */
.hero-image.glitching .hero-slide {
  animation: none;
}
.hero-image.glitching .hero-slide.glitch-out {
  opacity: 1;
  animation: glitchOut 0.6s steps(1) forwards;
}
.hero-image.glitching .hero-slide.glitch-in {
  opacity: 1;
  animation: glitchIn 0.6s steps(1) forwards;
}

@keyframes glitchOut {
  0%   { opacity: 1; clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  10%  { clip-path: inset(20% 0 30% 0); transform: translate(-8px, 2px); filter: saturate(3) hue-rotate(40deg); }
  15%  { clip-path: inset(60% 0 5% 0); transform: translate(12px, -1px); filter: saturate(2) hue-rotate(-30deg); }
  20%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  30%  { clip-path: inset(40% 0 20% 0); transform: translate(-15px, 0); filter: saturate(4) hue-rotate(90deg); }
  35%  { clip-path: inset(0 0 70% 0); transform: translate(6px, 3px); }
  40%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  55%  { clip-path: inset(10% 0 50% 0); transform: translate(10px, -2px); filter: brightness(1.5) saturate(3); }
  60%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; opacity: 0.6; }
  75%  { opacity: 0.3; clip-path: inset(50% 0 10% 0); transform: translate(-5px); }
  85%  { opacity: 0.1; }
  100% { opacity: 0; clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
}

@keyframes glitchIn {
  0%   { opacity: 0; clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  10%  { opacity: 0.1; }
  20%  { opacity: 0.4; clip-path: inset(70% 0 5% 0); transform: translate(10px, -3px); filter: saturate(4) hue-rotate(-60deg); }
  25%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; opacity: 0.3; }
  35%  { clip-path: inset(15% 0 45% 0); transform: translate(-12px, 1px); filter: saturate(3) hue-rotate(50deg); opacity: 0.7; }
  40%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  50%  { clip-path: inset(30% 0 30% 0); transform: translate(8px, 0); filter: brightness(1.8); opacity: 0.9; }
  55%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  70%  { opacity: 1; clip-path: inset(5% 0 80% 0); transform: translate(-4px, 2px); filter: saturate(2); }
  75%  { clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
  100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translate(0); filter: none; }
}

/* Scanline flash during glitch */
.hero-image.glitching::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  animation: scanFlash 0.6s steps(1) forwards;
  pointer-events: none;
}
@keyframes scanFlash {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  40%  { opacity: 0; }
  55%  { opacity: 0.7; }
  75%  { opacity: 0; }
  100% { opacity: 0; }

}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.0) 25%, rgba(5,5,5,0.5) 65%, rgba(5,5,5,0.97) 100%),
    linear-gradient(to right, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.0) 55%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 48px 96px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #e84393, #c946d4, #6c3ce0);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: badgePulse 2.5s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-badge-link:hover {
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.4);
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow-strong); }
  50% { box-shadow: 0 0 0 10px rgba(232, 67, 147, 0); }
}
.hero-title {
  margin-bottom: 16px;
  line-height: 0.9;
}

.hero-title img {
  width: clamp(250px, 38vw, 420px);
  height: auto;
  filter: invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(232,67,147,0.4)) drop-shadow(0 0 60px rgba(201,70,212,0.2));
  mix-blend-mode: screen;
}
.hero-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-streaming {
  display: flex;
  gap: 18px;
  align-items: center;
}
.hero-streaming a {
  color: rgba(255,255,255,0.3);
  transition: color 0.25s, transform 0.25s;
}
.hero-streaming a:hover {
  color: var(--white);
  transform: scale(1.12);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow-strong);
}
.btn-vote {
  background: linear-gradient(135deg, #e84393 0%, #c946d4 50%, #6c3ce0 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232, 67, 147, 0.3);
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}
.btn-vote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-vote:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 67, 147, 0.45);
}
.btn-vote:hover::before { opacity: 1; }
.btn-glass {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
.section { padding: 112px 0; }
.section-dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 67, 147, 0.03) 0%, transparent 60%),
    var(--dark);
}

.section-label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-label-center { display: block; text-align: center; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-heading-center { text-align: center; margin-bottom: 52px; }

/* ---- ABOUT ---- */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-photo-stack {
  position: relative;
}
.about-photo-main img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-photo-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 42%;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease);
}
.about-photo-accent:hover { transform: scale(1.04); }
.about-photo-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about-content p {
  color: var(--light-gray);
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-content strong { color: var(--white); font-weight: 600; }
.about-lead {
  font-size: 1.0625rem !important;
  color: var(--white) !important;
  font-weight: 400;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--light-gray);
  font-weight: 500;
}
.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  flex-shrink: 0;
}

/* ---- MUSIC ---- */
.featured-release {
  display: flex;
  gap: 36px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 52px;
  transition: border-color 0.3s;
}
.featured-release:hover { border-color: rgba(232, 67, 147, 0.15); }
.featured-release-art {
  position: relative;
  width: 180px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.featured-release-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.featured-release-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}
.featured-release-art:hover .featured-release-play { opacity: 1; }
.featured-release-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.featured-release-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.featured-release-year {
  color: var(--gray);
  font-size: 0.8125rem;
  margin-bottom: 18px;
}
.featured-release-links { display: flex; gap: 8px; flex-wrap: wrap; }

.stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  color: var(--light-gray);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s;
}
.stream-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 67, 147, 0.06);
}

.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.disc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.disc-card:hover { color: inherit; }
.disc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.disc-card:hover::before { transform: scaleX(1); }
.disc-card:hover {
  border-color: rgba(232, 67, 147, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.disc-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}
.disc-year {
  font-size: 0.625rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.disc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.disc-meta {
  font-size: 0.6875rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.disc-link {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: letter-spacing 0.2s;
}
.disc-link:hover { letter-spacing: 0.14em; }

.spotify-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- SHOWS ---- */
.shows-list {
  max-width: 700px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.show-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.show-card:hover {
  border-color: rgba(232, 67, 147, 0.15);
  background: var(--dark-3);
  color: var(--white);
  transform: translateX(4px);
}
.show-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.show-month {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.show-day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.show-details { flex: 1; }
.show-venue {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.show-location, .show-time {
  font-size: 0.75rem;
  color: var(--gray);
}
.show-badge {
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(232, 67, 147, 0.12);
  color: var(--accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.show-arrow {
  color: var(--gray);
  font-size: 1.125rem;
  transition: transform 0.25s, color 0.25s;
}
.show-card:hover .show-arrow {
  color: var(--accent);
  transform: translateX(4px);
}
.shows-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.8125rem;
}

/* ---- VIDEO ---- */
.video-feature {
  max-width: 780px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-caption {
  text-align: center;
  margin-top: 18px;
}
.video-caption h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 2px;
}
.video-caption p {
  color: var(--gray);
  font-size: 0.8125rem;
}

/* TikTok Grid */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 48px auto 0;
}
.tiktok-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tiktok-embed-wrap blockquote {
  margin: 0 !important;
}

/* Video Social CTAs */
.video-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.video-social-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--light-gray);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.video-social-cta:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(232, 67, 147, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.video-social-cta svg { flex-shrink: 0; }

/* ---- MERCH ---- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.merch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.merch-card:hover {
  border-color: rgba(232, 67, 147, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.merch-card-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1215;
}
.merch-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.merch-card:hover .merch-card-visual img {
  transform: scale(1.05);
}
.merch-visual-tee {
  background: linear-gradient(135deg, #1a1215 0%, #2a1520 50%, #1a1215 100%);
}
.merch-visual-hoodie {
  background: linear-gradient(135deg, #121518 0%, #1a2025 50%, #121518 100%);
}
.merch-visual-cap {
  background: linear-gradient(135deg, #15121a 0%, #201a2a 50%, #15121a 100%);
}
.merch-visual-mug {
  background: linear-gradient(135deg, #1a1812 0%, #2a2518 50%, #1a1812 100%);
}
.merch-visual-tote {
  background: linear-gradient(135deg, #121a15 0%, #1a2a20 50%, #121a15 100%);
}
.merch-visual-tank {
  background: linear-gradient(135deg, #1a1215 0%, #2a1825 50%, #1a1215 100%);
}
.merch-icon {
  color: rgba(255,255,255,0.15);
  transition: color 0.3s, transform 0.3s;
}
.merch-card:hover .merch-icon {
  color: rgba(232, 67, 147, 0.4);
  transform: scale(1.1);
}
.merch-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.merch-card-info {
  padding: 16px 18px 20px;
}
.merch-card-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.merch-card-price {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.merch-card-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--mid-gray);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.merch-status-active {
  background: rgba(232, 67, 147, 0.12);
  border-color: rgba(232, 67, 147, 0.25);
  color: var(--accent);
}
.merch-card:hover .merch-status-active {
  background: rgba(232, 67, 147, 0.2);
}
.merch-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.8125rem;
}

/* ---- PHOTO STRIP ---- */
.photo-strip {
  overflow: hidden;
  padding: 3px 0;
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.photo-strip-inner {
  display: flex;
  gap: 3px;
  animation: photoScroll 35s linear infinite;
  width: max-content;
}
.photo-strip img {
  height: 280px;
  width: auto;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.4s;
}
.photo-strip img:hover { filter: grayscale(0%) brightness(1); }
@keyframes photoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- CONNECT ---- */
.connect-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 32px;
}
.connect-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 36px;
}
.connect-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.connect-card-newsletter p {
  color: var(--light-gray);
  margin-bottom: 22px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s;
}
.newsletter-input::placeholder { color: var(--gray); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn { white-space: nowrap; }

.connect-card-booking {
  display: flex;
  flex-direction: column;
}
.booking-desc {
  color: var(--light-gray);
  font-size: 0.8125rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.booking-email {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.booking-phone {
  color: var(--light-gray);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 20px;
}
.booking-btn { align-self: flex-start; }

/* Social row */
.social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--light-gray);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.25s;
}
.social-link:hover {
  border-color: rgba(232, 67, 147, 0.2);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.social-link svg { flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer {
  padding: 36px 0 80px;
  border-top: 1px solid var(--glass-border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 20px; opacity: 0.35; }
.footer-copy { font-size: 0.6875rem; color: var(--gray); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  color: var(--gray);
  transition: color 0.2s, transform 0.2s;
}
.footer-socials a:hover { color: var(--accent); transform: scale(1.1); }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.disc-card.reveal { transition-delay: calc(var(--i, 0) * 0.06s); }
.merch-card.reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #c946d4, #6c3ce0);
  z-index: 300;
  transition: none;
  pointer-events: none;
}
body.has-announce-bar .scroll-progress { top: var(--announce-bar-h, 33px); }

/* ---- CUSTOM CURSOR ---- */
@media (hover: hover) and (pointer: fine) {
  body, body * { cursor: none !important; }
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.hover {
  width: 44px;
  height: 44px;
  background: rgba(232, 67, 147, 0.15);
  border: 1.5px solid rgba(232, 67, 147, 0.4);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none !important; }
}

/* ---- FLOATING PLAYER ---- */
.floating-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}
.floating-player.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-player-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.floating-player-toggle:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(232, 67, 147, 0.2);
}
.floating-player-toggle svg { flex-shrink: 0; }
.floating-player-eq {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
}
.floating-player-eq span {
  display: block;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: eqBar 0.8s ease-in-out infinite alternate;
}
.floating-player-eq span:nth-child(1) { height: 4px; animation-delay: 0s; }
.floating-player-eq span:nth-child(2) { height: 8px; animation-delay: 0.15s; }
.floating-player-eq span:nth-child(3) { height: 6px; animation-delay: 0.3s; }
.floating-player-eq span:nth-child(4) { height: 10px; animation-delay: 0.1s; }
@keyframes eqBar {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}
.floating-player-embed {
  position: absolute;
  bottom: 52px;
  right: 0;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: all 0.35s var(--ease);
}
.floating-player.open .floating-player-embed {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* ---- ENHANCED TRANSITIONS ---- */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-clip {
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transition: opacity 0.8s var(--ease-out), clip-path 1s var(--ease-out);
}
.reveal-bounce {
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-clip.visible {
  opacity: 1;
  clip-path: circle(75% at 50% 50%);
}
.reveal-bounce.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ---- SPLIT TEXT ---- */
.split-heading .word {
  display: inline-block;
  overflow: hidden;
}
.split-heading .word-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.6s var(--ease);
}
.split-heading.visible .word-inner {
  transform: translateY(0);
}

/* ---- AMBIENT GLOW ---- */
.section-dark { position: relative; overflow: hidden; }
.section-dark::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.04) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: ambientDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes ambientDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33% { transform: translate(-80px, 60px) scale(1.2); opacity: 0.8; }
  66% { transform: translate(40px, -30px) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-20px, 80px) scale(1.1); opacity: 0.7; }
}
.section-dark > .container { position: relative; z-index: 1; }

/* ---- TILT CARDS ---- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-card .disc-card-inner,
.tilt-card .merch-card-info,
.tilt-card .merch-card-visual {
  transform: translateZ(20px);
}

/* ---- PARALLAX HERO ---- */
.hero { will-change: auto; }
.hero-image { will-change: transform; }
.hero-content { will-change: transform, opacity; }

/* ---- COUNTERS ---- */
.counter-animate {
  display: inline-block;
  min-width: 1ch;
}


/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-image { transform: none !important; }
  .hero-content { transform: none !important; opacity: 1 !important; }
  .cursor-dot { display: none !important; }
  .floating-player { transform: translateY(0); opacity: 1; }
  .photo-strip-inner { animation: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-clip, .reveal-bounce {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .split-heading .word-inner { transform: none !important; }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-links.active { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1rem; color: var(--white); }
  .nav-links a::after { display: none; }

  .announce-bar-inner { padding: 6px 16px; gap: 6px; }
  .announce-bar-text { font-size: 0.6rem; }
  body.has-announce-bar .nav { top: var(--announce-bar-h, 30px); }
  body.has-announce-bar .hero { padding-top: var(--announce-bar-h, 30px); }

  .hero-content { padding: 0 24px 72px; }
  .hero-scroll { display: none; }

  .section { padding: 80px 0; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-stack { max-width: 400px; margin: 0 auto; }
  .about-photo-accent {
    bottom: -16px;
    right: -12px;
    width: 38%;
  }

  .featured-release {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .featured-release-art { width: 160px; }
  .featured-release-links { justify-content: center; }

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

  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .tiktok-grid { grid-template-columns: 1fr; }

  .show-card { flex-wrap: wrap; gap: 16px; }

  .connect-layout { grid-template-columns: 1fr; }

  .social-row { gap: 6px; }
  .social-link { padding: 8px 12px; font-size: 0.6875rem; }

  .photo-strip img { height: 200px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-player { bottom: 16px; right: 16px; }
  .floating-player-embed { width: 260px; }
  .cursor-dot { display: none !important; }
}

@media (max-width: 480px) {
  :root { --nav-height: 56px; }

  .hero-title img { max-width: 320px; width: 75%; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .disc-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .connect-card { padding: 28px 20px; }

  .social-row { flex-direction: column; align-items: stretch; }
  .social-link { justify-content: center; }

  .floating-player-embed { width: 100vw; right: -16px; border-radius: 12px 12px 0 0; }
}
