/* ==========================================================================
   BANDA XXX - SITIO WEB OFICIAL / OFFICIAL WEBSITE
   Heavy Metal Latinoamericano - 30 Años de Trayectoria
   Theme: Dark, Obsidian Black, Blood Crimson Red & Burnished Metal Gold
   ========================================================================== */

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

:root {
  --bg-black: #060608;
  --bg-card: rgba(14, 14, 18, 0.85);
  --bg-card-hover: rgba(24, 20, 24, 0.95);
  --bg-glass: rgba(10, 10, 14, 0.7);
  
  --red-crimson: #e60026;
  --red-bright: #ff1a3c;
  --red-dark: #800014;
  --red-glow: rgba(230, 0, 38, 0.45);
  --red-glow-intense: rgba(255, 26, 60, 0.75);

  --gold-metallic: #c59d5f;
  --gold-burnished: #9e7b40;
  --gold-light: #e5c38c;
  
  --silver-metal: #a8b0b8;
  --text-white: #f5f5f7;
  --text-dim: #9ea4b0;
  --text-muted: #666c78;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-red: rgba(230, 0, 38, 0.4);
  --border-gold: rgba(197, 157, 95, 0.35);

  --font-metal: 'Metal Mania', cursive;
  --font-gothic: 'Cinzel', serif;
  --font-heading: 'Pirata One', cursive;
  --font-body: 'Outfit', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Atmospheric Ambient Background & Embers */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% 0%, rgba(230, 0, 38, 0.18), transparent 50%),
    radial-gradient(circle at 10% 40%, rgba(128, 0, 20, 0.12), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(230, 0, 38, 0.15), transparent 40%),
    linear-gradient(180deg, #060608 0%, #0c090c 50%, #060608 100%);
  pointer-events: none;
  z-index: -2;
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: -1;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-gothic);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
}

.text-crimson {
  color: var(--red-bright);
}

.text-gold {
  color: var(--gold-light);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-gothic);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
  background: rgba(230, 0, 38, 0.12);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(230, 0, 38, 0.3);
}

.section-tag::before {
  content: '⚡';
  font-size: 0.8rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 25px rgba(230, 0, 38, 0.5);
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-crimson), var(--gold-metallic), transparent);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 1.25rem auto 0;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(6, 6, 8, 0.96);
  border-bottom: 1px solid var(--border-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(230, 0, 38, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(230, 0, 38, 0.4));
  transition: transform var(--transition-fast);
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 14px rgba(255, 26, 60, 0.8));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-gothic);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 3px;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--gold-metallic);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

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

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-crimson), var(--gold-metallic));
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  text-shadow: 0 0 12px var(--red-bright);
}

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

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

/* Language Toggle Button */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  padding: 3px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-gothic);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--red-crimson);
  color: var(--text-white);
  box-shadow: 0 0 10px var(--red-glow);
}

/* Social icons header */
.social-shortcuts {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  color: var(--red-bright);
  border-color: var(--red-bright);
  background: rgba(230, 0, 38, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 0 12px var(--red-glow);
}

/* Hamburger for mobile */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1.5rem 60px;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.4) 0%, rgba(6, 6, 8, 0.95) 100%),
              url('../assets/hero_metal_stage.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(6, 6, 8, 0.9) 85%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(14, 14, 20, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-family: var(--font-gothic);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(197, 157, 95, 0.2);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-bright);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--red-bright); }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Master Logo Display */
.hero-logo-wrapper {
  margin: 0 auto 2rem;
  max-width: 620px;
  position: relative;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(230, 0, 38, 0.65)) drop-shadow(0 0 50px rgba(197, 157, 95, 0.3));
  animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: 3px;
  text-shadow: 0 0 35px rgba(0, 0, 0, 0.9), 0 0 15px var(--red-glow);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-dim);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.5px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  font-family: var(--font-gothic);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-crimson) 0%, #b3001a 100%);
  color: var(--text-white);
  border: 1px solid var(--red-bright);
  box-shadow: 0 0 25px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-crimson) 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 35px var(--red-glow-intense);
}

