:root {
  --neon-red: #ff2d55;
  --neon-blue: #00f3ff;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
  color: white;
  scroll-behavior: smooth;
}

body, html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  background-color: var(--dark-bg);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0px,
      rgba(0, 0, 0, 0.8) 1px,
      rgba(0, 0, 0, 0.4) 1px,
      rgba(0, 0, 0, 0.4) 2px
  );
  pointer-events: none;
  z-index: 10;
  opacity: 0.5;
}

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

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 45, 85, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 9;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 45, 85, 0.3);
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: white;
  text-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
  position: relative;
  z-index: 2;
}

.logo span {
  color: var(--neon-red);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

nav li a:hover {
  color: var(--neon-red);
}

nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--neon-red);
  transition: all 0.3s ease;
}

.language-selector {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
}

.language-selector button {
  background: none;
  border: 1px solid var(--neon-red);
  color: white;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.language-selector button:hover {
  background-color: rgba(255, 45, 85, 0.2);
}

.language-selector button.active {
  background-color: var(--neon-red);
  font-weight: bold;
}

/* Language classes */
.es, .pt {
  display: none;
}

html[lang="es"] .en, html[lang="es"] .pt {
  display: none;
}

html[lang="es"] .es {
  display: block;
}

html[lang="pt"] .en, html[lang="pt"] .es {
  display: none;
}

html[lang="pt"] .pt {
  display: block;
}

html[lang="en"] .es, html[lang="en"] .pt {
  display: none;
}

html[lang="en"] .en {
  display: block;
}

/* For inline elements */
html[lang="es"] a.es, html[lang="pt"] a.pt, html[lang="en"] a.en {
  display: inline-block;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.burger div {
  width: 30px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.glitch-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/api/placeholder/1920/1080");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: contrast(1.2) brightness(0.7) grayscale(0.4);
}

.glitch-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 70%, var(--dark-bg));
}

.glitch-container {
  position: relative;
  margin-bottom: 2rem;
}

.hero-text {
  position: relative;
  z-index: 5;
  text-align: center;
}

.hero-name {
  font-size: 8vw;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1vw;
  margin-bottom: 0.5rem;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.7);
  animation: glitch 5s infinite;
}

@keyframes glitch {
  0% {
      text-shadow: 0.05em 0 0 var(--neon-red), -0.05em -0.025em 0 var(--neon-blue);
      clip-path: rect(25px, 9999px, 40px, 0);
  }
  1.5% {
      text-shadow: 0.05em 0 0 var(--neon-red), -0.05em -0.025em 0 var(--neon-blue);
      clip-path: rect(25px, 9999px, 30px, 0);
  }
  2% {
      text-shadow: -0.05em -0.025em 0 var(--neon-red), 0.025em 0.025em 0 var(--neon-blue);
      clip-path: rect(15px, 9999px, 25px, 0);
  }
  4% {
      text-shadow: -0.05em -0.025em 0 var(--neon-red), 0.025em 0.025em 0 var(--neon-blue);
      clip-path: rect(45px, 9999px, 50px, 0);
  }
  5% {
      text-shadow: 0.025em 0.05em 0 var(--neon-red), -0.05em -0.025em 0 var(--neon-blue);
      clip-path: rect(50px, 9999px, 85px, 0);
  }
  5.5% {
      text-shadow: 0.025em 0.05em 0 var(--neon-red), -0.05em -0.025em 0 var(--neon-blue);
      clip-path: rect(10px, 9999px, 85px, 0);
  }
  6% {
      text-shadow: 0.025em 0 0 var(--neon-red), -0.025em -0.025em 0 var(--neon-blue);
      clip-path: rect(40px, 9999px, 43px, 0);
  }
  8% {
      text-shadow: 0.025em 0 0 var(--neon-red), -0.025em -0.025em 0 var(--neon-blue);
      clip-path: rect(80px, 9999px, 83px, 0);
  }
  9% {
      text-shadow: 0.025em 0.025em 0 var(--neon-red), 0 -0.05em 0 var(--neon-blue);
  }
  11% {
      text-shadow: 0.025em 0.025em 0 var(--neon-red), 0 -0.05em 0 var(--neon-blue);
  }
  12% {
      text-shadow: -0.05em 0 0 var(--neon-red), 0.025em 0.025em 0 var(--neon-blue);
  }
  14% {
      text-shadow: -0.05em 0 0 var(--neon-red), 0.025em 0.025em 0 var(--neon-blue);
  }
  15% {
      text-shadow: 0 -0.05em 0 var(--neon-red), -0.025em 0 0 var(--neon-blue);
  }
  17% {
      text-shadow: 0 -0.05em 0 var(--neon-red), -0.025em 0 0 var(--neon-blue);
  }
  18% {
      text-shadow: 0.025em 0.05em 0 var(--neon-red), 0 -0.05em 0 var(--neon-blue);
  }
  19% {
      text-shadow: 0.025em 0.05em 0 var(--neon-red), 0 -0.05em 0 var(--neon-blue);
  }
  20% {
      text-shadow: -0.025em 0 0 var(--neon-red), 0.025em -0.025em 0 var(--neon-blue);
  }
  49% {
      text-shadow: -0.025em 0 0 var(--neon-red), 0.025em -0.025em 0 var(--neon-blue);
  }
  50% {
      text-shadow: 0.025em 0 0 var(--neon-red), 0.05em 0 0 var(--neon-blue);
  }
  99% {
      text-shadow: 0.025em 0 0 var(--neon-red), 0.05em 0 0 var(--neon-blue);
  }
  100% {
      text-shadow: -0.025em 0 0 var(--neon-red), -0.025em -0.025em 0 var(--neon-blue);
  }
}

