/* ================================================================
   THE WOLF PARTY TONIGHT — Main Stylesheet
   Extracted from index.html · Refactored 2026
================================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --color-bg:         #0A0A0A;
  --color-surface:    #111111;
  --color-accent:     #7B2FBE;
  --color-accent-glow:#7B2FBE55;
  --color-accent-mid: #9B4FDE;
  --color-text:       #F0F0F0;
  --color-muted:      #777777;
  --color-border:     #222222;
  --font-heading:     'Bebas Neue', sans-serif;
  --font-logo:        'Raleway', sans-serif;
  --font-body:        'Inter', sans-serif;
  --font-mono:        'Space Mono', monospace;
  --nav-height:       72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9000;
  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: 150px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(123, 47, 190, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease;
}

.cursor.hover {
  width: 6px;
  height: 6px;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--color-accent);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-svg polygon {
  stroke-dashoffset: 300;
}

.preloader-svg polygon:nth-child(1) {
  stroke-dasharray: 300;
  animation: drawPoly 1s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.2s;
}

.preloader-svg polygon:nth-child(2) {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawPoly 0.7s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.9s;
}

@keyframes drawPoly { to { stroke-dashoffset: 0; } }

.preloader-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--color-muted);
  opacity: 0;
  animation: fadeInPre 0.5s ease forwards 1.5s;
}

.preloader-bar {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  animation: expandBar 0.8s ease forwards 1.6s;
}

@keyframes fadeInPre { to { opacity: 1; } }
@keyframes expandBar { to { width: 160px; } }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 1px 0 var(--color-border), 0 4px 24px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo-symbol svg { display: block; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-the {
  font-family: var(--font-logo);
  font-weight: 200;
  font-size: 8px;
  letter-spacing: 0.45em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.nav-logo-main {
  font-family: var(--font-logo);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--color-text);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo-main em {
  font-style: normal;
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a span { color: var(--color-accent); margin-right: 5px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.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); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  transition: color 0.2s, transform 0.2s;
}

.nav-mobile a:hover { color: var(--color-accent); transform: translateX(8px); }

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

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.4) 35%,
      rgba(10, 10, 10, 0.55) 65%,
      rgba(10, 10, 10, 0.97) 100%),
    linear-gradient(135deg, rgba(50, 10, 90, 0.3) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--color-accent);
  margin-bottom: 28px;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9.5vw, 148px);
  letter-spacing: 0.03em;
  line-height: 0.88;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.18em;
}

.hero-title .word-inner {
  display: inline-block;
  transform: translateY(100%);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin-bottom: 52px;
  opacity: 0;
}

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

/* ===== GLITCH EFFECT ===== */
.glitch { position: relative; }

.glitch:hover .word-inner {
  animation: glitch-text 0.3s steps(2) 1;
}

@keyframes glitch-text {
  0%   { transform: translateX(0) skewX(0); }
  25%  { transform: translateX(-3px) skewX(-4deg); color: #ff00ff; }
  50%  { transform: translateX(3px) skewX(4deg); color: #00ffff; }
  75%  { transform: translateX(-2px) skewX(-2deg); }
  100% { transform: translateX(0) skewX(0); color: var(--color-text); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
  background: var(--color-surface);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeRun 20s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--color-muted);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  transition: color 0.3s;
}

.marquee-item:hover { color: var(--color-text); }

.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ===== SECTION BASE ===== */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 56px;
  overflow: hidden;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0s;
}

.reveal-clip.revealed {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.fade-up {
  opacity: 0;
  transform: translateY(48px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary::before { background: var(--color-accent-mid); }

.btn-primary:hover {
  box-shadow: 0 0 40px var(--color-accent-glow), 0 0 80px rgba(123, 47, 190, 0.15);
  transform: translateY(-3px);
}

.btn-primary:hover::before { transform: translateX(0); }

.btn-outline {
  border: 1px solid rgba(240, 240, 240, 0.2);
  color: var(--color-text);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-outline::before { background: rgba(123, 47, 190, 0.15); }

.btn-outline:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px var(--color-accent-glow);
  transform: translateY(-3px);
}

.btn-outline:hover::before { transform: translateX(0); }

/* ===== LATEST RELEASE ===== */
#music { padding: 120px 0 0; }

.release-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.release-cover {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  overflow: hidden;
}

.release-cover-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2d0f5e 0%, #1a0533 50%, #0d0020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.release-cover:hover .release-cover-img { transform: scale(1.04); }

.release-cover-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.15em;
}

.release-cover-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
}

.release-cover:hover .release-cover-border {
  border-color: var(--color-accent);
  box-shadow: 0 0 60px rgba(123, 47, 190, 0.3), inset 0 0 30px rgba(123, 47, 190, 0.05);
}

.release-cover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.release-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-accent);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}