.btn-secondary {
  background: rgba(18, 18, 24, 0.7);
  color: var(--text-white);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(30, 24, 20, 0.9);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(197, 157, 95, 0.35);
}

/* Quick Streaming Bar */
.streaming-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.streaming-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-gothic);
}

.streaming-links {
  display: flex;
  gap: 1rem;
}

.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.stream-badge:hover {
  background: rgba(230, 0, 38, 0.15);
  border-color: var(--red-bright);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   FEATURED ANTHEM & INTERACTIVE AUDIO-VIDEO PLAYER
   ========================================================================== */
.featured-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, #0d0a0e 50%, var(--bg-black) 100%);
  position: relative;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.video-spotlight-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-red);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(230, 0, 38, 0.15);
}

.video-thumb-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.video-thumb-wrapper:hover .video-thumb-img {
  transform: scale(1.04);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(230, 0, 38, 0.85);
  border: 2px solid var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--red-glow-intense);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.play-button-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--text-white);
  margin-left: 4px;
}

.video-thumb-wrapper:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--red-bright);
}

.video-info-bar {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 14, 0.95);
  border-top: 1px solid var(--border-subtle);
}

.video-info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.video-info-text p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Audio Player Console */
.audio-console {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.audio-console::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-crimson), var(--gold-metallic));
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.console-title {
  font-family: var(--font-gothic);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
}

.now-playing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--red-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Track list selector */
.tracklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.track-item:hover,
.track-item.active {
  background: rgba(230, 0, 38, 0.15);
  border-color: var(--border-red);
}

.track-item.active {
  box-shadow: inset 0 0 15px rgba(230, 0, 38, 0.2);
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.track-num {
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-bright);
  width: 20px;
}

.track-details h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.15rem;
}

.track-details span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.track-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Soundwave visualizer bar */
.visualizer-container {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.v-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red-dark) 100%);
  border-radius: 2px;
  height: 15%;
  transition: height 0.15s ease;
}

.visualizer-container.playing .v-bar {
  animation: dance-wave 0.8s ease-in-out infinite alternate;
}

.visualizer-container.playing .v-bar:nth-child(2n) { animation-delay: 0.2s; }
.visualizer-container.playing .v-bar:nth-child(3n) { animation-delay: 0.4s; }
.visualizer-container.playing .v-bar:nth-child(4n) { animation-delay: 0.1s; }
.visualizer-container.playing .v-bar:nth-child(5n) { animation-delay: 0.3s; }

@keyframes dance-wave {
  0% { height: 15%; }
  50% { height: 85%; }
  100% { height: 35%; }
}

/* Interactive Controls */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.control-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.control-btn:hover {
  color: var(--text-white);
  transform: scale(1.1);
}

.control-btn.play-main {
  width: 52px;
  height: 52px;
  background: var(--red-crimson);
  color: var(--text-white);
  box-shadow: 0 0 20px var(--red-glow);
}

.control-btn.play-main:hover {
  background: var(--red-bright);
  box-shadow: 0 0 30px var(--red-glow-intense);
}

/* ==========================================================================
   DISCOGRAPHY SECTION
   ========================================================================== */
.discography-section {
  padding: 6rem 0;
  position: relative;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.album-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(230, 0, 38, 0.2);
}

.album-cover-container {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

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

.album-year-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 6, 8, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-gothic);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

