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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a18cd1 100%);
  font-family: "Comic Sans MS", "Chalkboard SE", cursive, sans-serif;
}

.game-container {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

h1 {
  color: #e91e63;
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.instructions {
  color: #666;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.score-board {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

#gameCanvas {
  display: block;
  margin: 0 auto;
  background: linear-gradient(to bottom, #87ceeb 0%, #e0f6ff 100%);
  border-radius: 12px;
  border: 3px solid #ffb6c1;
  cursor: none;
}

.controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

button {
  padding: 10px 24px;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
}

#startBtn {
  background: #4caf50;
  color: white;
}

#startBtn:hover:not(:disabled) {
  background: #43a047;
}

#pauseBtn {
  background: #ff9800;
  color: white;
}

#pauseBtn:hover:not(:disabled) {
  background: #f57c00;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
