/* ═══════════════════════════════════════════════════════
   THE WEEKND — XO UNIVERSE | STYLESHEET
   Aesthetic: Dark · Futuristic · Neon Red · Cinematic
═══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --black: #000000;
  --deep: #080808;
  --dark: #0d0d0d;
  --card-bg: #111111;
  --border: #1a1a1a;
  --red: #C8102E;
  --red-dim: rgba(200, 16, 46, 0.15);
  --red-glow: rgba(200, 16, 46, 0.5);
  --white: #ffffff;
  --grey: #888888;
  --light-grey: #aaaaaa;
  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  
  font-size: 16px;
  overflow-x: hidden;
}

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

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: var(--red); color: var(--white); }

/* ═══ CUSTOM CURSOR ═══ */
.custom-cursor {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(200, 16, 46, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--red);
}

/* ═══ PRELOADER ═══ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.xo-symbol {
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 200px);
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow:
    0 0 20px var(--red),
    0 0 60px var(--red-glow),
    0 0 120px rgba(200, 16, 46, 0.3);
  animation: xoFlicker 0.15s infinite alternate, xoPulse 2s ease-in-out infinite;
}

@keyframes xoFlicker {
  0%   { opacity: 1; text-shadow: 0 0 20px var(--red), 0 0 60px var(--red-glow); }
  50%  { opacity: 0.92; text-shadow: 0 0 10px var(--red), 0 0 30px var(--red-glow); }
  100% { opacity: 1; text-shadow: 0 0 30px var(--red), 0 0 80px var(--red-glow), 0 0 160px rgba(200,16,46,0.2); }
}

@keyframes xoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.preloader-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  opacity: 0.12;
  filter: grayscale(1) contrast(2);
  pointer-events: none;
}

.preloader-silhouette img { width: 100%; }

.preloader-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

.preloader-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--grey);
  text-transform: uppercase;
  animation: fadeInUp 1s 0.5s both;
}

.preloader-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  transition: width 0.1s linear;
}

/* ═══ NAVIGATION ═══ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(200, 16, 46, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; }

.logo-xo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 2px;
  transition: color var(--transition), text-shadow var(--transition);
  display: inline-block;
}

.logo-xo:hover,
.logo-xo.large:hover {
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
}

.logo-xo.large { font-size: 48px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  padding: 32px 40px;
  transform: translateY(-100vh);
  transition: transform 0.4s var(--ease-out);
  z-index: 999;
  border-bottom: 1px solid var(--red-dim);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }

.mob-link {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--grey);
  transition: color var(--transition);
  display: block;
}

.mob-link:hover { color: var(--red); }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  box-shadow: 0 0 30px var(--red-glow), 0 4px 20px rgba(200,16,46,0.4);
  transform: translateY(-1px);
}

.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 20px var(--red-dim);
}

/* ═══ SECTIONS ═══ */
.section { position: relative; overflow: hidden; }

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.neon-red {
  color: var(--red);
  text-shadow: 0 0 30px rgba(200,16,46,0.5);
}

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(200,16,46,0.08) 100%
  );
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 6px
  );
  pointer-events: none;
}

.hero-album-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 25vw, 380px);
  z-index: 2;
}

.album-cover-3d {
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 20px 80px rgba(0,0,0,0.8),
    0 0 40px rgba(200,16,46,0.2);
  transition: box-shadow 0.3s;
  will-change: transform;
}

.hero-album-float:hover .album-cover-3d {
  box-shadow:
    0 30px 100px rgba(0,0,0,0.9),
    0 0 60px rgba(200,16,46,0.4);
}

.album-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: albumGlowPulse 3s ease-in-out infinite;
}

@keyframes albumGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 40px;
  max-width: 760px;
  margin-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
}

.hero-era {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.5s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  overflow: hidden;
}

.title-line {
  display: block;
  animation: titleReveal 0.8s var(--ease-out) both;
}

.title-line:nth-child(2) { animation-delay: 0.15s; }

