body { 
  background-color: #111; 
  color: #fff; 
  font-family: sans-serif; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
  margin: 0; 
}

#game { 
  width: 600px; 
  text-align: center; 
}

#camera-view { 
  width: 100%; 
  height: 400px; 
  border: 2px solid #fff; 
  position: relative; 
  overflow: hidden; 
}

#monster { 
  position: absolute; 
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  max-height: 100%; 
  transition: left 0.5s; 
}

#controls { 
  margin-top: 10px; 
}

button { 
  padding: 10px 20px; 
  margin: 5px; 
  cursor: pointer; 
}

#status { 
  margin-top: 10px; 
}