body {
  margin: 0;
  background: linear-gradient(180deg, #fceeff, #e5f6ff);
  font-family: "Comic Sans MS", "Poppins", cursive;
  overflow: hidden;
}

#game-container {
  position: relative;
  width: 1280px;
  height: 720px;
  margin: 0 auto;
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 192, 203, 0.6);
  overflow: hidden;
}

#background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.8s ease;
}

#sprite-robin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps proportions */
  z-index: 2;
  transition: opacity 0.6s ease;
}

#scene-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}

#dialogue-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-top: 4px solid #ffb6c1;
  padding: 25px;
  box-sizing: border-box;
  z-index: 4;
}

#dialogue-text {
  font-size: 20px;
  color: #333;
  text-shadow: 1px 1px #fff;
}

#play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ffb6c1, #add8e6);
  color: white;
  font-size: 26px;
  font-weight: bold;
  border: none;
  border-radius: 15px;
  padding: 15px 60px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 0 15px rgba(255, 182, 193, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 192, 203, 0.8);
}

#choices {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choice-btn {
  background: linear-gradient(90deg, #ffc1cc, #b2e2f2);
  color: #333;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
}

.choice-btn:hover {
  background: linear-gradient(90deg, #ffb6c1, #add8e6);
  transform: scale(1.03);
}
