/* Cyber Pulse — game.css */
.ge-game[data-game="cyber-pulse"] {
  background: #000;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Гарантируем, что канвас игры не вылазит за пределы */
canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.1);
}
