body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.game-container {
  max-width: 600px;
  padding: 20px;
  background-color: #222;
  border-radius: 8px;
  text-align: center;
}

#chapter-image {
  width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 4px;
}

button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #666;
}


#inventory-panel {
  background: #222;
  padding: 0.5em;
  border: 1px solid #444;
  margin-top: 1em;
  color: #fff;
}

#inventory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#inventory-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5em 0;
}

#inventory-list .item-name {
  flex: 1;
  text-align: left;
  padding-right: 1em;
}

#inventory-list .item-actions {
  display: flex;
  gap: 0.5em;
}

#inventory-list button {
  max-width: 150px;
  padding: 0.3em 0.6em;
  background: #444;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9em;
  flex-shrink: 0;
}

#inventory-list button:hover {
  background: #666;
}

#note { color: #999; font-size:80% }
#note a, #note a:hover, #note a:visited { color: #aaa }