/* ==========================================================================
   CAOS METALCORE - CORE STYLES & DESIGN SYSTEM
   Estética: Cyber-Metalcore Brutalism / Dark Obsidian & Crimson Red
   ========================================================================== */

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

:root {
  --bg-dark: #070709;
  --bg-surface: #0e0e13;
  --bg-card: rgba(18, 18, 26, 0.7);
  --bg-card-hover: rgba(28, 28, 40, 0.85);
  
  --red-primary: #e62b2b;
  --red-glow: #ff1e40;
  --red-dark: #8b0000;
  --red-neon: #ff334b;
  
  --text-main: #f0f3f8;
  --text-muted: #8e95a5;
  --text-dark: #505562;
  
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-red: rgba(230, 43, 43, 0.35);
  --border-red-bright: rgba(255, 30, 64, 0.7);

  --font-display: 'Rajdhani', sans-serif;
  --font-hero: 'Syne', sans-serif;
  --font-accent: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --glow-shadow: 0 0 25px rgba(230, 43, 43, 0.35);
  --glow-shadow-strong: 0 0 40px rgba(255, 30, 64, 0.6);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Particle Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, var(--red-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red {
  color: var(--red-neon);
  text-shadow: 0 0 12px rgba(255, 30, 64, 0.5);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  z-index: 1000;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-red);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(7, 7, 9, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--red-glow));
  transition: var(--transition-fast);
}

.nav-brand:hover .nav-logo-img {
  transform: rotate(45deg) scale(1.1);
  filter: drop-shadow(0 0 16px var(--red-neon));
}

.nav-brand-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-fast);
  padding: 4px 0;
}

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

.nav-link:hover, .nav-link.active {
  color: #fff;
  text-shadow: 0 0 10px var(--red-glow);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: rgba(230, 43, 43, 0.2);
  border-color: var(--red-primary);
  color: #fff;
  box-shadow: var(--glow-shadow);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red-neon);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--red-glow);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

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

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230, 43, 43, 0.18) 0%, rgba(7, 7, 9, 0.95) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.hero-logo-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px var(--red-glow));
  animation: pulseLogo 4s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px var(--red-glow));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 45px var(--red-neon));
  }
}

.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(230, 43, 43, 0.15);
  border: 1px solid var(--red-primary);
  color: var(--red-neon);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(230, 43, 43, 0.3);
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-family: var(--font-hero);
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 0.95;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(230, 43, 43, 0.5);
}

.btn-primary:hover {
  background: var(--red-neon);
  box-shadow: 0 0 35px rgba(255, 30, 64, 0.8);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-red-bright);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(230, 43, 43, 0.2);
  color: #fff;
  border-color: var(--red-neon);
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}

/* Floating Audio Player (Bottom Bar) */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(10, 10, 14, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-red);
  z-index: 990;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-vinyl {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red-primary);
  box-shadow: 0 0 10px rgba(230, 43, 43, 0.5);
  animation: spinVinyl 12s linear infinite;
  animation-play-state: paused;
}

.player-vinyl.playing {
  animation-play-state: running;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.player-track-details h4 {
  font-size: 1rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}

.player-track-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-player {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-player:hover {
  color: #fff;
  transform: scale(1.1);
}

.btn-play-main {
  width: 44px;
  height: 44px;
  background: var(--red-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(230, 43, 43, 0.6);
}

.btn-play-main:hover {
  background: var(--red-neon);
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--red-glow);
}

.player-progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 550px;
}

.player-time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 40px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-primary), var(--red-neon));
  box-shadow: 0 0 10px var(--red-glow);
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* Audio Visualizer Canvas on Player */
.player-visualizer-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

#audio-visualizer-canvas {
  width: 180px;
  height: 40px;
}

/* Main Content Sections */
.section {
  padding: 110px 4rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red-primary);
  margin: 12px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--red-glow);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grid & Layout Utilities */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Cards (Glassmorphism + Brutal Borders) */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
  backdrop-filter: blur(12px);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-red);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--glow-shadow);
}

/* Music Discography Section */
.album-card {
  display: flex;
  flex-direction: column;
}

.album-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 9, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.album-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.album-year {
  font-family: var(--font-display);
  color: var(--red-neon);
  font-weight: 700;
  font-size: 0.9rem;
}

