@import url("https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,400;0,500;0,600;0,800;1,400&family=Inter:wght@500;600&display=swap");

:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: #000;
  font-family: "Geist", Arial, sans-serif;
  min-height: 100svh;
  overscroll-behavior-y: none;
}

.scene-shell {
  isolation: isolate;
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: #000;
}

#startio-scene {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  background: #000;
  outline: none;
  touch-action: pan-y;
}

.app-hotspot,
.footer-social-hotspot {
  position: absolute;
  z-index: 10;
  display: block;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.app-hotspot {
  border-radius: 999px;
}

.footer-social-hotspot {
  border-radius: 10px;
}

.app-hotspot:focus-visible,
.footer-social-hotspot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
