/* styles.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('fondo.jpg'); /* reemplazá con el nombre exacto de tu imagen */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contenido {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.frase {
  font-size: 20px;
  margin-bottom: 5px;
}

.subfrase {
  font-size: 18px;
  margin-bottom: 20px;
}

.reproductor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.play-btn {
  font-size: 24px;
  padding: 10px 20px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: black;
  cursor: pointer;
  margin-right: 10px;
}

.onda-sonora span {
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: white;
  margin: 0 2px;
  animation: wave 1s infinite ease-in-out;
}

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(2); }
}

.me-gusta {
  margin-top: 20px;
}

#likeButton {
  background-color: white;
  color: black;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#likeCount {
  margin-left: 10px;
  font-size: 16px;
}

.redes a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.url {
  margin-top: 20px;
  font-size: 16px;
}

.reproductor-externo {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}