body {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  flex-direction: column;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  touch-action: none; /* Disables browser-level zoom/scroll while playing */
}

canvas {
  border: 4px solid #fff;
  background-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  image-rendering: pixelated;

  /* Responsive Scaling */
  max-width: 95vw;
  max-height: 70vh;
  width: auto;
  height: auto;
}

h1 {
  font-size: clamp(1rem, 4vw, 1.5rem); /* Responsive text size */
  margin: 10px;
  text-align: center;
}

#visitorCount {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
