html {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050008;
}

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

.hero {
  position: relative;
  width: min(96vw, calc((100vh - 20px) * 1.7779));
  max-width: 1672px;
  aspect-ratio: 1672 / 941;
}

.hero-image {
  width: 100%;
  height: 100%;
  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);
  box-shadow:
    0 0 18px rgba(255, 0, 220, 0.9),
    0 0 38px rgba(160, 0, 255, 0.75),
    0 0 70px rgba(255, 255, 255, 0.25);
  outline: 1px solid rgba(255, 120, 255, 0.45);
  filter: brightness(1.25) saturate(1.3);
}

/* SOUNDCLOUD ICON */

.soundcloud {
  left: 3.5%;
  top: 83.1%;
  width: 6.7%;
  height: 8.5%;
  border-radius: 14px;

  animation: socialBlink 1.25s infinite ease-in-out;
}

/* FACEBOOK ICON */

.facebook {
  left: 11.1%;
  top: 83.1%;
  width: 5.3%;
  height: 8.5%;
  border-radius: 14px;

  animation: socialBlink 1.25s infinite ease-in-out;
}

/* 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);

  }

}

/* ENTER THE VIBE BUTTON */

.stream {
  left: 40.5%;
  top: 86.1%;
  width: 19.3%;
  height: 5.4%;
  border-radius: 14px;

  animation: vibeBlink 1.25s infinite ease-in-out;
}

/* HOVER */

.stream:hover {

  animation-play-state: paused;

  box-shadow:
    0 0 18px rgba(255, 0, 220, 1),
    0 0 38px rgba(255, 0, 220, 0.9),
    0 0 70px rgba(160, 0, 255, 0.85);

  transform: scale(1.05);
}

/* NEON BLINK */

@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);

  }

}