body {
  background-color: #f6f1e7;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
}

#language-switch {
  position: fixed;
  top: 10px;
  right: 10px;
}

#language-switch button {
  background: #d9b6a3;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
  margin-left: 5px;
  cursor: pointer;
}

#room {
  position: relative;
  width: 800px;
  height: 600px;
  margin: 40px auto;
  background: url('assets/room-bg.png') no-repeat center/cover;
}

.clickable {
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.clickable:hover {
  transform: scale(1.05);
}

#window { top: 50px; left: 200px; width: 200px; }
#books { top: 300px; left: 150px; width: 100px; }
#tea { top: 350px; left: 500px; width: 80px; }
#cat { top: 450px; left: 600px; width: 90px; }
#lantern { top: 20px; left: 600px; width: 80px; }

#text-box {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  width: 800px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}