:root {
  --page-background: #fffdf0;
  --focus-color: #f4a8c2;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--page-background);
}

.maintenance-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.artwork {
  position: relative;
  line-height: 0;
}

.artwork img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.artwork-desktop {
  width: 100vw;
  aspect-ratio: 2050 / 1026;
}

.artwork-mobile {
  display: none;
  width: min(100vw, 56.25svh);
  aspect-ratio: 9 / 16;
}

.hotspot {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.hotspot:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.35),
    0 8px 20px rgba(48, 57, 140, 0.18);
}

.hotspot:focus-visible {
  outline: 4px solid var(--focus-color);
  outline-offset: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.artwork-desktop .hotspot {
  top: 79.25%;
  width: 24.65%;
  height: 7%;
}

.artwork-desktop .hotspot-lazada {
  left: 24.15%;
}

.artwork-desktop .hotspot-shopee {
  left: 51.15%;
}

.artwork-mobile .hotspot {
  left: 29.3%;
  width: 41.4%;
  height: 3.35%;
}

.artwork-mobile .hotspot-lazada {
  top: 69.3%;
}

.artwork-mobile .hotspot-shopee {
  top: 74.2%;
}

@media (max-width: 767px) {
  .artwork-desktop {
    display: none;
  }

  .artwork-mobile {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotspot {
    transition: none;
  }
}
