:root {
  --pixel-master-width: 778px;
  --pixel-master-height: 2021px;
  --page-background: #020b1c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  display: grid;
  place-items: start center;
  overflow-x: hidden;
  background: var(--page-background);
}

.pixel-master-shell {
  position: relative;
  width: min(var(--pixel-master-width), 100vw);
  aspect-ratio: 778 / 2021;
  margin: 0 auto;
  overflow: hidden;
  background: var(--page-background);
}

.pixel-master-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.pixel-master-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.pixel-hotspot {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--width);
  height: var(--height);
  display: block;
  opacity: 0;
  color: transparent;
  background: transparent;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
}

.pixel-hotspot:focus-visible {
  opacity: .18;
  outline: 3px solid #25d8ff;
  outline-offset: -3px;
  background: #25d8ff;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 4;
  padding: 10px 14px;
  color: #020b1c;
  background: #25d8ff;
  font: 700 14px/1.2 Arial, sans-serif;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .skip-link {
    transition: transform 120ms ease-out;
  }
}
