body {
  font-family: Arial, sans-serif;
  background: url("fondo.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

header {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

h1 {
  font-size: 3em;
  margin: 0;
  color: #FFD700;
  text-shadow: 2px 2px 8px black;
}

section {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparente para legibilidad */

}

video,
audio {
  margin: 20px 0;
  border: 3px solid #FFD700;
  border-radius: 15px;
  box-shadow: 0px 0px 15px #FFD700;
}

/* 🎮 Estilo gaming para los menús desplegables */
.selector {
  background: #111;
  color: #FFD700;
  font-size: 1em;
  padding: 10px 15px;
  border: 2px solid #FFD700;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 0 10px #FFD700, 0 0 20px #ffec8b;
  transition: 0.3s;
}

.selector:hover {
  background: #222;
  box-shadow: 0 0 15px #FFD700, 0 0 25px #ffec8b;
}

footer {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  font-size: 0.9em;
}

/* Botón de volver */
.home-button {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 12px 24px;
  background-color: #e01212;
  /* Rojo intenso */
  color: #ffffff !important;
  /* Siempre blanco */
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(224, 18, 18, 0.4);
}

.home-button:visited {
  color: #ffffff !important;
}

.home-button:hover {
  background-color: #ffffff;
  color: #e01212 !important;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.home-button i {
  margin-right: 8px;
}