html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #12081a;
}

.zombie-survival-wrap {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

.zombie-survival-wrap--fullscreen .zombie-survival-wrap__header {
  display: none;
}

.zombie-survival-wrap #zombie-game,
.arcade-play__frame--zombie #zombie-game {
  flex: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  outline: none;
}

.zombie-survival-wrap #zombie-game canvas,
.arcade-play__frame--zombie #zombie-game canvas {
  width: 100% !important;
  height: 100% !important;
}

.zombie-survival-meta {
  font-size: 0.85rem;
  color: var(--text-muted, #9aa89a);
  text-align: center;
  max-width: 52rem;
  line-height: 1.45;
  padding: 0.5rem 1rem;
}

/* Arcade embed mantém moldura */
.arcade-play__frame--zombie {
  --game-w: 960;
  --game-h: 640;
}

.arcade-play__frame--zombie #zombie-game {
  aspect-ratio: 960 / 640;
  max-height: min(70vh, 640px);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
