body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: black;
  color: white;
  font-family: "Segoe UI", sans-serif;
}

#menu {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
}

#menu h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: white;
}

#menu button {
  padding: 15px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  background: #444;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

#menu button:hover {
  background: #666;
}

/* Cutscene visuals */
#sceneImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

#fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 1;
  transition: opacity 2s ease-in-out;
  z-index: 5;
}

#narratorText {
  position: absolute;
  bottom: 15%;
  width: 80%;
  left: 10%;
  font-size: 1.6rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 10;
}

.fadeIn {
  opacity: 1 !important;
}

.fadeOut {
  opacity: 0 !important;
}