ul{
  list-style: none;
  padding: 0;
}

body{
  font-family: "Odibee Sans", sans-serif;
  margin:0;
  background:#111;
  color:white;
}

.road-rage-regular {
  font-family: "Road Rage", sans-serif;
  font-style: normal;
}

.odibee-sans-regular {
  font-family: "Odibee Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}


header{
  background:black;
  text-align:center;
  position: sticky;
  z-index: 999;
}

h1{
  font-style: italic;
  font-size: 150px;
  line-height: 0.3;
  color: #4432e9;
}

nav a{
  color:white;
  margin:10px;
  font-size: 30px;
  text-decoration:none;
  transition: 0.3s;
}

nav a:hover{
  color: #4432e9;
  text-shadow: 
  0 0 5px #4432e9,
  0 0 10px #4432e9,
  0 0 20px #4432e9;
}

#nuevo_album{
  color: #fff;
  font-family: "Odibee Sans", sans-serif;
  font-weight: 900;
  font-size: 90px;
  text-align: center;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: -5px;

  text-shadow: 
  0 0 5px #fff,
  0 0 10px #fff,
  0 0 20px #4432e9,
  0 0 40px #4432e9,
  0 0 80px #4432e9,
  0 0 120px #4432e9;

  animation: neon 1.5s ease-in-out infinite alternate, flicker 3s infinite;
}

@keyframes neon{
  from{
    text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #4432e9,
    0 0 40px #4432e9,
    0 0 80px #4432e9;
  }
  to{
    text-shadow:
    0 0 10px #fff,
    0 0 20px #4432e9,
    0 0 40px #4432e9,
    0 0 80px #4432e9,
    0 0 140px #4432e9;
  }
}

@keyframes flicker{
  0%, 18%, 22%, 25%, 53%, 57%, 100%{opacity: 1;}
  20%, 24%, 55%{opacity: 0.4;}
}

.spotify_btn{
  margin-top: 60px;
  padding: 15px 35px;
  background: #4432e9;
  color: white;
  font-size: 50px;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: normal;
  border-radius: 30px;
  transition: 0.3s;
}

.spotify_btn:hover{
  background: #4432e9;
  transform: scale(1.1);
}

#hero{
  height:400px;
  background:url("images/tiempo_parte_1.jpg") center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content:center;
  align-items: center;
  position: relative;
  font-size:30px;
}

.hero_overlay{
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#estrenos{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#estrenos h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.estrenos_container{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.estreno_card{
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  transition: 0.3s;
}

.estreno_card p{
  font-size: 1.5rem;
  line-height: 1.4;
  color: #bbb;
}

.estreno_card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(65, 21, 224, 0.4);
}

.estreno_card img{
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.escuchar_btn{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #4432e9;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 1.8rem;
  transition: 0.3s;
}

.escuchar_btn:hover{
  background: #4432e9;
}

.estreno_card h3{
  color: #d3d1d1;
  margin-bottom: 10px;
  font-size: 1.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(65, 21, 224, 0.8);
}

#galeria h2{
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 3px;
  margin-top: 10px;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

#galeria p{
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.6;
}

.galeria_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 15px;
  margin-top: 40px;
  overflow: visible;
}

.galeria_container img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria_container img:hover{
  transform: scale(1.4);
  z-index: 10;
  position: relative;
  box-shadow: 0 0 30px rgba(65, 21, 224, 0.8);
}

#bio h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-top: 10px;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

#bio p{
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.6;
}

.bio_img{
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 70px;
  border-radius: 10px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 0 30px rgba(65, 21, 224, 0.5);
  transition: 0.3s;
}

.bio_img:hover{
  transform: scale(1.03);
  box-shadow: 
    0 0 10px #4432e9,
    0 0 20px #4432e9,
    0 0 40px #4432e9;
}

#miembros{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#miembros h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.miembros_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.miembro{
  background: linear-gradient(145deg, #111, #1a1a1a);
  color: #ddd;
  border: 1px solid rgba(65, 21, 224, 0.3);
  border-radius: 15px;
  padding: 20px;
  max-width: 260px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(65, 21, 224, 0.4);
  transition: all 0.4s ease;
}

.miembro p{
  font-size: 1.5rem;
  line-height: 1.4;
  color: #bbb;
}

.miembro::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, #4115e0, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.miembro:hover::before{
  opacity: 1;
}

.miembro:hover{
  transform: scale(1.05) rotate(-0.5deg);
  box-shadow: 0 0 40px rgba(65, 21, 224, 0.9);
}