.album-details {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.album-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.album-type {
  font-size: 0.85rem;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.album-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.album-track-preview {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.album-track-preview li {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.album-track-preview li::before {
  content: '▸';
  color: var(--red-crimson);
}

.album-action-links {
  display: flex;
  gap: 0.75rem;
}

.album-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}

.album-btn.primary {
  background: var(--red-crimson);
  border-color: var(--red-bright);
}

.album-btn:hover {
  border-color: var(--red-bright);
  background: rgba(230, 0, 38, 0.2);
  color: var(--text-white);
}

.album-btn.primary:hover {
  background: var(--red-bright);
}

/* ==========================================================================
   TOUR DATES & RITUALS (GIRA 30 AÑOS EN MÉXICO Y LATINOAMÉRICA)
   ========================================================================== */
.tour-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, #0d0a0e 50%, var(--bg-black) 100%);
  position: relative;
}

.tour-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-item {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 180px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.tour-item:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), -5px 0 15px rgba(230, 0, 38, 0.2);
}

.tour-date {
  display: flex;
  flex-direction: column;
}

.tour-day {
  font-family: var(--font-gothic);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
}

.tour-month {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.tour-location h4 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.25rem;
}

.tour-location span {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.tour-venue {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.tour-venue span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tour-action {
  text-align: right;
}

.badge-status {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-gothic);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.badge-status.tickets {
  background: var(--red-crimson);
  color: var(--text-white);
  border: 1px solid var(--red-bright);
}

.badge-status.tickets:hover {
  background: var(--red-bright);
  box-shadow: 0 0 15px var(--red-glow);
}

.badge-status.soldout {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  cursor: not-allowed;
}

.badge-status.soon {
  background: rgba(197, 157, 95, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-metallic);
}

/* ==========================================================================
   BAND ROSTER / THE BAND (ALINEACIÓN AUTÉNTICA)
   ========================================================================== */
.band-section {
  padding: 6rem 0;
  position: relative;
}

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

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(230, 0, 38, 0.25);
}

.member-photo-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.member-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.member-card:hover .member-photo-img {
  transform: scale(1.06);
}

.member-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 8, 0.95) 100%);
}

.member-role-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(230, 0, 38, 0.9);
  color: var(--text-white);
  font-family: var(--font-gothic);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.member-info {
  padding: 1.5rem;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.member-instrument {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.member-bio {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Full Band Stage Feature Banner */
.stage-feature-banner {
  margin-top: 4rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.stage-feature-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.stage-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 8, 0.95) 95%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.stage-feature-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

.stage-feature-overlay p {
  color: var(--text-dim);
  max-width: 700px;
}

/* ==========================================================================
   VIDEO VAULT (GALERÍA DE VIDEOS)
   ========================================================================== */
.videos-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, #0e0a10 50%, var(--bg-black) 100%);
}

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

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(230, 0, 38, 0.2);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.06);
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(230, 0, 38, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.video-card-play svg {
  width: 24px;
  height: 24px;
  fill: var(--text-white);
  margin-left: 3px;
}

.video-card:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--red-bright);
  box-shadow: 0 0 20px var(--red-glow-intense);
}

.video-card-info {
  padding: 1.25rem;
}

.video-card-info h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.35rem;
}

.video-card-info p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   MERCH ARMOURY (TIENDA DE MERCHANDISING)
   ========================================================================== */
.merch-section {
  padding: 6rem 0;
}

.currency-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.currency-label {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-family: var(--font-gothic);
}

.currency-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-family: var(--font-gothic);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn.active {
  background: var(--gold-metallic);
  color: var(--bg-black);
  border-color: var(--gold-light);
  font-weight: 900;
}

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

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.merch-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 157, 95, 0.2);
}

.merch-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #111116;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.merch-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

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

.merch-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red-crimson);
  color: var(--text-white);
  font-family: var(--font-gothic);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.merch-info {
  padding: 1.5rem;
}

.merch-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.merch-price {
  font-size: 1.25rem;
  font-family: var(--font-gothic);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   EPK & BOOKING INQUIRIES (CONTRATACIONES & PRENSA)
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, #10090c 50%, var(--bg-black) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.contact-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.contact-info-card p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 0, 38, 0.15);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
}

.channel-content span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.channel-content strong {
  font-size: 0.95rem;
  color: var(--text-white);
}

/* Press Kit Download Card */
.epk-download-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-gold);
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
}

.epk-download-box h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}

.epk-download-box p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* Contact Form */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(230, 0, 38, 0.15);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-gothic);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(6, 6, 8, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--red-bright);
  box-shadow: 0 0 15px var(--red-glow);
  background: rgba(12, 10, 14, 0.95);
}

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

