.st {
  --st-bar: 15rem;
  --st-inset: 1rem;
  --st-fg: var(--text);
  --st-tile: color-mix(in oklab, var(--text) 7%, var(--bg));
  --st-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: var(--st-bar) 1fr;
  gap: var(--st-inset);
  padding: var(--st-inset);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  background: var(--bg);
}

.st__bar {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 0;
  outline: 2px solid var(--st-fg);
  outline-offset: -2px;
  background: var(--st-tile);
  font-family: var(--st-mono);
  color: var(--st-fg);
}

.st__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-block-end: 2px solid var(--st-fg);
}

.st__home {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1;
}

.st__home:hover {
  color: var(--st-fg);
}

.st__title {
  margin: 0;
  font-size: 1rem;
}

.st__prompt {
  margin: 0;
  padding: 0.7rem 0.9rem 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--st-fg) 65%, var(--st-tile));
}

.st__list {
  margin: 0;
  padding: 0 0.55rem 0.55rem;
  overflow-y: auto;
  list-style: none;
}

.st__choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0 0 0.35rem;
  padding: 0.4rem;
  border: 0;
  background: color-mix(in oklab, var(--st-fg) 6%, var(--st-tile));
  color: var(--st-fg);
  font: inherit;
  text-align: start;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.st__choice:hover,
.st__choice:focus-visible {
  background: color-mix(in oklab, var(--st-fg) 13%, var(--st-tile));
}

.st__choice[aria-pressed="true"] {
  background: var(--st-fg);
  color: var(--st-tile);
}

.st__choice[aria-pressed="true"] .st__thumb {
  background: color-mix(in oklab, var(--st-tile) 22%, transparent);
}

.st__choice:focus-visible,
.st__chip:focus-visible,
.st__guest:focus-visible {
  outline: 2px solid var(--st-fg);
  outline-offset: 2px;
}

.st__thumb {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  background: color-mix(in oklab, var(--st-fg) 8%, var(--st-tile));
}

.st__choice-name {
  min-width: 0;
  font-size: 0.82rem;
}

.st__bar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-block-start: 2px solid var(--st-fg);
}

.st__count {
  margin: 0;
  font-size: 0.7rem;
  color: color-mix(in oklab, var(--st-fg) 65%, var(--st-tile));
}

.st__chip {
  margin: 0;
  padding: 0.45rem 0.8rem;
  border: 0;
  background: color-mix(in oklab, var(--st-fg) 10%, var(--st-tile));
  color: var(--st-fg);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.st__chip:hover:not(:disabled),
.st__chip:focus-visible:not(:disabled) {
  background: var(--st-fg);
  color: var(--st-tile);
}

.st__chip:disabled {
  opacity: 0.4;
  cursor: default;
}

.st__stage {
  position: relative;
  min-width: 0;
}

.st__room {
  position: absolute;
  inset: 0;
  overflow: hidden;
  outline: 2px solid var(--st-fg);
  outline-offset: -2px;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 108%,
      color-mix(in oklab, var(--st-fg) 12%, var(--bg)),
      transparent 70%
    ),
    color-mix(in oklab, var(--st-fg) 4%, var(--bg));
}

.st__floor {
  position: absolute;
  inset: auto 0 0 0;
  height: 16%;
  border-block-start: 2px solid color-mix(in oklab, var(--st-fg) 22%, transparent);
  background: color-mix(in oklab, var(--st-fg) 7%, var(--bg));
}

.st__empty {
  position: absolute;
  inset-inline: 0;
  top: 46%;
  margin: 0;
  font-family: var(--st-mono);
  font-size: 0.8rem;
  text-align: center;
  color: color-mix(in oklab, var(--st-fg) 45%, var(--bg));
  transition: opacity 200ms ease;
}

.st.is-busy .st__empty {
  opacity: 0;
}

.st__laps {
  position: absolute;
  inset: 0;
}

.st__guest {
  position: absolute;
  left: var(--st-x, 50%);
  bottom: var(--st-y, 0%);
  z-index: var(--st-z, 1);
  height: var(--st-h, 40%);
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  translate: -50% 12%;
  opacity: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  transition: translate 460ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 260ms ease;
}

.st__guest.is-in {
  translate: -50% 0;
  opacity: 1;
}

.st__guest video {
  display: block;
  height: 100%;
  width: auto;
  filter: drop-shadow(0 12px 18px rgb(23 23 26 / 0.28));
}

.st__live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.st__credits {
  position: absolute;
  inset-inline-end: calc(var(--st-inset) + 0.75rem);
  inset-block-end: calc(var(--st-inset) + 0.75rem);
  z-index: 2;
  margin: 0;
  max-width: 14rem;
  font-family: var(--st-mono);
  font-size: 0.65rem;
  line-height: 1.4;
  color: color-mix(in oklab, var(--st-fg) 45%, var(--bg));
  text-align: end;
  pointer-events: none;
}

.st__credits a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  pointer-events: auto;
}

.st__credits a:hover {
  color: var(--st-fg);
}

html:has(body.is-sit),
body.is-sit {
  margin: 0;
  height: 100%;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
}

body.is-sit .st-shell {
  position: relative;
  height: 100%;
  min-height: 100svh;
  min-height: 100dvh;
}

@media (width < 48em) {
  .st {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .st__bar {
    grid-row: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr auto;
  }

  .st__brand {
    border-block-end: 0;
    border-inline-end: 2px solid var(--st-fg);
  }

  .st__prompt {
    display: none;
  }

  .st__list {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding: 0.5rem;
    border-block-start: 2px solid var(--st-fg);
  }

  .st__choice {
    flex-direction: column;
    gap: 0.3rem;
    width: auto;
    margin: 0;
  }

  .st__bar-foot {
    border-block-start: 0;
  }

  .st__credits {
    inset-inline-end: 0.75rem;
    inset-block-end: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .st__guest {
    transition: none;
  }
}
