body {
  margin: 0;
  font-family: 'Spiced Rum Supernova', sans-serif;
  background: url('assets/fondo.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
}

.container {
  padding: 40px;
}

.logo {
  width: 300px;
  max-width: 80%;
  margin-bottom: 30px;
}

h1, h2 {
  margin: 10px 0;
  font-size: 1.8rem;
}

.player {
  margin: 30px auto;
  width: 100%;
}

.video iframe {
  width: 90%;
  height: 50vw;
  max-height: 480px;
  border-radius: 10px;
}

.audio-custom {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
}

.audio-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-wrap: wrap;
}

.audio-header .icon {
  font-size: 1.5rem;
  margin-right: 8px;
}

.play-button {
  background-color: #1db954;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.play-button:hover {
  background-color: #17a84b;
}

canvas#waveform {
  width: 100%;
  height: 80px;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
  .logo {
    width: 200px;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  .video iframe {
    height: 55vw;
  }

  canvas#waveform {
    height: 70px;
  }
}

/* Responsive para celulares */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  .logo {
    width: 150px;
    margin-bottom: 20px;
  }

  h1, h2 {
    font-size: 1.2rem;
  }

  .video iframe {
    width: 95%;
    height: 60vw;
  }

  .play-button {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  canvas#waveform {
    height: 60px;
  }
}
