body {
  margin: 0;
  background: #d0f0ff;
  font-family: Comic Sans MS, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contenedor {
  border: 5px solid #0077cc;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
}

h1 {
  margin-top: 0;
  font-size: 32px;
  color: #0077cc;
}

.juego {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px;
}

.personaje {
  width: 80px;
  height: auto;
}

#gameArea {
  flex-grow: 1;
  text-align: center;
  padding: 10px;
}

.secuencia {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.secuencia div {
  width: 60px;
  height: 60px;
  border: 2px dashed #555;
  background: #fff;
  font-size: 28px;
  line-height: 60px;
  font-weight: bold;
  color: #000;
}

#reiniciar {
  padding: 10px 20px;
  font-size: 18px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
