* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow: hidden;
  background: #1a0e05;
  font-family: 'Fredoka', sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

#canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

#ui-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}

#ui-overlay > * {
  pointer-events: auto;
}

#game-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 4px 12px;
  background: rgba(20, 10, 2, 0.85);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  color: #a08060;
  border-top: 1px solid rgba(160, 120, 60, 0.3);
}

#game-footer a {
  color: #d4a04a;
  text-decoration: none;
  font-weight: 500;
}

#game-footer a:hover {
  text-decoration: underline;
}