.form-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040406;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  position: relative;
}

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

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 380px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   MODAL (YOUTUBE VIDEO PLAYER & POPUPS)
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #08080c;
  border: 1px solid var(--border-red);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(230, 0, 38, 0.4);
}

.modal-iframe-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.modal-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--red-bright);
  transform: scale(1.2);
}

/* Notification Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid var(--border-red);
  color: var(--text-white);
  padding: 1rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--red-glow);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .featured-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .tour-item {
    grid-template-columns: 120px 1fr 1fr auto;
    gap: 1rem;
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 12, 0.98);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-red);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .tour-item {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.75rem;
  }

  .tour-action {
    text-align: left;
    margin-top: 0.5rem;
  }

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


/* ==========================================================================
   YOUTUBE OFFICIAL CHANNEL & SUBSCRIBE CARD
   ========================================================================== */
.yt-channel-card {
  max-width: 980px;
  margin: -2.5rem auto 4rem;
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
}

.yt-channel-inner {
  background: linear-gradient(135deg, rgba(22, 16, 20, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
  border: 1px solid var(--border-red);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(230, 0, 38, 0.25);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.yt-channel-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red-crimson);
  box-shadow: 0 0 15px var(--red-bright);
}

.yt-channel-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.yt-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-metallic);
  box-shadow: 0 0 15px rgba(197, 157, 95, 0.4);
}

.yt-verified-check {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #00d26a;
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-black);
}

.yt-channel-info {
  flex-grow: 1;
}

.yt-channel-name-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.yt-channel-name-row h3 {
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin: 0;
}

.yt-handle {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-family: var(--font-gothic);
  background: rgba(197, 157, 95, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.yt-channel-info p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.4;
}

.btn-youtube-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #cc0000;
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #ff2222;
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-youtube-subscribe:hover {
  background: #ff0000;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
  color: #ffffff;
}

/* ==========================================================================
   COMPLETE SONG VAULT (ALL 30 SONGS)
   ========================================================================== */
.all-songs-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, #0c080e 50%, var(--bg-black) 100%);
  position: relative;
}

.vault-filter-controls {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vault-search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.vault-search-input {
  width: 100%;
  background: rgba(14, 14, 20, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  padding: 0.9rem 1.5rem 0.9rem 3rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.vault-search-input:focus {
  outline: none;
  border-color: var(--red-bright);
  box-shadow: 0 0 20px var(--red-glow);
}

.vault-search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.vault-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tab-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-family: var(--font-gothic);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-pill:hover {
  color: var(--text-white);
  border-color: var(--border-red);
}

.tab-pill.active {
  background: var(--red-crimson);
  color: var(--text-white);
  border-color: var(--red-bright);
  box-shadow: 0 0 15px var(--red-glow);
}

/* Songs Grid */
.songs-vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.song-vault-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.song-vault-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(230, 0, 38, 0.2);
}

.song-thumb-box {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
}

.song-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.song-vault-card:hover .song-thumb-box img {
  transform: scale(1.06);
}

.song-duration-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.85);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: var(--font-body);
}

.song-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230, 0, 38, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.song-card-play svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
  margin-left: 2px;
}

.song-thumb-box:hover .song-card-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--red-bright);
  box-shadow: 0 0 20px var(--red-glow-intense);
}

.song-card-content {
  padding: 1.15rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.song-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--text-white);
}

.song-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.song-card-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.song-play-link {
  color: var(--red-bright);
  font-size: 0.8rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.song-play-link:hover {
  color: var(--text-white);
  text-shadow: 0 0 8px var(--red-bright);
}

.song-yt-external {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition-fast);
}

.song-yt-external:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .yt-channel-inner {
    flex-direction: column;
    text-align: center;
  }
  .yt-channel-name-row {
    justify-content: center;
  }
  .btn-youtube-subscribe {
    width: 100%;
    justify-content: center;
  }
}
