/* ==========================================================================
   ROCK SPACE RADIO - ESTILOS PRINCIPALES
   Estética: Rock/Metal Agresiva, Modo Oscuro Neón, Glassmorphism
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,800;0,900;1,400&family=Oswald:wght@400;600;700&family=Metal+Mania&display=swap');

:root {
  --bg-dark: #0a0b0e;
  --bg-card: rgba(22, 25, 34, 0.85);
  --bg-card-hover: rgba(30, 35, 48, 0.95);
  --bg-surface: #12151e;
  
  --primary-red: #ff003c;
  --primary-red-glow: rgba(255, 0, 60, 0.5);
  --accent-amber: #ff9f1c;
  --accent-cyan: #00e5ff;
  --text-main: #f0f3f8;
  --text-muted: #9aa4b8;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 0, 60, 0.35);
  
  --font-rock: 'Metal Mania', 'Oswald', cursive, sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --transition-fast: 0.25s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 0, 60, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(255, 159, 28, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #252a38;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* Typography & General */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.rock-font {
  font-family: var(--font-rock);
  letter-spacing: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header Styles */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

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

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-amber));
  margin: 0.8rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--primary-red-glow);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.18);
  transform: translateY(-4px);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b3002a 100%);
  color: #fff;
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px var(--primary-red-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a4f 0%, var(--primary-red) 100%);
  box-shadow: 0 6px 28px rgba(255, 0, 60, 0.7);
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  background: rgba(255, 159, 28, 0.08);
}

/* ==========================================================================
   HEADER & STICKY STREAMING PLAYER BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 0, 60, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--primary-red-glow));
}

.brand-text-wrap .brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(90deg, #fff 0%, #ff6b8b 50%, var(--primary-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text-wrap .brand-slogan {
  font-size: 0.75rem;
  color: var(--accent-amber);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red-glow);
}

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

.cart-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.cart-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

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

/* PLAYER BAR */
.player-bar {
  background: linear-gradient(90deg, #11141e 0%, #1a1e2d 50%, #11141e 100%);
  padding: 0.75rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

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

.btn-play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c4002d 100%);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--primary-red-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 0, 60, 0.15);
  border: 1px solid var(--primary-red);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red);
  animation: pulse-dot 1.4s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.now-playing-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.track-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.track-title-marquee {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.visualizer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 140px;
}

#audioVisualizer {
  width: 100%;
  height: 100%;
}

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

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.volume-slider {
  width: 80px;
  accent-color: var(--primary-red);
  cursor: pointer;
}

.quality-badge {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.4) 0%, var(--bg-dark) 100%),
              url('../assets/images/hero-bg.png') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 11, 14, 0.5) 0%, var(--bg-dark) 90%);
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 0, 60, 0.15);
  border: 1px solid var(--border-red);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d9e6;
  margin-bottom: 2.2rem;
  font-weight: 400;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-amber);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   SECCIÓN DE NOTICIAS DE ROCK
   ========================================================================== */
.news-section {
  padding: 6rem 0;
}

.news-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

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

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

.news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.news-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 11, 14, 0.85);
  border: 1px solid var(--primary-red);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.8rem;
  color: var(--accent-amber);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-read-more {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.news-card:hover .news-read-more {
  gap: 0.8rem;
  color: #fff;
}

/* ==========================================================================
   SECCIÓN MERCH STORE (PRODUCTOS PERSONALIZADOS)
   ========================================================================== */
.merch-section {
  padding: 6rem 0;
  background: rgba(18, 21, 30, 0.4);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.merch-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.merch-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.merch-img-container {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
}

.merch-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.merch-card:hover .merch-img-container img {
  transform: scale(1.08) rotate(-2deg);
}

.merch-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.merch-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.merch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.merch-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-amber);
}

.btn-add-cart {
  background: var(--primary-red);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

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

/* ==========================================================================
   SECCIÓN HISTORIAS DE BANDAS (LEYENDAS DEL ROCK)
   ========================================================================== */
.bands-section {
  padding: 6rem 0;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.2rem;
}

.band-card {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}

.band-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.1) 0%, rgba(10, 11, 14, 0.95) 85%);
  transition: background 0.3s ease;
}

.band-card:hover .band-card-overlay {
  background: linear-gradient(180deg, rgba(255, 0, 60, 0.15) 0%, rgba(10, 11, 14, 0.98) 75%);
}

.band-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.band-origin {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.band-name {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.band-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.band-stats-mini {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  color: #fff;
}

.band-stat-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ==========================================================================
   SECCIÓN CONCIERTOS Y EVENTOS
   ========================================================================== */
.events-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f121b 100%);
}

.countdown-box {
  background: linear-gradient(135deg, rgba(255, 0, 60, 0.12) 0%, rgba(22, 25, 34, 0.9) 100%);
  border: 1px solid var(--border-red);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.15);
}

.countdown-title {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-amber);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 159, 28, 0.4);
}

.time-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.4rem;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.event-row {
  display: grid;
  grid-template-columns: 100px 1.5fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
}

.event-date-badge {
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-red);
  padding: 0.6rem;
  border-radius: 8px;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.event-month {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.event-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.event-venue {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   SECCIÓN PIDE TU CANCIÓN & LIVE SHOUTBOX
   ========================================================================== */
.interact-section {
  padding: 6rem 0;
  background: rgba(18, 21, 30, 0.6);
  border-top: 1px solid var(--border-subtle);
}

.interact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red-glow);
}

.shoutbox-feed {
  height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.5rem;
}

.shout-item {
  background: var(--bg-surface);
  border-left: 3px solid var(--primary-red);
  padding: 0.9rem 1.2rem;
  border-radius: 0 8px 8px 0;
}

.shout-user {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-amber);
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
}

.shout-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.shout-msg {
  font-size: 0.9rem;
  color: var(--text-main);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060709;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-red);
}

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

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

.footer-heading {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary-red);
  margin-top: 0.4rem;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   MODALES UI (CARRITO, NOTICIAS, BANDAS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

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

.modal-container {
  background: #12151e;
  border: 1px solid var(--border-red);
  border-radius: 12px;
  width: 100%;
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 0, 60, 0.3);
  padding: 2rem;
  color: #fff;
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close-btn:hover {
  background: var(--primary-red);
}

/* CART DRAWER SLIDE-OVER */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #11141e;
  border-left: 1px solid var(--border-red);
  z-index: 2100;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

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

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

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-surface);
  padding: 0.8rem;
  border-radius: 8px;
}

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

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

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.cart-item-price {
  color: var(--accent-amber);
  font-weight: 800;
  font-size: 0.9rem;
}

.cart-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title { font-size: 3.2rem; }
  .player-bar { grid-template-columns: 1fr auto; gap: 1rem; }
  .visualizer-container { display: none; }
  .interact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .event-row { grid-template-columns: 80px 1fr auto; }
}

@media (max-width: 768px) {
  .nav-row { flex-direction: column; gap: 1rem; text-align: center; }
  .main-nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .hero-title { font-size: 2.5rem; }
  .cart-drawer { width: 100%; right: -100%; }
}
