/* ============================================
   ZERO PAUSE — Red & Black Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(20, 20, 20, 0.85);
  --bg-glass: rgba(230, 57, 70, 0.06);
  --red-primary: #e63946;
  --red-dark: #b91c2c;
  --red-glow: rgba(230, 57, 70, 0.4);
  --red-subtle: rgba(230, 57, 70, 0.12);
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-muted: #6b6b6b;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-red: rgba(230, 57, 70, 0.25);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--red-primary);
  border-radius: 10px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 48px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--red-primary);
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3);
  }
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width var(--transition);
}

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

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Fluid Mouse Glow ---------- */
.fluid-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(600px circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgba(230, 57, 70, 0.12) 0%,
      rgba(230, 57, 70, 0.05) 25%,
      rgba(230, 57, 70, 0.02) 45%,
      transparent 70%);
}

.fluid-glow.active {
  opacity: 1;
}

/* ---------- Particle Canvas ---------- */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 100px;
}

/* Hero Logo Background */
.hero-logo-bg {
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-logo-bg img {
  width: 600px;
  max-width: none;
  opacity: 0.04;
  filter: grayscale(30%) brightness(1.2);
  animation: logoBgPulse 6s ease-in-out infinite alternate;
}

@keyframes logoBgPulse {
  0% {
    opacity: 0.06;
    transform: scale(1);
  }

  100% {
    opacity: 0.12;
    transform: scale(1.05);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(230, 57, 70, 0.1) 0%, transparent 40%);
  pointer-events: none;
  animation: heroBgShift 8s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(rgba(230, 57, 70, 0.015) 0deg,
      transparent 1deg,
      transparent 8deg);
  animation: heroRotate 120s linear infinite;
  pointer-events: none;
}

@keyframes heroRotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 28px;
  background: transparent;
  animation: tagPulse 2.5s ease-in-out infinite;
}

@keyframes tagPulse {

  0%,
  100% {
    box-shadow: 0 0 0px rgba(230, 57, 70, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.25), 0 0 40px rgba(230, 57, 70, 0.1);
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 12px;
  margin-bottom: 24px;
  color: var(--red-primary);
  text-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
  animation: heroTextGlow 4s ease-in-out infinite alternate;
  position: relative;
}

@keyframes heroTextGlow {
  0% {
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
  }

  100% {
    text-shadow: 0 0 40px rgba(230, 57, 70, 0.6), 0 0 80px rgba(230, 57, 70, 0.3);
  }
}

/* Glitch effect on hover */
.hero h1:hover {
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-3px, 3px);
  }

  40% {
    transform: translate(-3px, -3px);
  }

  60% {
    transform: translate(3px, 3px);
  }

  80% {
    transform: translate(3px, -3px);
  }

  100% {
    transform: translate(0);
  }
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  color: white;
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(230, 57, 70, 0.5);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-red);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: var(--red-subtle);
  border-color: var(--red-primary);
  transform: translateY(-3px) scale(1.03);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ---------- Section Common ---------- */
.section {
  padding: 140px 48px;
  position: relative;
}

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

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Video Banner ---------- */
.video-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.6);
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    var(--bg-primary) 100%
  );
  z-index: 1;
}

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

.video-text {
  font-family: 'Bebas Neue', var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--red-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--red-glow);
}

.video-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ---------- Releases Section ---------- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .releases-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.release-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--red-glow);
  border-color: var(--border-red);
}

.release-art {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-secondary), #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.release-art span {
  transition: transform 0.5s ease;
}

.release-card:hover .release-art span {
  transform: scale(1.3) rotate(10deg);
}

.release-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent 50%);
  z-index: 2;
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.release-card:hover .release-art img {
  transform: scale(1.1);
}

.release-info {
  padding: 24px;
}

.release-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 8px;
}

.release-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.release-year {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.release-links {
  display: flex;
  gap: 12px;
}

.release-links a {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-red);
  color: var(--red-primary);
  transition: var(--transition);
}

.release-links a:hover {
  background: var(--red-primary);
  color: white;
}

/* ---------- Albums Section ---------- */
#albums {
  background: var(--bg-secondary);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.album-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.album-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  background: conic-gradient(from 0deg, var(--red-primary), transparent, var(--red-primary));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
  to {
    transform: rotate(360deg);
  }
}

