.totem-kiosk-close {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 2147483600;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(26, 38, 37, 0.08);
  color: #5c6e70;
  font: 20px/1 Inter, Montserrat, system-ui, sans-serif;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.totem-kiosk-close:active {
  background: rgba(26, 38, 37, 0.16);
}

.totem-kiosk-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  text-align: center;
  font-family: Inter, Montserrat, system-ui, sans-serif;
}

.totem-kiosk-overlay.is-open {
  display: flex;
}

.totem-kiosk-hold {
  flex-direction: column;
  background: rgba(10, 68, 68, 0.92);
}

.totem-kiosk-hold__count {
  color: #ffffff;
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.totem-kiosk-hold p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.4;
}

.totem-kiosk-closed {
  z-index: 2147483800;
  flex-direction: column;
  gap: 14px;
  background: #0a0f0f;
}

.totem-kiosk-closed h2 {
  margin: 0;
  color: #6e8078;
  font-size: 15px;
  font-weight: 700;
}

.totem-kiosk-reopen {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #8fb0ae;
  font: 700 12.5px/1.2 Inter, Montserrat, system-ui, sans-serif;
  cursor: pointer;
}

.totem-kiosk-idle {
  background: rgba(26, 38, 37, 0.72);
}

.totem-kiosk-idle__box {
  width: min(100%, 340px);
  padding: 26px;
  border-radius: 16px;
  background: #ffffff;
}

.totem-kiosk-idle__count {
  color: #5e6b26;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.totem-kiosk-idle h2 {
  margin: 12px 0 6px;
  color: #17282c;
  font-size: 19px;
}

.totem-kiosk-idle p {
  margin: 0;
  color: #5c6e70;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .totem-kiosk-overlay,
  .totem-kiosk-close {
    transition: none !important;
  }
}