.hero-tagline {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  font-weight: bold;
}

.cta-btn {
  background: none;
  border: 1px solid var(--neon-red);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 85, 0.4), transparent);
  transition: all 0.4s ease;
}

.cta-btn:hover {
  background-color: rgba(255, 45, 85, 0.1);
  box-shadow: 0 0 20px var(--neon-red);
}

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

.socials {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 90;
}

.social-icon {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
  transform: scale(1.2);
}

section {
  min-height: 100vh;
  padding: 10rem 2rem 5rem;
  position: relative;
}

.section-title {
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 4rem;
  display: inline-block;
  position: relative;
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 45, 85, 0.5);
  font-weight: bold;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 2px;
  background-color: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.about-img {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-glitch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 45, 85, 0.1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.music-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.music-item {
  background-color: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.music-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 45, 85, 0.3);
  border-color: var(--neon-red);
}

.music-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 45, 85, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.music-item:hover::before {
  opacity: 1;
}

.music-cover {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
  object-fit: cover;
  filter: grayscale(50%);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-item:hover .music-cover {
  filter: grayscale(0%);
}

.music-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.music-date {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.music-play {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 45, 85, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.platforms {
  display: flex;
  gap: 1rem;
}

.platform-icon {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.platform-icon:hover {
  color: white;
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-item {
  background-color: rgba(10, 10, 10, 0.85);
  border-left: 4px solid var(--neon-red);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.event-item:hover {
  background-color: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
}

.event-date {
  min-width: 100px;
  text-align: center;
}

.event-day {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--neon-red);
  line-height: 1;
}

.event-month {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.event-info {
  flex: 1;
  min-width: 200px;
}

.event-name {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.event-location {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.event-cta {
  min-width: 150px;
}

.event-btn {
  background: none;
  border: 1px solid var(--neon-red);
  color: white;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.event-btn:hover {
  background-color: rgba(255, 45, 85, 0.1);
  box-shadow: 0 0 10px var(--neon-red);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: bold;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background-color: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-red);
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}

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

.submit-btn {
  background: rgba(255, 45, 85, 0.8);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.submit-btn:hover {
  background-color: var(--neon-red);
  box-shadow: 0 0 20px var(--neon-red);
}

footer {
  background-color: var(--darker-bg);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 45, 85, 0.3);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.7);
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--neon-red);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-icon:hover {
  color: var(--neon-red);
  transform: translateY(-3px);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .burger {
      display: flex;
  }
  
  nav ul {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: rgba(5, 5, 5, 0.95);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease;
  }
  
  nav ul.active {
      right: 0;
  }
  
  .burger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger.active div:nth-child(2) {
      opacity: 0;
  }
  
  .burger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .socials {
      bottom: 1.5rem;
      top: unset;
      right: 50%;
      transform: translateX(50%);
      flex-direction: row;
  }
  
  .about-img {
      margin: 0 auto;
  }
  
  .section-title {
      font-size: 2.5rem;
  }
  
  .hero-name {
      font-size: 12vw;
  }
}

/* Estilos para el botón de reproducción */
.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
  transition: all 0.2s ease;
}

/* Cuando está reproduciendo (pausa) */
.play-btn.playing .play-icon {
  width: 12px;
  height: 14px;
  border: none;
  margin-left: 0;
  position: relative;
}

.play-btn.playing .play-icon::before,
.play-btn.playing .play-icon::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 14px;
  background-color: #fff;
  top: 0;
}

.play-btn.playing .play-icon::before {
  left: 0;
}

.play-btn.playing .play-icon::after {
  right: 0;
}

/* Animación de pulso cuando está reproduciendo */
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.play-btn.playing {
  animation: pulse 2s infinite;
  background-color: #ff3366;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Estilo para la barra de progreso (opcional) */
.progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #ff3366;
  width: 0%;
  transition: width 0.1s linear;
}

/* Mejora visual para los controles de audio */
.music-play {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.platforms {
  display: flex;
  gap: 8px;
}

.platform-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.platform-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
