:root {
  background: #020914;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #020914;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
}

.poster-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #020914;
}

.poster-backdrop {
  position: fixed;
  z-index: -2;
  inset: -4vmax;
  background:
    linear-gradient(rgba(2, 9, 20, .38), rgba(2, 9, 20, .58)),
    url('../img/next-em-breve.png') center / cover no-repeat;
  filter: blur(26px) saturate(1.08) brightness(.66);
  transform: scale(1.08);
}

.poster-stage::after {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(0, 168, 255, .08), rgba(0, 0, 0, .28) 72%);
}

.poster {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100svh;
  object-fit: contain;
  filter: drop-shadow(0 18px 54px rgba(0, 0, 0, .52));
  animation: reveal .75s ease-out both;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(.992);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-aspect-ratio: 5 / 6) {
  .poster {
    width: 100vw;
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster {
    animation: none;
  }
}
