* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  /* MENÚ */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(5px);
  }
  
  nav .logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ea93fe;
    letter-spacing: 1px;
  }
  
  /* Menu Toggle */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
  }
  
  nav ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff33cc;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff33cc;
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  /* HERO VIDEO */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(50%);
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    color: #ea93fe;
    text-shadow: 2px 2px 8px #000;
    animation: fadeInDown 1s ease;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 20px;
    animation: fadeInUp 1s ease;
  }
  
  /* SECCIONES */
  section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section h2 {
    font-size: 2.5rem;
    color: #ea93fe;
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* GALERÍA */
  #gallery h3 {
    font-size: 2rem;
    color: #ff33cc;
    margin: 40px 0 20px;
    text-align: center;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }
  
  .gallery-grid a {
    aspect-ratio: 9 / 16;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
  }
  
  .gallery-grid a:hover {
    transform: scale(1.05);
  }
  
  /* MÚSICA */
  .music-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .music-links a {
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .music-links a:hover {
    color: #ff33cc;
    transform: scale(1.1);
  }
  
  /* EVENTOS */
  #events ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  
  #events ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  /* CONTACTO */
  #contact {
    text-align: center;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #contact input, #contact textarea {
    margin: 10px 0;
    padding: 15px;
    width: 90%;
    max-width: 500px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  #contact button {
    background: #9b0101;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
  }
  
  #contact button:hover {
    background: #ff3333;
    transform: scale(1.05);
  }
  
  /* Logo contacto */
  .logo-contact {
    max-width: 250px;
    margin-top: 40px;
    animation: fadeInUp 1s ease;
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .logo-contact:hover {
    transform: scale(1.1);
  }
  
  /* FOOTER */
  footer {
    background-color: #111;
    color: #aaa;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-socials {
    margin-bottom: 10px;
  }
  
  .footer-socials a {
    color: #bbb;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-socials a:hover {
    color: #ff33cc;
    transform: scale(1.1);
  }
  
  /* ANIMACIONES */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 60px;
      right: 30px;
      border-radius: 8px;
      padding: 10px;
      gap: 15px;
    }
  
    nav ul.active {
      display: flex;
    }
  
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .hero-text p {
      font-size: 1.2rem;
    }
  }

  .music-links a.highlight i {
    font-size: 2rem;
    color: #FF0000; /* rojo YouTube */
    transition: transform 0.3s ease;
}

.music-links a.highlight i:hover {
    transform: scale(1.2);
}

#event-list {
  list-style: none;
  padding: 0;
}

.evento-item {
  background-color: #1a1a1a;
  color: #fff;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff0099;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 10px rgba(255, 0, 153, 0.3);
  transition: opacity 0.3s ease;
}

.evento-item p {
  margin: 0.3rem 0;
  font-size: 1rem;
}

.evento-item i {
  margin-right: 0.5rem;
  color: #ff0099;
}

.evento-item a {
  color: #00ffff;
  font-weight: bold;
  text-decoration: none;
}

.evento-item a:hover {
  text-decoration: underline;
}



.evento-item.pasado {
  opacity: 0.5;
  filter: grayscale(60%);
}

.finalizado {
  font-style: italic;
  color: #ff8080;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
.finalizado i {
  color: #ff5555;
  margin-right: 0.3rem;
}

.lang { display: none; }
.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-btn {
  background-color: #eee;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lang-btn:hover {
  background-color: #ccc;
}

.release {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}

.release h3 {
  font-size: 1.8rem;
  color: #ff33cc;
  margin-bottom: 20px;
}

.release-image {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(255, 0, 204, 0.2);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.release-image:hover {
  transform: scale(1.05);
}

.music-links a[href*="soundcloud"] i {
  color: #ff5500; /* Naranja SoundCloud */
}

.music-links a[href*="spotify"] i {
  color: #1DB954; /* Verde Spotify */
}