/* FGM hero — full-bleed, sem scroll. O fundo escuro é a moldura da janela;
   o "papel" da composição (claro) é desenhado pelo próprio canvas. */
:root { --win: #FBFAF7; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--win);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

#hero {
  position: fixed;
  inset: 0;
  display: block;
}

#stage {
  display: block;
  width: 100%;
  height: 100%;
  /* o canvas trata do letterbox internamente; touch não faz scroll nem zoom */
  touch-action: none;
}

/* ecrã de carregamento — minimal, na cor do papel */
#loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #FBFAF7;
  transition: opacity .5s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
#bar {
  position: relative;
  width: 36%;
  max-width: 420px;
  height: 1px;
  background: rgba(26, 26, 26, .16);
  overflow: hidden;
}
#bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #1A1A1A;
  transition: width .18s linear;
}
#pct {
  font: 500 12px/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: .22em;
  color: #1A1A1A;
}
