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

body {
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background-color: #111;
}

.hero {
  background: url('concert-background.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
    width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 30px;
}

h1 {
  font-size: 5rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1.5rem;
  margin: 10px 0;
}

hr {
  border: none;
  border-top: 2px solid white;
  width: 60%;
  margin: 20px auto;
}

.description {
  font-size: 1rem;
  margin-bottom: 40px;
}

.concert-banner {
    background-color: rgba(0, 0, 0, 0.65); /* Oscuro translúcido */
  backdrop-filter: blur(6px); /* desenfoque suave */
  border-radius: 10px;
    padding: 10px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.concert-banner p {
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.button {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.button:hover {
  background: white;
  color: #e50914;
}

.video-background {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}



body {
  background-color: #0000FF; /* fondo azul */
  color: white; /* texto blanco para contraste */
}


.logo-animado {
    width: 300px; /* Puedes ajustar este valor */
    animation: parpadeo 2.5s infinite ease-in-out;
  }

  @keyframes parpadeo {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
  }
