body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #05060a;
  color: #e6f0ff;
  text-align: center;
}

#game {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#scene {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #000;
}

#background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#characters img {
  position: absolute;
  bottom: 5%;
  transition: all 0.6s ease;
  will-change: transform;
}

#question {
  background: linear-gradient(90deg, rgba(2,6,23,0.8), rgba(8,12,40,0.6));
  padding: 14px;
  font-size: 1.15em;
}

#options {
  background: rgba(0, 0, 0, 0.85);
  padding: 12px;
}

button {
  margin: 6px;
  padding: 10px 18px;
  background-color: #8be9fd;
  border: none;
  border-radius: 10px;
  color: #001219;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(139,233,253,0.15);
}

button:hover {
  transform: translateY(-3px);
}
