body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 20px;
}

h1, p {
  text-align: center;
}

#game-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

#game-area {
  position: relative;
  width: 300px;
  height: 300px;
  background: #e0e0e0;
  border: 2px solid #888;
  border-radius: 10px;
}

#target {
  position: absolute;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
}

#info-panel {
  max-width: 200px;
  text-align: left;
}

#start-btn {
  padding: 8px 16px;
  margin-top: 15px;
  cursor: pointer;
  background-color: #4F8A8B;
  color: white;
  border: none;
  border-radius: 5px;
}

#start-btn:hover {
  background-color: #3c6e6f;
}

ol {
  padding-left: 20px;
}