.miembro_img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  filter: grayscale(20%) contrast(110%);
  transition: 0.3s;
}

.miembro:hover .miembro_img{
  filter: grayscale(0%) contrast(120%);
}

.miembro h3{
  color: #d3d1d1;
  margin-bottom: 10px;
  font-size: 1.8rem;
  letter-spacing: 2.5px;
  text-shadow: 0 0 5px rgba(65, 21, 224, 0.8);
}

#discografia{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#discografia h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.discografia_container{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.album{
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  transition: 0.3s;
}

.album p{
  font-size: 1.5rem;
  line-height: 1.4;
  color: #bbb;
}

.album:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(65, 21, 224, 0.4);
}

.album_img{
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.album_btn{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #4432e9;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 1.8rem;
  transition: 0.3s;
}

.album_btn:hover{
  background: #4432e9;
}

.album h3{
  color: #d3d1d1;
  margin-bottom: 10px;
  font-size: 1.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(65, 21, 224, 0.8);
}

#musica{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#musica h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.musica_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.musica_card{
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: 0.3s;
}

.musica_card h3{
  color: #d3d1d1;
  margin-top: 1px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  letter-spacing: 2.5px;
  text-shadow: 0 0 5px rgba(65, 21, 224, 0.8);
}

.musica_card iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.musica_card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(65, 21, 224, 0.4);
}

#multimedia{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#multimedia h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.multim_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.multim_card{
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: 0.3s;
}

.multim_card iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.multim_card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(65, 21, 224, 0.4);
}

#directos{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#directos h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.directos_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.directo_card{
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: 0.3s;
}

.directo_card iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.directo_card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(65, 21, 224, 0.4);
}

#contacto{
  padding: 40px 20px;
  background: radial-gradient(circle at top, #0f0f0f, #000);
  text-align: center;
}

#contacto h2{
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 80px;
  text-shadow: 0 0 10px rgba(65, 21, 224, 0.8);
}

.contacto_form{
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto_form input{
  background: #1a1a1a;
  border: 1px solid rgba(65, 21, 224, 0.4);
  padding: 15px;
  color: #fff;
  font-family: "Odibee Sans", sans-serif;
  font-size: 1.2rem;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.contacto_form textarea{
  background: #1a1a1a;
  border: 1px solid rgba(65, 21, 224, 0.4);
  padding: 15px;
  color: #fff;
  font-family: "Odibee Sans", sans-serif;
  font-size: 1.2rem;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.contacto_form input:focus{
  border-color: #4432e9;
  box-shadow: 
  0 0 10px #4432e9,
  0 0 20px rgba(65, 21, 224, 0.5);
}

.contacto_form textarea:focus{
  border-color: #4432e9;
  box-shadow: 
  0 0 10px #4432e9,
  0 0 20px rgba(65, 21, 224, 0.5);
}

.contacto_form button{
  background: #4432e9;
  color: #fff;
  padding: 15px;
  font-size: 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 2px;
}

.contacto_form button:hover{
  transform: scale(1.05);
  box-shadow: 
  0 0 10px #4432e9,
  0 0 30px #4432e9,
  0 0 60px rgba(65, 21, 224, 0.7);
}

.contacto_mail{
  margin-top: 30px;
  font-size: 1.3rem;
}

.contacto_mail a{
  color: #4432e9;
  text-decoration: none;
}

.contacto_mail a:hover{
  text-shadow: 
  0 0 5px #4432e9
  0 0 15px #4432e9;

}

#contacto p{
  font-size: 1.8rem;
  line-height: 1.4;
  color: #bbb;
}

.panel_admin{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  margin-top:40px;
}

section{
  padding:60px;
  text-align:center;
}

footer{
  background:black;
  padding:20px;
  font-size: 20px;
  letter-spacing:2px;
}

.admin_table{
  width: 90%;
  margin: 30px auto;
  border-collapse: collapse;
  background: #1a1a1a;
  color: white;
  box-shadow: 0 0 20px rgba(65,21,224,0.3);
}

.admin_table th{
  background: #4432e9;
  color: white;
  padding: 15px;
  font-size: 1.3rem;
}

.admin_table td{
  padding: 12px;
  border: 1px solid #333;
  text-align: center;
}

.admin_table tr:nth-child(even){
  background: #151515;
}

.admin_table tr:hover{
  background: #222;
}

.admin_table a{
  color: #fff;
  text-decoration: none;
}

.admin_table a:hover{
  color: #4432e9;
}
