/* Pong game module. */

.pong {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.pong-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.pong .screen-info {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  color: white;
  letter-spacing: 0.2em;
  z-index: 2;
  pointer-events: none;
}

.pong-controls {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.pong-btn-new {
  background: white;
  color: black;
  border: 1px solid black;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 4px;
}
.pong-btn-new:hover { background: black; color: white; border-color: white; }