.album-card:hover::before {
  opacity: 0.6;
}

.album-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-glow);
  border-color: var(--border-red);
}

.album-art {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.album-art.art-1 {
  background: linear-gradient(135deg, #1a0507, #3d0c14, #0a0a0a);
}

.album-art.art-2 {
  background: linear-gradient(135deg, #0a0a0a, #1a0f07, #0d0a05);
}

.album-art.art-3 {
  background: linear-gradient(135deg, #0a0a14, #140a1a, #0a0a0a);
}

.album-info {
  padding: 20px;
}

.album-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.album-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Band / Artists Section ---------- */
.band-grid {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  margin-left: -48px;
  margin-right: -48px;
  padding: 20px 48px 40px; /* padding for box shadow and alignment */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.band-grid::-webkit-scrollbar {
  display: none;
}

.member-card {
  flex: 0 0 320px; /* slightly bigger */
  position: relative;
  text-align: left;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 3.5 / 5;
}

.member-card:hover {
  transform: scale(1.1) translateY(-8px);
  border-color: var(--red-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--red-glow);
  z-index: 10;
}

.member-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.member-card:hover .member-photo img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.15);
}

.member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.7) 60%, transparent 100%);
  z-index: 2;
  transform: translateY(16px);
  transition: transform 0.4s ease;
}

.member-card:hover .member-info {
  transform: translateY(0);
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.member-role {
  font-size: 0.85rem;
  color: var(--red-primary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.member-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  overflow: hidden;
  margin-top: 0;
}

.member-card:hover .member-bio {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
  margin-top: 12px;
}

/* ---------- Contact Section ---------- */
#contact {
  background: var(--bg-secondary);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-links a:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: translateY(-5px) rotate(8deg) scale(1.15);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.4);
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group label {
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--bg-secondary);
  padding: 0 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.btn-submit {
  align-self: flex-start;
}

.form-success {
  display: none;
  padding: 16px 24px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  color: var(--red-primary);
  font-weight: 600;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-primary), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Scroll Reveal Variants ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Section Dividers ---------- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ---------- Floating animation for emojis ---------- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-8px) rotate(3deg);
  }

  75% {
    transform: translateY(4px) rotate(-3deg);
  }
}

.release-art span,
.album-art span {
  animation: float 4s ease-in-out infinite;
}

/* ---------- Glow pulse for section tags ---------- */
.section-tag {
  animation: sectionTagGlow 3s ease-in-out infinite;
}

@keyframes sectionTagGlow {

  0%,
  100% {
    text-shadow: 0 0 0px rgba(230, 57, 70, 0);
  }

  50% {
    text-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
  }
}

/* ---------- Cursor blink for typing ---------- */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--red-primary);
  margin-left: 4px;
  animation: cursorBlink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ---------- Parallax helper ---------- */
.parallax-section {
  transform: translateZ(0);
  will-change: transform;
}

/* ---------- Noise overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  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-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.6), 0 0 20px rgba(230, 57, 70, 0.3);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(230, 57, 70, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease;
}

/* Hover states for interactive elements */
.cursor-dot.hovering {
  width: 14px;
  height: 14px;
  background: rgba(230, 57, 70, 0.6);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.8), 0 0 40px rgba(230, 57, 70, 0.4);
}

.cursor-ring.hovering {
  width: 50px;
  height: 50px;
  border-color: rgba(230, 57, 70, 0.6);
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 57, 70, 0.15);
  }

  .nav-logo {
    letter-spacing: 2px;
    font-size: 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right var(--transition);
    border-left: 1px solid var(--border-subtle);
  }

  .nav-links.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 80px 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }

  .hero {
    padding: 120px 20px 60px;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 60%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
  }

  .hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    line-height: 0.9;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 20%, var(--red-primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }

  .hero-tag {
    background: rgba(230, 57, 70, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .hero-logo-bg {
    right: -40%;
  }

  .hero-logo-bg img {
    opacity: 0.02 !important;
    animation: none !important;
  }

  .video-banner {
    min-height: 400px;
    height: 60vh;
  }
  
  .video-text {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .gigs-grid,
  .releases-grid,
  .albums-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .band-grid {
    gap: 16px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 10px 20px 20px;
  }

  .member-card {
    flex: 0 0 260px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .video-text {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}