/* ============================================
   BIODJ — NEON / CYBERPUNK THEME
   Mobile-First | Base #050510 | Magenta #FF2D87 | Cyan #00FFFF
   ============================================ */

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

:root {
  --base: #050510;
  --base-secondary: #0D0D1A;
  --base-card: rgba(13, 13, 26, 0.8);
  --base-lighter: #111126;
  --primary: #FF2D87;
  --primary-dark: #cc1f6a;
  --primary-glow: rgba(255, 45, 135, 0.35);
  --primary-glow-strong: rgba(255, 45, 135, 0.6);
  --accent: #00FFFF;
  --accent-dark: #00cccc;
  --accent-glow: rgba(0, 255, 255, 0.35);
  --text: #E0E0FF;
  --text-muted: #6677AA;
  --border-primary: rgba(255, 45, 135, 0.2);
  --border-accent: rgba(0, 255, 255, 0.15);
  --white: #FFFFFF;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(255, 45, 135, 0.3);
  --shadow-glow-accent: 0 0 20px rgba(0, 255, 255, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50px;
  --transition-fast: 0.2s ease;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--base);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: var(--primary); color: var(--base); }

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

.fa-fw { width: 1.25em; text-align: center; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--base);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-logo {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  animation: neon-pulse 2s ease-in-out infinite;
}

.loader-bar {
  width: 220px; height: 2px;
  background: rgba(255, 45, 135, 0.15);
  margin: 30px auto 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 8px var(--primary-glow);
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  animation: load-progress 2.4s ease-out forwards;
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--accent-glow);
}

@keyframes load-progress { 0% { width: 0%; } 100% { width: 100%; } }

@keyframes neon-pulse {
  0%, 100% {
    text-shadow:
      0 0 10px var(--primary),
      0 0 30px var(--primary-glow),
      0 0 60px rgba(255, 45, 135, 0.2);
    opacity: 1;
  }
  50% {
    text-shadow:
      0 0 20px var(--accent),
      0 0 50px var(--accent-glow),
      0 0 80px rgba(0, 255, 255, 0.2);
    opacity: 0.85;
  }
}

/* ============================================
   NAVIGATION — mobile first (hamburger default)
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(5, 5, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 0 var(--border-primary);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

/* Hidden on mobile, shown on desktop */
.nav-links {
  display: none;
  gap: 30px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition);
  box-shadow: 0 0 6px var(--primary-glow);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

/* Hamburger — visible on mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--primary);
  transition: all var(--transition);
  box-shadow: 0 0 6px var(--primary-glow);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown nav */
.nav-links.active {
  display: flex;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: rgba(5, 5, 16, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 20px;
  gap: 0;
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
}
.nav-links.active .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 45, 135, 0.08);
  color: var(--text-muted);
}
.nav-links.active .nav-link:last-child { border-bottom: none; }

/* ============================================
   HERO - FULLSCREEN IMAGE
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  background-size: cover;
  background-position: center top;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 80%;
  background: linear-gradient(
    to top,
    var(--base) 0%,
    rgba(5, 5, 16, 0.7) 50%,
    transparent 100%
  );
}

/* Cyberpunk scan-line overlay */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  padding-bottom: 80px;
  max-width: 900px;
  transition: opacity var(--transition), transform var(--transition);
}
.hero-content.fade-out {
  opacity: 0;
  transform: translateY(-30px);
}

.hero-name {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--white);
  text-shadow:
    0 0 30px var(--primary),
    0 0 60px rgba(255, 45, 135, 0.4),
    0 0 100px rgba(255, 45, 135, 0.15);
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 15px var(--accent-glow);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
  animation: fade-in 1s ease forwards 2.5s;
  pointer-events: auto;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: bounce-arrow 2s ease-in-out infinite;
  box-shadow: 2px 2px 6px var(--primary-glow);
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(8px) rotate(45deg); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   SECTIONS — mobile base padding
   ============================================ */
.section {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: #080820;
  max-width: none;
  padding: 60px 15px;
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
}

.section-alt .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--accent-glow);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================
   AGENDA — event cards, mobile first
   ============================================ */
.agenda-month { margin-bottom: 28px; }

.agenda-month-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

/* Mobile: 2-column grid */
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: var(--base-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border: 1px solid var(--border-primary);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.event-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 30px var(--primary-glow), inset 0 0 30px rgba(255, 45, 135, 0.04);
}

