/* Truth Catcher: a fixed-aspect box for the Phaser canvas. rootClass: "tc-root". */

.game-app .tc-root {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 900 / 620;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0e1526;
}
.game-app .tc-root canvas { display: block; width: 100%; height: 100%; }
