/* MH Windows 95 Pong (Clean) – CSS with touch */
.mh-w95-pong-clean {
  width: 100%;
  max-width: 100%;
  display: block;
}
.mh-w95-pong-clean .mh-w95-canvas {
  display: block;
  width: 100%;   /* Responsive Breite */
  height: auto;  /* Höhe aus Aspect-Ratio via JS */
  outline: none;
  touch-action: none; /* verhindert Scrollen während Steuerung */
  -webkit-tap-highlight-color: transparent;
  cursor: none;
}
