/* A hidden command's view -- reuses the same glass-panel treatment as
   #terminal/#gui/#player rather than inventing a new look, so it still
   feels like part of the site instead of a bolted-on demo. */
#pong {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 700px;
  margin: 1.5rem auto;
  padding: 1.5rem 1.75rem;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  backdrop-filter: blur(3px) saturate(140%);
  -webkit-backdrop-filter: blur(3px) saturate(140%);
  box-shadow: 0 0 70px rgba(168, 85, 247, 0.08), 0 20px 50px rgba(0, 0, 0, 0.45);
}

#pong-score {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

#pong-canvas {
  display: block;
  max-width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--panel-border);
  border-radius: 6px;
}

#pong-hint {
  font-size: 0.78rem;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  #pong {
    margin: 3.5rem 1rem 1.5rem;
    padding: 1rem;
  }
}