.album-title {
  font-size: 1.6rem;
  color: #fff;
}

.track-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.track-item:hover {
  background: rgba(230, 43, 43, 0.2);
  color: #fff;
}

.track-item.playing {
  background: rgba(230, 43, 43, 0.35);
  border: 1px solid var(--red-primary);
  color: #fff;
}

/* Tour Section */
.tour-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tour-card {
  display: grid;
  grid-template-columns: 140px 1fr 200px 160px;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.tour-card:hover {
  border-color: var(--red-primary);
  background: rgba(255, 30, 64, 0.08);
  box-shadow: var(--glow-shadow);
  transform: translateX(6px);
}

.tour-date {
  text-align: center;
}

.tour-day {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red-neon);
  line-height: 1;
}

.tour-month {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.tour-info h3 {
  font-size: 1.4rem;
  color: #fff;
}

.tour-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tour-status {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.status-available {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

.status-selling-fast {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.4);
}

.status-sold-out {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

/* Tour Countdown Banner */
.countdown-banner {
  background: linear-gradient(135deg, rgba(230, 43, 43, 0.25) 0%, rgba(14, 14, 19, 0.9) 100%);
  border: 1px solid var(--red-primary);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--glow-shadow);
  flex-wrap: wrap;
  gap: 2rem;
}

.countdown-title {
  font-size: 1.8rem;
  color: #fff;
}

.countdown-timer {
  display: flex;
  gap: 1.5rem;
}

.timer-unit {
  text-align: center;
}

.timer-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red-neon);
  line-height: 1;
  text-shadow: 0 0 15px var(--red-glow);
}

.timer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Band Members Section */
.member-card {
  text-align: center;
}

.member-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%);
  transition: var(--transition-normal);
}

.member-card:hover .member-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
}

.member-role {
  color: var(--red-neon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.member-name {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 4px;
}

.member-gear {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Merch Store Section */
.store-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--red-primary);
  color: #fff;
  border-color: var(--red-neon);
  box-shadow: 0 0 15px rgba(230, 43, 43, 0.4);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #121218;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  justify-content: space-between;
}

.product-title {
  font-size: 1.3rem;
  color: #fff;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red-neon);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(12, 12, 16, 0.98);
  backdrop-filter: blur(25px);
  border-left: 1px solid var(--border-red);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
}

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

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.5rem;
  color: #fff;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  color: #fff;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 8px;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 1rem;
  color: #fff;
}

.cart-item-details p {
  color: var(--red-neon);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

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

.cart-footer {
  padding: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red-neon);
}

/* Videos / Gallery Showcase */
.video-showcase {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border-red);
  box-shadow: var(--glow-shadow);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 9, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.btn-play-video {
  width: 84px;
  height: 84px;
  background: var(--red-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  box-shadow: 0 0 30px var(--red-glow);
  transition: var(--transition-fast);
}

.btn-play-video:hover {
  transform: scale(1.15);
  background: var(--red-neon);
  box-shadow: 0 0 50px var(--red-glow);
}

/* Fan Club / Newsletter Section */
.syndicate-card {
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.95) 0%, rgba(35, 15, 20, 0.95) 100%);
  border: 1px solid var(--border-red-bright);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--glow-shadow-strong);
}

.syndicate-form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 2rem auto 0 auto;
}

.input-field {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  padding: 14px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.input-field:focus {
  border-color: var(--red-neon);
  box-shadow: 0 0 15px rgba(255, 30, 64, 0.4);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--glow-shadow-strong);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

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

/* Footer */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 4rem 120px 4rem; /* Extra bottom padding for floating player */
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--red-primary);
  box-shadow: var(--glow-shadow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 2rem;
  }
  .player-bar {
    grid-template-columns: 1fr 1fr;
  }
  .player-visualizer-container {
    display: none;
  }
  .tour-card {
    grid-template-columns: 100px 1fr 140px;
  }
  .tour-status {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .section {
    padding: 80px 1.5rem;
  }
  .player-bar {
    grid-template-columns: 1fr;
    height: auto;
    padding: 1rem;
    gap: 0.8rem;
  }
  .player-center {
    width: 100%;
  }
  .tour-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .syndicate-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
