/* #1370: com o mapa aberto, a HUD 16:9 sai da frente e o ✕ do jogo aparece. */
html[data-mapa-aberto] .hud16,
html[data-mapa-aberto] .btf,
html[data-mapa-aberto] .btl,
html[data-mapa-aberto] .bt-campo,
html[data-mapa-aberto] .bt-rodape,
html[data-mapa-aberto] .mis,
html[data-mapa-aberto] .hud16__fase,
html[data-mapa-aberto] .rkb,
html[data-mapa-aberto] #ranking-barra,
html[data-mapa-aberto] #vortex-hud-pill {
  visibility: hidden !important;
  pointer-events: none !important;
}
/* O ✕ do jogo, maior e no canto — é o único botão de sair, tem de ser óbvio. */
html[data-mapa-aberto] .mapa__fechar {
  width: 46px;
  height: 46px;
  font-size: 22px;
  top: 14px;
  right: 14px;
  z-index: 5;
  box-shadow: 0 0 0 3px #0008, 0 4px 14px #000a;
}
html[data-mapa-aberto] .mapa__fechar::after {
  content: 'Fechar';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #ffe3a3;
  text-shadow: 0 1px 2px #000;
  white-space: nowrap;
}
/* Fora da tela do mapa o cursor avisa que o clique fecha. */
html[data-mapa-aberto] .mapa { cursor: pointer; }
html[data-mapa-aberto] .mapa__tela { cursor: default; }
