body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: white;
  text-align: center;
}

.scene {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.character {
  position: absolute;
  bottom: 0;
  left: 60%;
  width: 250px;
  z-index: 1;
}

.dialogue {
  position: absolute;
  bottom: 100px;
  left: 10%;
  right: 10%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
}

.dialogue button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  background-color: #ffb6c1;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.reply {
  margin-top: 20px;
  font-style: italic;
  color: #ffebf0;
}
