/* Scoped to game embed - does not affect page */
.game-wrapper .dog-runner-shell {
  position: relative;
  width: 600px;
  max-width: 100%;
  height: 200px;
  flex-shrink: 0;
}

.game-wrapper .dog-runner-shell canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  touch-action: manipulation;
}

.game-wrapper .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #535353;
  font-size: 14px;
  pointer-events: none;
}

.game-wrapper .overlay .restart-hint {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.8;
}

.game-wrapper .overlay.hidden {
  display: none !important;
}
