* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(121, 255, 0, 0.14), transparent 34%),
    linear-gradient(135deg, #160051 0%, #07164f 50%, #05091f 100%);
}

.map-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.map-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.map {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

.map-hotspot {
  position: absolute;
  cursor: pointer;
  background: transparent;
}