.release-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7.5vw, 96px);
  letter-spacing: 0.02em;
  line-height: 0.88;
  margin-bottom: 10px;
}

.release-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.18em;
  margin-bottom: 40px;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.stream-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateY(101%);
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

.stream-btn:hover {
  border-color: var(--color-accent);
  color: #fff;
}

.stream-btn:hover::before { transform: translateY(0); }

.stream-btn svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

.spotify-embed {
  border: 1px solid var(--color-border);
  overflow: hidden;
}

/* ===== DISCOGRAPHY ===== */
.discography { padding: 100px 0 120px; }

.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.disc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s;
}

.disc-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 64px rgba(123, 47, 190, 0.28);
  border-color: var(--color-accent);
}

.disc-cover {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.disc-cover-img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.disc-card:hover .disc-cover-img { transform: scale(1.08); }

.disc-cover-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}

.disc-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 47, 190, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.disc-cover-overlay svg { width: 52px; height: 52px; fill: white; filter: drop-shadow(0 0 16px rgba(123, 47, 190, 0.8)); }
.disc-card:hover .disc-cover-overlay { opacity: 1; }

.disc-meta { padding: 18px; }

.disc-title {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.disc-type {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.disc-type span { color: var(--color-accent); }

/* ===== ABOUT ===== */
#about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  will-change: transform;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 40%, rgba(10, 10, 10, 0.88) 80%, rgba(10, 10, 10, 0.97) 100%),
    linear-gradient(135deg, rgba(30, 5, 60, 0.5) 0%, transparent 60%);
}

#about .container { position: relative; z-index: 1; }

#about::after {
  content: 'TWPT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 30vw;
  color: rgba(123, 47, 190, 0.04);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
  z-index: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 80px;
}

.stat-item {
  background: var(--color-bg);
  padding: 36px;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:hover { background: var(--color-surface); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.18em;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-text p strong { color: var(--color-text); }

.members-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.member-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.member-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px var(--color-accent-glow);
  transform: translateX(4px);
}

.member-card:hover::before { transform: scaleY(1); }

.member-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(123, 47, 190, 0.4);
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2d0f5e, #0d0020);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.member-card:hover .member-avatar { border-color: var(--color-accent); }

.member-avatar-initial {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-accent);
}

.member-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.member-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-accent);
  letter-spacing: 0.15em;
}

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

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s;
  cursor: none;
}

.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:hover { border-color: var(--color-accent); }

.gallery-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0533 0%, #0d0020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.15em;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 8000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--color-border);
}

.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--color-muted); background: none; border: none;
  cursor: none; transition: color 0.2s;
}

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

/* ===== SHOWS ===== */
#shows {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-item {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
  position: relative;
}

.show-item::before {
  content: '';
  position: absolute;
  left: -32px; right: -32px; top: 0; bottom: 0;
  background: rgba(123, 47, 190, 0.04);
  opacity: 0;
  transition: opacity 0.3s;
}

.show-item:hover::before { opacity: 1; }

.show-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  line-height: 1.6;
}

.show-date-day {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.show-city {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.03em;
  line-height: 1;
}

.show-venue {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.show-country {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.show-ticket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.show-ticket:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.show-ticket.sold-out {
  opacity: 0.4;
  pointer-events: none;
}

.shows-empty {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.15em;
  text-align: center;
  padding: 48px 0;
  border: 1px dashed var(--color-border);
}

/* ===== NEWS ===== */
#news {
  padding: 120px 0;
  background: var(--color-surface);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.news-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface);
}

.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.news-card:hover .news-card-img img { transform: scale(1.04); }

.news-card-body { padding: 24px; }

.news-card-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.1;
}

