/* General page styling */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
}

h1 {
  margin-bottom: 15px;
}

/* Game container */
#game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Canvas */
canvas {
  background: black;
  border: 2px solid #333;
}

/* Controls - D-Pad style */
#controls {
  display: grid;
  grid-template-columns: 60px 60px 60px;
  grid-template-rows: 60px 60px;
  gap: 5px;
  justify-content: center;
  margin-top: 10px;
}

#controls button {
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #888;
  background: #eee;
  transition: background 0.2s;
}

#controls button:hover {
  background: #ddd;
}

/* Score and options */
#score {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

#options {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

#options button {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  background: #2196f3;
  color: white;
  border: none;
  transition: background 0.2s;
}

#options button:hover {
  background: #0b7dda;
}
  