@keyframes titleReveal {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.title-line.neon-red {
  color: var(--red);
  text-shadow:
    0 0 20px rgba(200,16,46,0.8),
    0 0 60px rgba(200,16,46,0.4);
  animation: titleReveal 0.8s 0.15s var(--ease-out) both, neonFlicker 4s 2s infinite;
}

@keyframes neonFlicker {
  0%, 90%, 100% { text-shadow: 0 0 20px rgba(200,16,46,0.8), 0 0 60px rgba(200,16,46,0.4); }
  92% { text-shadow: none; }
  94% { text-shadow: 0 0 20px rgba(200,16,46,0.8), 0 0 60px rgba(200,16,46,0.4); }
  96% { text-shadow: none; }
  98% { text-shadow: 0 0 20px rgba(200,16,46,0.8), 0 0 60px rgba(200,16,46,0.4); }
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s 0.55s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s 0.7s both;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  z-index: 3;
  animation: fadeInUp 1s 1.2s both;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══ ALBUM SHOWCASE ═══ */
.album-showcase {
  padding: 120px 0;
  background: var(--deep);
}

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

.album-visual { position: relative; }

.album-3d-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  transition: transform 0.5s var(--ease-out);
}

.album-3d-wrap:hover { transform: translateY(-8px) rotateY(3deg) rotateX(-2deg); }

.album-main-cover {
  width: 100%;
  border-radius: 4px;
  box-shadow:
    -40px 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(200,16,46,0.2);
}

.album-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.3) 0%, transparent 70%);
  filter: blur(10px);
  animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.8; }
  50% { transform: scaleX(0.95); opacity: 1; }
}

.album-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--red);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px var(--red);
}

@keyframes particleFloat {
  0% { transform: translateY(100%) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-200%) translateX(var(--dx, 20px)); opacity: 0; }
}

.album-info { padding: 20px 0; }

.album-desc {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 40px;
}

.streaming-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.stream-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.stream-btn.spotify { background: #1DB954; color: #000; }
.stream-btn.spotify:hover { box-shadow: 0 0 20px rgba(29,185,84,0.4); transform: scale(1.04); }

.stream-btn.apple { background: #fc3c44; color: #fff; }
.stream-btn.apple:hover { box-shadow: 0 0 20px rgba(252,60,68,0.4); transform: scale(1.04); }

.stream-btn.youtube { background: #FF0000; color: #fff; }
.stream-btn.youtube:hover { box-shadow: 0 0 20px rgba(255,0,0,0.4); transform: scale(1.04); }

.stream-btn.tidal { background: #000; color: #fff; border: 1px solid #444; }
.stream-btn.tidal:hover { border-color: #fff; transform: scale(1.04); }

.tracklist-preview h4 {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.tracklist-preview ul { display: flex; flex-direction: column; gap: 12px; }

.tracklist-preview li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--light-grey);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.tracklist-preview li:hover { color: var(--white); }

.track-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--red);
  width: 28px;
  flex-shrink: 0;
}

/* ═══ TOUR ═══ */
.tour-section {
  padding: 120px 0;
  background: var(--black);
}

.countdown-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.countdown-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 20px;
}

.cd-block span {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  line-height: 1;
}

.cd-block label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  margin-top: -10px;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Tour Map */
.tour-map-wrap {
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.tour-map-bg {
  position: relative;
  aspect-ratio: 16/6;
}

.map-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.3) sepia(0.3);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  position: relative;
  z-index: 2;
  transition: transform 0.2s;
}

.map-point:hover .map-dot { transform: scale(1.4); }

.map-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: mapPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes mapPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.map-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.8);
  padding: 3px 8px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.map-point:hover .map-label { opacity: 1; }

/* Tour Cards */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.tour-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tour-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dim);
  opacity: 0;
  transition: opacity var(--transition);
}

.tour-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-4px); }
.tour-card:hover::before { opacity: 1; }
.tour-card.featured { border-color: rgba(200,16,46,0.3); }

.tour-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tour-date-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-month {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.tour-day {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--white);
}

