/* Estilos generales del cuerpo */
body {
  background-color: #000;
  font-family: 'Arial', sans-serif;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin: 0;
}

/* Contenedor de la ruleta */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Título del juego */
h1 {
  font-size: 2rem;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
}

/* Estilo del botón */
button {
  background-color: #00ff99;
  color: #000;
  font-size: 1.2rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 0 15px #00ff99;
  transition: background-color 0.3s ease;
}

/* Efecto hover en el botón */
button:hover {
  background-color: #00cc7a;
}

/* Estilo de la ruleta */
.roulette-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.roulette {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Flecha que señala el resultado de la ruleta */
.pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 40px solid #00ff99;
  transform: translate(-50%, -100%);
  z-index: 2;
}

/* Estilo para el resultado */
#result {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #ff0066;
  text-shadow: 0 0 10px #ff0066;
}
