html {
  box-sizing: border-box;
}

body,
main,
section,
img,
a {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #050008;
}

.page {
  width: 100%;
  min-height: 100svh;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero {
  position: relative;
  width: min(100%, calc((100svh - 20px) * 941 / 1672));
  min-width: 360px;
  aspect-ratio: 941 / 1672;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hotspot {
  position: absolute;
  display: block;
  cursor: pointer;
  background: transparent;
  z-index: 10;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    outline 0.25s ease;
}

.hotspot:hover {
  transform: scale(1.06);
  outline: 1px solid rgba(255, 120, 255, 0.45);
  filter: brightness(1.25) saturate(1.3);
}

/* ENTER THE VIBE */

.stream {
  left: 29.5%;
  top: 68.1%;
  width: 41%;
  height: 4.1%;
  border-radius: 16px;
  animation: vibeBlink 1.25s infinite ease-in-out;
}

/* SOUNDCLOUD */

.soundcloud {
  left: 22.2%;
  top: 81.6%;
  width: 17.8%;
  height: 8.0%;
  border-radius: 16px;
  animation: socialBlink 1.25s infinite ease-in-out;
}

/* FACEBOOK */

.facebook {
  left: 41.2%;
  top: 81.6%;
  width: 15.5%;
  height: 8.4%;
  border-radius: 16px;
  animation: socialBlink 1.25s infinite ease-in-out;
}

/* STREAM GLOW */

@keyframes vibeBlink {
  0% {
    opacity: .45;
    box-shadow:
      0 0 6px rgba(255,0,220,.25),
      0 0 12px rgba(255,0,220,.15);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 18px rgba(255,0,220,.95),
      0 0 42px rgba(255,0,220,.75),
      0 0 80px rgba(160,0,255,.65);
  }

  100% {
    opacity: .45;
    box-shadow:
      0 0 6px rgba(255,0,220,.25),
      0 0 12px rgba(255,0,220,.15);
  }
}

/* SOCIAL GLOW */

@keyframes socialBlink {
  0% {
    opacity: .45;
    box-shadow:
      0 0 4px rgba(255,0,220,.18),
      0 0 10px rgba(255,0,220,.08);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 10px rgba(255,0,220,.65),
      0 0 24px rgba(160,0,255,.45);
  }

  100% {
    opacity: .45;
    box-shadow:
      0 0 4px rgba(255,0,220,.18),
      0 0 10px rgba(255,0,220,.08);
  }
}