:root { color-scheme: dark; }
* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; }
body { background: #000; color: #fff; font-family: system-ui, sans-serif; }
.stage { position: relative; width: 100%; min-height: 100svh; overflow: hidden; }
.photo {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: contain;
  object-position: center;
  clip-path: inset(0 0 100% 0);
}
.status {
  position: absolute;
  inset: auto 1rem 1rem;
  max-width: 34rem;
  margin: auto;
  padding: .8rem 1rem;
  border-radius: .5rem;
  background: #171717;
  text-align: center;
}
