body {
  margin: 0;
  overflow: hidden;
  background: #111;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 100px; /* Reserve space for toy selector */
  width: 100%;
}

#toy-selector-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0 10px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.5);
  z-index: 100;
}

#toy-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 4px;
}

#toy-selector img {
  width: 48px;
  height: 48px;
  cursor: pointer;
  image-rendering: pixelated;
  background-color: #ffe;
  border: 3px solid #ccc;
  border-radius: 6px;
  box-shadow: 2px 2px 0 #888;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#toy-selector img:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 3px 3px 0 #444;
}

#toy-selector img.active {
  border-color: #ff5ebf;
  box-shadow: 0 0 0 2px white, 3px 3px 0 #444;
}

#toybox-title {
  width: 240px;
  height: auto;
  image-rendering: pixelated;
  margin-top: 2px;
}