.event-flyer {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--base-lighter);
  flex-shrink: 0;
  border: 1px solid var(--border-accent);
}
.event-flyer img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.event-flyer-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.5;
}

.event-info { flex: 1; }

.event-date {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-shadow: 0 0 8px var(--accent-glow);
}

.event-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  transition: color var(--transition);
}
.event-card:hover .event-title { color: var(--primary); }

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

.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 4px;
}
.event-location i { color: var(--primary); font-size: 0.7rem; }

.event-flag {
  width: 20px; height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

/* Actions span both columns on mobile */
.event-actions {
  grid-column: span 2;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

/* ============================================
   UPDATES — mobile: single column
   ============================================ */
.updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.update-card {
  background: var(--base-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-primary);
  transition: all var(--transition);
}
.update-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.update-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.update-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.update-card:hover .update-image img { transform: scale(1.06); }
.update-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--base-secondary), var(--base-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
  opacity: 0.4;
}

.update-content { padding: 20px; }

.update-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.update-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text);
}
.update-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.update-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap var(--transition);
  text-shadow: 0 0 8px var(--accent-glow);
}
.update-link:hover { gap: 12px; }

/* ============================================
   RELEASES — mobile: 2 columns
   ============================================ */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Music Embeds — mobile: single column */
.music-embeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.embed-card {
  background: var(--base-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-accent);
}
.embed-card-header {
  padding: 16px 20px;
  background: rgba(0, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-accent);
}
.embed-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.embed-card-icon.spotify { background: #1DB954; color: white; }
.embed-card-icon.soundcloud { background: #FF5500; color: white; }
.embed-card-icon.youtube { background: #FF0000; color: #fff; }

.embed-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}
.embed-card-body { padding: 16px 20px; }
.embed-card-body iframe {
  width: 100%;
  border-radius: var(--radius-md);
  border: none;
}

/* Seção Set — wrapper externo centralizado */
.yt-set-wrap {
  max-width: 960px;
  margin: 0 auto;
}

/* Borda neon ao redor do player */
.yt-set-frame {
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--accent-glow);
}

/* Player YouTube 16:9 responsivo */
.yt-player-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.yt-player-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  outline: none;
  display: block;
}

/* Info abaixo do player */
.yt-set-info {
  padding: 20px 4px 4px;
}
.yt-set-date {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.yt-set-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.yt-set-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Release cards */
.release-card {
  background: var(--base-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-primary);
  transition: all var(--transition);
}
.release-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
}

.release-cover {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.release-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.release-card:hover .release-cover img { transform: scale(1.06); }
.release-cover-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.15), rgba(0, 255, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
  opacity: 0.6;
}

.release-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 5, 16, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.release-card:hover .release-overlay { opacity: 1; }

.release-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 15px var(--primary-glow);
}
.release-play-btn:hover { transform: scale(1.15); box-shadow: 0 0 25px var(--primary); }

.release-info { padding: 14px 16px; }
.release-type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 45, 135, 0.12);
  border: 1px solid rgba(255, 45, 135, 0.25);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  margin-bottom: 8px;
}
.release-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.release-artist { color: var(--text-muted); font-size: 0.82rem; }
.release-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 45, 135, 0.1);
  flex-wrap: wrap;
}
.release-link {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 45, 135, 0.08);
  border: 1px solid var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: all var(--transition);
}
.release-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: translateY(-2px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #FF2D87, #FF5CA0);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 45, 135, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 135, 0.55), 0 0 40px rgba(255, 45, 135, 0.2);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--base);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 45, 135, 0.5);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(255, 45, 135, 0.1);
  color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow), inset 0 0 20px rgba(255, 45, 135, 0.05);
}

.btn-sm { padding: 8px 18px; font-size: 0.72rem; }
.btn-lg { padding: 16px 36px; font-size: 0.88rem; }
.btn-icon { padding: 12px; min-width: 44px; }

/* ============================================
   BIO SECTION
   ============================================ */
.bio-section-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  text-align: center;
  white-space: pre-line;
}

/* ============================================
   FOOTER — mobile: single column, centered
   ============================================ */
.footer {
  background: #030308;
  padding: 60px 15px 30px;
  border-top: 1px solid var(--border-primary);
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin-bottom: 60px;
  margin-top: -60px;
  box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--accent-glow);
}

