main#app {
  position: relative;
  width: 100%;
}

.scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--color-bg-cinematic-black);
  content-visibility: auto;
  contain-intrinsic-size: auto 100dvh;
}

.scene-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: inherit;
}

.scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scene-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.scene-content {
  position: relative;
  z-index: 2;
}
