/* garden.css */
body {
  font-family: 'Press Start 2P', monospace;
  background: linear-gradient(to bottom, #f7e4e8, #c1e1c1);
  color: #333;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

.garden-game {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
  position: relative;
}

#gameCanvas {
  width: 400px;
  height: 300px;
  border: 2px solid #e94560;
  image-rendering: pixelated;
}

.game-ui {
  margin-top: 10px;
}

#status, #flowerCount, #waterCount, #score, #level {
  margin: 5px 0;
  font-size: 12px;
  color: #e94560;
}

.health-bar {
  width: 200px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 10px;
  margin: 10px auto;
  background: #fff;
}

#healthFill {
  height: 100%;
  background: #c1e1c1;
  border-radius: 8px;
  width: 100%;
  transition: width 0.3s;
}

.btn {
  background: #e94560;
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
  margin: 5px;
}

.btn:hover {
  background: #ff69b4;
}

.back-btn {
  display: block;
  margin: 20px auto;
}

.instructions {
  font-size: 10px;
  color: #666;
  max-width: 400px;
  margin: 10px auto;
}