.tour-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.tour-badge.sold-out { background: rgba(255,255,255,0.1); color: var(--grey); }
.tour-badge.almost-out { background: rgba(200,16,46,0.2); color: var(--red); border: 1px solid rgba(200,16,46,0.4); animation: badgePulse 2s ease-in-out infinite; }
.tour-badge.available { background: rgba(29,185,84,0.15); color: #1DB954; }

@keyframes badgePulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 15px rgba(200,16,46,0.3); }
}

.tour-info { margin-bottom: 24px; }
.tour-info h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.tour-info p { color: var(--grey); font-size: 14px; margin-bottom: 8px; }

.tour-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.btn-tour {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
}

.btn-tour:hover:not(.disabled) {
  background: #e01235;
  box-shadow: 0 0 20px var(--red-glow);
}

.btn-tour.disabled {
  background: rgba(255,255,255,0.08);
  color: var(--grey);
  cursor: not-allowed;
}

/* ═══ MUSIC ═══ */
.music-section {
  padding: 120px 0 160px;
  background: var(--deep);
}

.albums-masonry {
  columns: 4 250px;
  gap: 20px;
}

.album-card {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.album-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-4px); }

.album-card.featured-album { break-inside: avoid; }

.album-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.album-card:hover .album-card-img-wrap img { transform: scale(1.06); }

.album-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

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

.album-tracks-popup {
  padding: 20px;
  width: 100%;
  text-align: left;
}

.album-tracks-popup h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.popup-tracks { margin-bottom: 16px; }

.popup-tracks li {
  font-size: 12px;
  color: var(--light-grey);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.album-stream-btns { display: flex; gap: 8px; }

.mini-stream-btn {
  padding: 6px 14px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
}

.mini-stream-btn:hover { background: #e01235; box-shadow: 0 0 15px var(--red-glow); }

.album-card-info {
  padding: 16px 20px;
}

.album-card-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.album-card-info span { font-size: 12px; color: var(--grey); }

/* Music Player */
.music-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(30px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.music-player.visible { transform: translateY(0); }

.player-artwork {
  width: 48px; height: 48px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

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

.player-info { flex-shrink: 0; min-width: 0; }
.player-track { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.player-artist { font-size: 12px; color: var(--grey); }

.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.player-btn {
  color: var(--light-grey);
  transition: color var(--transition);
  padding: 4px;
}

.player-btn svg { width: 24px; height: 24px; display: block; }
.player-btn:hover { color: var(--white); }

.player-play {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.player-play:hover { background: #e01235; box-shadow: 0 0 20px var(--red-glow); transform: scale(1.05); }
.player-play svg { width: 20px; height: 20px; }

.player-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 400px;
}

.player-time { font-size: 12px; color: var(--grey); white-space: nowrap; }

.player-bar-wrap {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

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

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

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

.player-close {
  color: var(--grey);
  font-size: 18px;
  margin-left: 8px;
  padding: 4px;
  transition: color var(--transition);
}

.player-close:hover { color: var(--red); }

/* ═══ MERCH ═══ */
.merch-section {
  padding: 120px 0;
  background: var(--black);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.merch-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.merch-card:hover {
  border-color: rgba(200,16,46,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px var(--red-dim);
}

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

.merch-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.merch-card:hover .merch-img-wrap img { transform: scale(1.08); }

.merch-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

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

.btn-add-cart {
  padding: 12px 28px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
}

.btn-add-cart:hover { background: #e01235; box-shadow: 0 0 20px var(--red-glow); }

.merch-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.merch-badge.limited { background: var(--red); color: var(--white); animation: badgePulse 2s ease-in-out infinite; }
.merch-badge.new { background: #1DB954; color: #000; }

.merch-info { padding: 16px 20px; }
.merch-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.merch-price { font-size: 18px; font-weight: 800; color: var(--red); }

/* Cart */
.cart-popup {
  position: fixed;
  top: var(--nav-h);
  right: -400px;
  width: 380px;
  background: var(--card-bg);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 950;
  transition: right 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - var(--nav-h));
}

.cart-popup.open { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; }

.cart-count {
  display: inline-flex;
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

.cart-close { color: var(--grey); font-size: 20px; transition: color var(--transition); }
.cart-close:hover { color: var(--red); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }

.cart-empty { color: var(--grey); text-align: center; padding: 40px 0; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--red); font-weight: 700; }

.cart-item-remove {
  color: var(--grey);
  font-size: 16px;
  transition: color var(--transition);
  padding: 4px;
}

.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-total {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.cart-total span { color: var(--red); }

.cart-checkout { width: 100%; justify-content: center; }

.cart-btn-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 54px; height: 54px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,16,46,0.4);
  transition: all var(--transition);
}

.cart-btn-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px var(--red-glow); }
.cart-btn-float svg { width: 24px; height: 24px; color: var(--white); }

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══ ABOUT / TIMELINE ═══ */
.about-section {
  padding: 120px 0;
  background: var(--deep);
}

.timeline { position: relative; }

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--ease-out);
}

.timeline-item.visible { opacity: 1; transform: translateY(0); }

.timeline-item.reverse { direction: rtl; }
.timeline-item.reverse > * { direction: ltr; }

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--red);
  flex-shrink: 0;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--red), var(--border));
  margin-top: 8px;
}

.timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.timeline-item.reverse .timeline-content { direction: rtl; }
.timeline-item.reverse .timeline-content > * { direction: ltr; }

.timeline-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

.timeline-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1);
  transition: filter 0.5s;
}

