@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  font-family: 'Press Start 2P', cursive;
  background: radial-gradient(circle at center, #ffe600, #ff0000 70%);
  color: white;
  text-shadow: 2px 2px 2px black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 1rem;
}

.contenedor {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
  max-width: 700px;
  border: 3px dashed #ffe600;
  font-size: 1rem;
}

h1 {
  font-size: 2rem;
  color: #ffe600;
  margin-bottom: 0.3rem;
}

.botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.botones button {
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  background-color: #ff0000;
  border: 2px solid #ffe600;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.botones button:hover {
  background-color: #ffe600;
  color: #000;
  transform: scale(1.1);
}

#resultado {
  margin-top: 2rem;
}

.resultado {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 1.8;
  font-size: 1rem;
}

.resultado strong {
  color: #d40000;
  font-size: 1.1rem;
}

.resultado .jugador,
.resultado .computadora {
  font-weight: bold;
  color: #0044cc;
}

.resultado .ganador {
  font-weight: bold;
  color: green;
}

.resultado .perdedor {
  font-weight: bold;
  color: red;
}

.resultado .empate {
  font-weight: bold;
  color: orange;
}

/* Estilos responsivos */
@media (max-width: 600px) {
  .contenedor {
    padding: 1rem;
  }

  h1 {
    font-size: 1.3rem;
  }

  .botones button {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }

  .resultado {
    font-size: 0.9rem;
  }
.emoji {
  font-size: 2rem;
  vertical-align: middle;
  display: inline-block;
  margin: 0 0.2rem;
}

}
video {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.video iframe {
  max-width: 100%;
  border: 4px solid #ffe600;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
.video {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

}