.news-card-text {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
}

.news-empty {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.15em;
  text-align: center;
  padding: 48px 0;
  border: 1px dashed var(--color-border);
}

/* ===== MERCH ===== */
#merch {
  padding: 120px 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

#merch::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.merch-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.merch-header .section-title { margin-bottom: 0; }

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

.merch-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s;
  position: relative;
}

.merch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(123, 47, 190, 0.25);
  border-color: var(--color-accent);
}

.merch-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.merch-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.merch-card:hover .merch-img-inner { transform: scale(1.04); }

.merch-icon { opacity: 0.2; }

.merch-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--color-accent);
  color: #fff;
}

.merch-badge.sold-out {
  background: #333;
  color: var(--color-muted);
}

.merch-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.12em;
}

.merch-info {
  padding: 16px;
  border-top: 1px solid var(--color-border);
}

.merch-name {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.merch-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

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

.merch-price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-accent);
}

.merch-buy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
}

.merch-card:hover .merch-buy {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.merch-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.merch-note a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== CONTACT ===== */
#contact { padding: 120px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 48px;
  padding: 16px 24px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-email::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(123, 47, 190, 0.08);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.contact-email:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px var(--color-accent-glow);
}

.contact-email:hover::before { transform: translateX(0); }

.social-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.social-links { display: flex; flex-wrap: wrap; gap: 10px; }

.social-link {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.social-link:hover::before { transform: scale(2); border-radius: 0; }
.social-link svg { width: 17px; height: 17px; fill: currentColor; position: relative; z-index: 1; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-bottom-color: rgba(123, 47, 190, 0.3);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 16px var(--color-accent-glow);
  background: rgba(123, 47, 190, 0.04);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit { align-self: flex-start; margin-top: 8px; }

.form-success {
  display: none;
  padding: 14px 20px;
  border: 1px solid var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

/* ===== SUBSCRIBE ===== */
#subscribe {
  padding: 100px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(123, 47, 190, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

.subscribe-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.subscribe-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 40px;
}

.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-right: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}

.subscribe-form input[type="email"]:focus { border-color: var(--color-accent); }

.subscribe-form button {
  padding: 14px 28px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  border: none;
  cursor: none;
  white-space: nowrap;
  transition: background 0.25s;
}

.subscribe-form button:hover { background: var(--color-accent-mid); }

.subscribe-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
}

.subscribe-success {
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.14em;
  margin-top: 16px;
}

/* ===== PRESS ===== */
#press {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 48px;
}

.press-block {
  background: var(--color-bg);
  padding: 36px 32px;
  transition: background 0.25s;
}

.press-block:hover { background: var(--color-surface); }

.press-block-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.press-block-title {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.press-block-text {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
}

.press-block-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(123, 47, 190, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.press-block-link:hover { border-color: var(--color-accent); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }

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

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  /* Nav */
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }

  /* Section padding */
  #music { padding: 64px 0 0; }
  .discography { padding: 56px 0 64px; }
  #about { padding: 64px 0; }
  #shows { padding: 64px 0; }
  #news { padding: 64px 0; }
  #merch { padding: 64px 0; }
  #contact { padding: 64px 0; }
  #press { padding: 56px 0; }
  #subscribe { padding: 56px 0; }

  /* Layouts */
  .release-grid { grid-template-columns: 1fr; gap: 48px; }
  .release-cover { max-width: 100%; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: column; align-items: center; }
  .merch-header { flex-direction: column; align-items: flex-start; }
  .press-grid { grid-template-columns: 1fr; }

  /* Subscribe form stacks vertically */
  .subscribe-form { flex-direction: column; }
  .subscribe-form input[type="email"] { border-right: 1px solid var(--color-border); border-bottom: none; }
  .subscribe-form button { padding: 14px; }

  /* Shows row — stack to 2-col grid */
  .show-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
  }
  .show-city { font-size: 13px; }
  .show-venue { grid-column: 2; font-size: 11px; }
  .show-ticket { grid-column: 2; }
  .show-date-day { font-size: 28px; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .disc-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; aspect-ratio: 4/3; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 10vw, 52px); }
  .section-title { font-size: clamp(32px, 8vw, 56px); }
  .nav-mobile a { font-size: 42px; }
}
