
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #87CEEB, #98FB98);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #2E8B57;
  margin-bottom: 15px;
}

.game-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #2E8B57;
}

#gameCanvas {
  border: 2px solid #2E8B57;
  border-radius: 10px;
  cursor: crosshair;
  background: linear-gradient(to bottom, #87CEEB, #98FB98);
}

.controls {
  margin-top: 15px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background: #2E8B57;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #3CB371;
}

p {
  margin-top: 10px;
  color: #2E8B57;
}
