/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(to bottom, #87cefa, #4682b4);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Fullscreen canvas for the game */
#gameCanvas {
  display: block;
  background: #1e90ff;
}

/* Cast button styling */
#castButton {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  background: #f4a460;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Score board styling */
#scoreBoard {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
