/* =============================================
   _BASE.CSS – Base compartilhada dos jogos
   Carregado entre global.css e o CSS especifico de cada jogo.
   Cada jogo define --game-bg com seu gradiente de fundo e, quando
   necessario, sobrescreve touch-action / display / .bottom-bar.
   ============================================= */

html, body {
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--game-bg);
  background-attachment: fixed;
  overflow: hidden;
  touch-action: none;
  user-select: none; -webkit-user-select: none;
}

/* BARRA INFERIOR */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  text-align: center;
  z-index: 50;
}
.bottom-bar p { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0; }
.bottom-bar small { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 600; }