.timeline-img-wrap:hover img { filter: grayscale(0) contrast(1); }

.era-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

.timeline-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.timeline-text p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
}

.era-hits { display: flex; gap: 8px; flex-wrap: wrap; }

.era-hits span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  background: var(--red-dim);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 100px;
  color: var(--red);
  white-space: nowrap;
}

/* ═══ GALLERY ═══ */
.gallery-section {
  padding: 120px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
}

/* Neon frame */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--red);
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: inset 0 0 20px rgba(200,16,46,0.2);
  pointer-events: none;
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(10px);
}

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

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(200,16,46,0.2);
  color: var(--white);
  font-size: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,16,46,0.4);
  transition: all var(--transition);
}

.lightbox-close { top: 24px; right: 24px; font-size: 18px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

/* ═══ COMMUNITY ═══ */
.community-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
}

.community-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.2);
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 100%);
}

.community-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.glow-title {
  text-shadow: 0 0 40px rgba(200,16,46,0.3);
}

.community-left p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.email-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-right: none;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}

.email-input:focus { border-color: rgba(200,16,46,0.5); }
.email-input::placeholder { color: var(--grey); }

.newsletter-form .btn-primary { border-radius: 0 2px 2px 0; }

.newsletter-success {
  color: #1DB954;
  font-size: 14px;
  font-weight: 600;
}

.newsletter-success.hidden { display: none; }

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-link {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: all var(--transition);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--red-dim);
  border-color: rgba(200,16,46,0.5);
  color: var(--white);
  box-shadow: 0 0 15px var(--red-dim);
}

