* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
  font-family: system-ui, sans-serif;
  gap: 16px;
  padding: 16px;
}

#stage {
  position: relative;
  width: min(90vw, 420px);
  aspect-ratio: 1170 / 1751;
  background: #000;
}

.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* adjustments bc idk why its offset weirdly */
#character {
  transform: translateY(4%);
}

.clone-lizard {
  position: absolute;
  inset: 0;
  filter: grayscale(100%);
}
.face {
  transform: translate(-1.5%, -2%);
}

.hidden {
  display: none;
}

#buttons {
  display: flex;
  gap: 12px;
}

#talk,
#ask,
#food,
#coalition {
  font-size: 18px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #c0392b;
  color: #fff;
  cursor: pointer;
  touch-action: none;
}

#ask {
  background: #2980b9;
}

#food,
#coalition {
  background: #27ae60;
}

#talk.recording,
#ask.recording {
  background: #27ae60;
}

#food-count {
  font-size: 13px;
  color: #555;
}

#version {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