/* Mobile: single column, centered */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.footer-brand { max-width: none; }

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 45, 135, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border: 1px solid var(--border-primary);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.footer-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.footer-link:hover { color: var(--text); }
.footer-link i { color: var(--primary); width: 16px; font-size: 0.7rem; }

.footer-contact-item {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; }

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 45, 135, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.footer-copy { color: var(--text-muted); font-size: 0.82rem; }
.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--primary); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 5, 16, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(255, 45, 135, 0.2);
  border: 1px solid var(--border-primary);
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 15px var(--primary-glow);
}
.lightbox-close:hover {
  background: var(--accent);
  color: var(--base);
  transform: rotate(90deg);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================
   TOAST — mobile: full width
   ============================================ */
.toast {
  position: fixed;
  bottom: 20px;
  left: 15px; right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px var(--primary-glow);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: linear-gradient(135deg, #dc3545, #a71d2a); box-shadow: 0 10px 30px rgba(220,53,69,0.4); }
.toast.success { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.08s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.38s; }
.reveal-stagger.active > * { opacity: 1; transform: translateY(0); }

/* ============================================
   ADMIN STYLES (kept for compatibility)
   ============================================ */
.admin-body { background: var(--base); min-height: 100vh; }

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-box {
  background: var(--base-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 35px 25px;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border-primary);
  box-shadow: 0 0 40px var(--primary-glow);
}
.login-title { text-align: center; font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.login-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 35px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  background: rgba(5, 5, 16, 0.8);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: all var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.15);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-error { color: #ff6b6b; font-size: 0.82rem; margin-top: 8px; }
.form-hint { color: var(--text-muted); font-size: 0.78rem; margin-top: 6px; }

.admin-header {
  background: rgba(5, 5, 16, 0.95);
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.admin-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 10px var(--primary-glow);
}
.admin-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.admin-container { padding: 20px 15px; max-width: 1100px; margin: 0 auto; }

.tabs {
  display: flex;
  gap: 3px;
  background: rgba(5, 5, 16, 0.8);
  padding: 5px;
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
  overflow-x: auto;
  flex-wrap: nowrap;
  border: 1px solid var(--border-primary);
}
.tab {
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
}
.tab:hover { color: var(--text); background: rgba(255, 45, 135, 0.08); }
.tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 0 15px var(--primary-glow);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.admin-card {
  background: var(--base-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-primary);
  flex-wrap: wrap;
  gap: 12px;
}
.admin-card-title {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.item-list { display: flex; flex-direction: column; gap: 12px; }
.item-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  background: rgba(5, 5, 16, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-primary);
  gap: 12px;
  transition: all var(--transition);
}
.item-row:hover { border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }
.item-info { flex: 1; min-width: 0; width: 100%; }
.item-date { font-size: 0.78rem; color: var(--accent); margin-bottom: 3px; }
.item-title { font-weight: 600; margin-bottom: 3px; color: var(--text); }
.item-meta { font-size: 0.82rem; color: var(--text-muted); }
.item-actions { display: flex; gap: 8px; width: 100%; }
.item-actions .btn { flex: 1; justify-content: center; }

.file-input-wrapper { position: relative; }
.file-input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  top: 0; left: 0;
}
.file-input-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 25px 20px;
  border: 1px dashed rgba(255, 45, 135, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.file-input-label i { font-size: 2rem; color: var(--primary); }
.file-input-label:hover,
.file-input-wrapper:focus-within .file-input-label {
  border-color: var(--primary);
  background: rgba(255, 45, 135, 0.04);
  box-shadow: 0 0 20px var(--primary-glow);
}
.file-preview { margin-top: 15px; max-width: 200px; border-radius: var(--radius-md); overflow: hidden; }
.file-preview img { width: 100%; height: auto; }

.upload-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.upload-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-primary);
  transition: all var(--transition);
}
.upload-item:hover { border-color: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }
.upload-item img { width: 100%; height: 100%; object-fit: cover; }
.upload-item-actions {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 5, 16, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}
.upload-item:hover .upload-item-actions { opacity: 1; }
.upload-item-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.upload-item-btn:hover { transform: scale(1.1); }
.upload-item-btn.delete { background: #dc3545; color: white; }
.upload-item-btn.copy { background: var(--primary); color: white; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--text-muted); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none !important; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 15px; }

/* ============================================
   FOOTER CREDITS
   ============================================ */
.footer-credits {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 45, 135, 0.06);
  text-align: center;
}
.footer-credits a { transition: all 0.3s ease; }
.footer-credits a:hover { opacity: 1 !important; color: var(--primary) !important; }
.footer-credits i { font-size: 10px; }

/* ============================================
   RESPONSIVE — small tablet (>= 600px)
   ============================================ */
@media (min-width: 600px) {
  .section { padding: 80px 20px; }
  .section-alt { padding: 80px 20px; }
  .section-header { margin-bottom: 50px; }

  .hero-name { font-size: 5rem; letter-spacing: 3px; }
  .hero-tagline { letter-spacing: 6px; font-size: 1rem; }

  .releases-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  .footer-social { justify-content: center; }
  .footer-links { align-items: flex-start; }
  .footer-contact-item { justify-content: flex-start; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-legal { justify-content: flex-end; }

  .toast {
    left: auto;
    right: 20px;
    max-width: 380px;
    text-align: left;
    justify-content: flex-start;
  }

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

/* ============================================
   RESPONSIVE — desktop nav (>= 900px)
   ============================================ */
@media (min-width: 900px) {
  .nav { padding: 20px 40px; }
  .nav.scrolled { padding: 15px 40px; }

  /* Show horizontal nav, hide hamburger */
  .nav-links {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    padding: 0;
    border: none;
    width: auto;
    backdrop-filter: none;
  }
  .nav-links .nav-link { padding: 0; border: none; }
  .nav-toggle { display: none; }

  /* Hero larger */
  .hero { min-height: 600px; }
  .hero-content { padding: 60px 40px; padding-bottom: 120px; }
  .hero-name { font-size: 7rem; letter-spacing: 4px; }
  .hero-tagline { letter-spacing: 7px; font-size: 1.1rem; }

  /* Event card: 3-column desktop layout */
  .event-card {
    grid-template-columns: 100px 1fr auto;
    gap: 25px;
    padding: 20px;
    margin-bottom: 15px;
  }
  .event-card:hover {
    transform: translateX(6px);
    box-shadow: -4px 0 30px var(--primary-glow), 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  .event-flyer { width: 100px; height: 125px; }
  .event-flyer-placeholder { font-size: 2rem; }
  .event-title { font-size: 1.15rem; }
  .event-actions {
    grid-column: auto;
    margin-top: 0;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  /* Updates: multi-column */
  .updates-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
  .update-image { height: 200px; }
  .update-card:hover { transform: translateY(-10px); }

  /* Music embeds: 2 columns */
  .music-embeds {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .section { padding: 100px 20px; }
  .section-alt { padding: 100px 20px; }
  .section-header { margin-bottom: 60px; }
  .agenda-month { margin-bottom: 40px; }
  .agenda-month-title { margin-bottom: 20px; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  /* Admin: horizontal layout */
  .admin-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 15px 25px;
  }
  .admin-nav { justify-content: flex-end; }
  .admin-container { padding: 30px 25px; }
  .item-row {
    flex-direction: row;
    align-items: center;
  }
  .item-actions { width: auto; }
  .item-actions .btn { flex: none; }

  .login-box { padding: 50px; }
  .footer { padding: 80px 20px 30px; }
  .footer::before { margin-bottom: 80px; margin-top: -80px; }
  .footer-bottom { margin-top: 60px; padding-top: 30px; }
}

/* ============================================
   RESPONSIVE — large desktop (>= 1024px)
   ============================================ */
@media (min-width: 1024px) {
  /* Footer: 4-column layout */
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    text-align: left;
  }
  .footer-brand {
    grid-column: auto;
    max-width: 300px;
    text-align: left;
  }
  .footer-social { justify-content: flex-start; }
  .footer-links { align-items: flex-start; }
  .footer-contact-item { justify-content: flex-start; }

  .releases-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }

  .release-card:hover { transform: translateY(-8px); }

  .updates-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
}

/* ===== Capas por dispositivo ===== */
@media (max-width: 899px) {
    .hero-slide--desktop { display: none !important; }
}
@media (min-width: 900px) {
    .hero-slide--mobile  { display: none !important; }
}