.social-feed {
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feed-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.feed-items { padding: 20px; display: flex; flex-direction: column; gap: 20px; }

.feed-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.feed-item:last-child { border-bottom: none; padding-bottom: 0; }

.feed-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feed-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.feed-user strong { font-size: 13px; font-weight: 700; display: block; }
.feed-user span { font-size: 11px; color: var(--grey); }

.feed-item p { font-size: 14px; color: var(--light-grey); line-height: 1.6; }

/* ═══ CONTACT ═══ */
.contact-section {
  padding: 120px 0;
  background: var(--deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-block { margin-bottom: 32px; }

.contact-block h4 {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.contact-block p { font-size: 15px; color: var(--light-grey); margin-bottom: 6px; }
.contact-block a { font-size: 14px; color: var(--grey); transition: color var(--transition); }
.contact-block a:hover { color: var(--red); }

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

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

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

.form-group label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: var(--white);
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,16,46,0.6);
}

.form-group select option { background: var(--dark); }

/* ═══ FOOTER ═══ */
.site-footer {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: var(--red);
  box-shadow: 0 0 40px 4px rgba(200,16,46,0.4);
  opacity: 0.6;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--grey);
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-social a:hover { color: var(--red); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--grey); }

/* ═══ UTILITY ═══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Tablet — ≤ 1100px */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }

  .album-showcase-grid { grid-template-columns: 1fr; gap: 60px; }
  .album-3d-wrap { max-width: 340px; }

  .timeline-content { grid-template-columns: 1fr; gap: 24px; }
  .timeline-item.reverse .timeline-content { direction: ltr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-links { grid-column: 1 / -1; }
  .footer-social { flex-direction: row; }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 24px; }

  .hero-album-float { display: none; }
  .hero-content { margin-left: 0; padding: 0 24px; }

  .hero-stats { gap: 20px; }
  .stat-num { font-size: 24px; }

  .section-container { padding: 0 24px; }

  .community-grid { grid-template-columns: 1fr; gap: 48px; }

  .albums-masonry { columns: 2 200px; }

  .tour-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
}

/* Mobile — ≤ 600px */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  .logo-xo { font-size: 26px; }

  .hero-title { font-size: clamp(60px, 18vw, 90px); }

  .hero-ctas { gap: 12px; }
  .btn-primary, .btn-outline { padding: 12px 20px; font-size: 11px; }

  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-divider { display: none; }

  .section-title { font-size: clamp(40px, 10vw, 60px); }

  .album-showcase { padding: 80px 0; }
  .tour-section, .music-section, .merch-section, .about-section,
  .gallery-section, .community-section, .contact-section { padding: 80px 0; }

  .section-header { margin-bottom: 48px; }

  .countdown { gap: 4px; }
  .cd-block { min-width: 60px; padding: 12px 10px; }
  .cd-block span { font-size: 36px; }

  .tour-map-wrap { aspect-ratio: auto; }
  .tour-map-bg { aspect-ratio: 16/8; }
  .map-label { display: none; }

  .tour-grid { grid-template-columns: 1fr; }

  .albums-masonry { columns: 1; }

  .merch-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .timeline-item { grid-template-columns: 30px 1fr; gap: 16px; }
  .timeline-item.reverse { direction: ltr; }
  .timeline-content { grid-template-columns: 1fr; gap: 16px; }
  .timeline-item.reverse .timeline-content { direction: ltr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: 1 / -1; }

  .newsletter-form { flex-direction: column; gap: 12px; }
  .email-input { border-right: 1px solid var(--border); }
  .newsletter-form .btn-primary { border-radius: 2px; width: 100%; justify-content: center; }

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

  .footer-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-social { flex-wrap: wrap; }
  .footer-bottom { padding: 16px 24px; }

  .music-player {
    gap: 10px;
    padding: 0 12px;
  }

  .player-progress { display: none; }
  .player-info { display: none; }

  .cart-popup { width: 100%; right: -100%; }
  .cart-popup.open { right: 0; }

  .cart-btn-float { bottom: 90px; right: 20px; width: 48px; height: 48px; }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .mob-link { font-size: 28px; }

  .mobile-menu { padding: 24px; }

  .streaming-btns { gap: 8px; }
  .stream-btn { padding: 8px 14px; font-size: 12px; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .merch-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

/* ════════════════════════════════════
   FIXES & OVERRIDES (appended patch)
════════════════════════════════════ */

/* Preloader: guarantee full removal */
#preloader[style*="display: none"] { display: none !important; }

/* Preloader silhouette — use real image properly */
.preloader-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 28vw, 320px);
  opacity: 0.18;
  filter: grayscale(1) contrast(1.6);
  pointer-events: none;
  overflow: hidden;
  height: 60vh;
}
.preloader-silhouette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Preloader progress bar glow */
.preloader-bar { box-shadow: 0 0 12px var(--red), 0 0 24px rgba(200,16,46,0.4); }

/* ── SCROLL GLITCH FIX: body must not be overflow hidden after preloader ── */
body:not(.preloading) { overflow-x: hidden !important; overflow-y: auto !important; }

