/* Reset y base */
html, body {
  margin: 0;
  padding: 0;
}

/* Altura completa para que el centrado flex funcione en body-mc */
html,
body.body-mc {
  height: 100%;
}

/* Páginas estilo Minecraft: fondo y centrado */
body.body-mc {
  overflow: hidden;
  background: url('../img/bg1.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hunger bar (index) */
.hunger-bar {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 2px;
  z-index: 1000;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.hunger-bar img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
}

/* Privacy banner */
.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  z-index: 1000;
}

.privacy-banner__accept {
  margin-left: 10px;
  padding: 5px 10px;
  cursor: pointer;
}
