:root {
  color-scheme: dark;
  background: #02050b;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #02050b;
}

.entrance-screen {
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
}

.entrance-poster {
  position: relative;
  width: min(100vw, 66.6667vh);
  width: min(100vw, 66.6667dvh);
  aspect-ratio: 2 / 3;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

.entrance-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transform: none;
}

.entrance-hotspot {
  position: absolute;
  top: 66.2%;
  left: 33%;
  width: 34%;
  height: 14.2%;
  border-radius: 0.8rem;
}

.entrance-hotspot:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: -7px;
  background: rgba(255, 255, 255, 0.08);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
