.player {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #000;
  overflow: hidden;
}

.player__stage,
.player__twitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player__twitch iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 2.4s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
}

.slide-signoff,
.slide-offair {
  display: block;
  background: #000;
}

.slide-signoff.active,
.slide-offair.active {
  opacity: 1;
}

.signoff {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.signoff img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offair {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.offair img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offair__brand {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: max-content;
  max-width: 92%;
  text-align: center;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #102040;
  background: transparent;
  padding: 0;
  pointer-events: none;
}

html.live-page,
body.live-page {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

body.live-page #live-mount {
  width: 100vw;
  height: 100vh;
}
