/* App wrapper */
#app {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  width: 100vw;
}

/* Arena (interactive squares) */
#arena {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: #121212; /* or whatever fits your theme */
}


