html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.kiosk-root {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.kiosk-screen {
  position: relative;
  aspect-ratio: 1080 / 1920;
  width: 100vw;
  height: 100vh;
  max-width: 1080px;
  max-height: 1920px;
  margin: 0 auto;
  background-color: #000;
  overflow: hidden;
}

.kiosk-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.kiosk-image-overlay {
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.kiosk-image-overlay.visible {
  opacity: 1;
}

.hotspot {
  position: absolute;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.hotspot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.hotspot-beer-1 {
  top: 17%;
  left: 15%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-2 {
  top: 17%;
  left: 41%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-3 {
  top: 17%;
  left: 68%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-4 {
  top: 37%;
  left: 15%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-5 {
  top: 37%;
  left: 41%;
  width: 18%;
  height: 19%
}

.hotspot-beer-6 {
  top: 37%;
  left: 68%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-7 {
  top: 57%;
  left: 15%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-8 {
  top: 57%;
  left: 41%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-9 {
  top: 57%;
  left: 68%;
  width: 18%;
  height: 19%;
}

.hotspot-beer-10 {
  top: 80%;
  left: 47%;
  width: 16%;
  height: 19%;
}

.hotspot-beer-11 {
  top: 80%;
  left: 63%;
  width: 18%;
  height: 19%;
}

.hotspot-back {
  bottom: 4%;
  left: 5%;
  width: 20%;
  height: 8%;
}

.hotspot-lang {
  top: 3%;
  width: 4%;
  height: 3%;
}

.hotspot-lang-en {
  right: 1%;
  left: auto;
}

.hotspot-lang-pt {
  right: 7%;
  left: auto;
}

