.game-page {
  font-family: sans-serif;
  background: #f4f0e5;
  text-align: center;
}
#game {
  position: relative;
  width: 800px;
  height: 600px;
  margin: 20px auto;
  border: 4px solid #333;
  background-color: #ccc;
  overflow: hidden;
}
#background {
  width: 100%;
  height: 100%;
}
.part {
  position: absolute;
  width: 50px;
  cursor: pointer;
  transition: transform 0.2s;
}
.part:hover {
  transform: scale(1.2);
}
#status {
  margin-top: 20px;
  font-size: 1.2em;
}
#win-message {
  margin-top: 30px;
  font-size: 1.5em;
  color: green;
  font-weight: bold;
}
.hidden {
  display: none;
}