/* ── NAV z-index above everything except preloader ── */
#navbar { z-index: 5000; }
.mobile-menu { z-index: 4999; }

/* ── HERO: ensure content never clips ── */
.hero-content { max-width: min(760px, 90vw); }

/* ── MUSIC PLAYER full responsive ── */
.music-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid rgba(200,16,46,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(5,0,0,0.97);
  backdrop-filter: blur(20px);
}
.music-player.visible { transform: translateY(0); }

/* ── MERCH GRID — proper image coverage ── */
.merch-img-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: var(--card-bg); }
.merch-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.merch-card:hover .merch-img-wrap img { transform: scale(1.06); }

/* ── GALLERY IMAGE COVERAGE ── */
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── TIMELINE IMAGES ── */
.timeline-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.timeline-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.timeline-item:hover .timeline-img-wrap img { transform: scale(1.04); }

/* ── TOUR MAP image coverage ── */
.map-bg-img { width: 100%; height: 100%; object-fit: cover; }

/* ── ALBUM SHOWCASE image ── */
.album-main-cover { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }

/* ── COMMUNITY SECTION bg ── */
.community-bg img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════
   RESPONSIVE PATCHES
═══════════════════════════ */

/* ── Large Desktop ── */
@media (min-width: 1400px) {
  .nav-container { padding: 0 60px; }
  .section-container { padding: 0 60px; }
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero-album-float { width: clamp(160px, 20vw, 260px); }
  .album-showcase-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .album-showcase-grid .album-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .community-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-content { grid-template-columns: 1fr !important; gap: 20px; }
  .timeline-item.reverse .timeline-content { direction: ltr; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 11px; }
}

/* ── Mobile / Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  body { cursor: auto !important; }
  .custom-cursor, .cursor-follower { display: none !important; }

  .nav-container { padding: 0 20px; gap: 16px; }
  .nav-links { display: none !important; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-section { min-height: 100svh; }
  .hero-content { padding: 0 20px; margin-left: 20px; }
  .hero-title { font-size: clamp(56px, 16vw, 96px); }
  .hero-album-float { display: none; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }

  .section-container { padding: 0 20px; }
  .section-title { font-size: clamp(36px, 10vw, 64px); }

  .tour-grid { grid-template-columns: 1fr; gap: 16px; }
  .tour-map-wrap { margin-bottom: 32px; }
  .tour-map-bg { height: 220px; }
  .map-label { font-size: 9px; }

  .albums-masonry { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
  .featured-album { grid-column: span 1 !important; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; grid-auto-rows: 160px; gap: 8px; }
  .gallery-item.tall, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }

  .countdown { gap: 8px; }
  .cd-block span { font-size: clamp(32px, 10vw, 52px); }

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

  .footer-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-newsletter { text-align: center; }

  .music-player { padding: 10px 14px; gap: 8px; }
  .player-artwork { width: 38px; height: 38px; }
  .player-time { display: none; }
  .player-progress { flex: 1; min-width: 60px; }

  .timeline { gap: 32px; }
  .timeline-item { padding: 0; }
  .timeline-content { grid-template-columns: 1fr !important; }

  .community-grid { padding: 0; }
  .community-left, .community-right { text-align: center; }
  .social-links { justify-content: center; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .email-input { border-radius: 2px; }

  .streaming-btns { gap: 8px; }
  .stream-btn { padding: 10px 14px; font-size: 11px; }

  .mobile-menu ul { gap: 14px; }
  .mob-link { font-size: clamp(24px, 7vw, 36px); }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 18vw, 80px); }
  .albums-masonry { grid-template-columns: 1fr !important; }
  .merch-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr !important; grid-auto-rows: 220px; }
  .footer-links { grid-template-columns: 1fr; }
  .cd-block { min-width: 60px; }
  .xo-symbol { font-size: clamp(72px, 22vw, 140px); }
}

/* ── Landscape mobile ── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section { min-height: 100vw; }
  .hero-title { font-size: clamp(44px, 10vw, 72px); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
