* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

#app,
.stage {
  width: 100%;
  height: 100%;
}

.stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(30, 30, 30, 0.75), rgba(0, 0, 0, 1)),
    #000;
}

.media {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center center;
  background: #000;
}

.media-fit-contain {
  object-fit: contain;
}

.media-fit-cover {
  object-fit: cover;
}

.hidden {
  display: none !important;
}

.overlay {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  pointer-events: none;
}

.overlay.top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
}

.overlay.bottom {
  bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,0));
}

.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
}

.screen-label {
  font-size: 14px;
  opacity: .85;
}

.item-title {
  font-size: 22px;
  font-weight: 700;
}

.item-meta {
  font-size: 14px;
  opacity: .8;
}

.message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 24px;
  padding: 24px;
  color: rgba(255,255,255,.9);
}

.badge {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 30;
  background: rgba(255, 183, 0, 0.92);
  color: #111;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 13px;
}
