@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Press Start 2P', monospace;
}

.container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.bg {
  width: 100%;
  display: block;
}

.jp-text {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 20px;
  color: white;
  text-shadow: 2px 2px 4px #000;
}

.caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  text-shadow: 1px 1px 2px #000;
}

/* Clickable items (hotspot buttons) */
.item {
  position: absolute;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.item:hover {
  transform: scale(1.05);
  outline: 2px dashed rgba(255, 255, 255, 0.4);
}

/* Adjust these based on image layout */
#notebooks {
  top: 120px;
  left: 160px;
  width: 100px;
  height: 120px;
}

#phone {
  top: 370px;
  left: 60px;
  width: 60px;
  height: 100px;
}

#books {
  top: 270px;
  right: 20px;
  width: 130px;
  height: 120px;
}

#pencilcase {
  top: 100px;
  right: 170px;
  width: 70px;
  height: 100px;
}

#plushie {
  top: 320px;
  left: 250px;
  width: 100px;
  height: 120px;
}

#bag {
  top: 200px;
  left: 150px;
  width: 300px;
  height: 200px;
}