:root {
  --edge-spacing: 20px;
  --control-bottom: 40px;
  --booking-bottom: 30px;
  --bottom-ui-axis: 34px;
  --viewport-height: 100vh;
  --text-color: #ffffff;
  --background-start: #bf0413;
  --background-end: #000000;
  --animated-background: linear-gradient(0deg, var(--background-start), var(--background-end));
  --info-text-background: linear-gradient(0deg, #bf0413, #a8acec);
  --font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --info-text-color: #111111;
  --page-background: #000000;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-family);
  color: var(--text-color);
  background: var(--page-background);
  overflow-x: hidden;
}

.page {
  min-height: 100%;
}

.text {
  font-size: 1.5rem;
  font-weight: 100;
  color: var(--text-color);
  letter-spacing: -0.07em;
  text-decoration: none;
  cursor: pointer;
}

.hero {
  position: relative;
  height: var(--viewport-height);
  min-height: var(--viewport-height);
  background: linear-gradient(0deg, var(--background-start), var(--background-end));
  overflow: hidden;
  cursor: pointer;
  contain: layout paint style;
}

.hero:focus {
  outline: none;
}

.amplitude-hero {
  --amplitude: 0;
  isolation: isolate;
}

.center-toggle {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(62vw, 62vh);
  height: min(62vw, 62vh);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.center-toggle:focus {
  outline: none;
}

.playback-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
}

.playback-feedback.is-visible {
  animation: playback-feedback 620ms ease-out forwards;
}

.playback-feedback-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 64px;
}

.playback-feedback.is-play .playback-feedback-icon {
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 52px solid rgb(255 255 255 / 88%);
  transform: translateX(5px);
}

.playback-feedback.is-pause .playback-feedback-icon::before,
.playback-feedback.is-pause .playback-feedback-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 64px;
  background: rgb(255 255 255 / 88%);
}

.playback-feedback.is-pause .playback-feedback-icon::before {
  left: 6px;
}

.playback-feedback.is-pause .playback-feedback-icon::after {
  right: 6px;
}

@keyframes playback-feedback {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }

  16% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

audio {
  display: none;
}

.controls {
  position: absolute;
  left: var(--edge-spacing);
  bottom: var(--bottom-ui-axis);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 3;
  transform: translateY(50%);
}

.volume-container {
  position: relative;
  width: 150px;
  height: 6px;
  background: rgb(255 255 255 / 50%);
  cursor: pointer;
  touch-action: none;
}

.volume-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -19px;
  bottom: -19px;
}

.volume-bar {
  position: absolute;
  height: 6px;
  width: 80%;
  background: var(--text-color);
  pointer-events: none;
}

.volume-input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 44px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-19px);
  touch-action: none;
}

.volume-input:focus {
  outline: none;
}

.email {
  display: flex;
  align-items: center;
}

.download {
  position: absolute;
  top: var(--edge-spacing);
  right: var(--edge-spacing);
  z-index: 3;
}

.track-status-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--bottom-ui-axis);
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
  padding: 0 26vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50%);
  pointer-events: none;
}

.track-status {
  max-width: 100%;
  color: var(--text-color);
  font-size: 0.88rem;
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  overflow: hidden;
}

.track-title,
.track-time {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-time {
  opacity: 0.5;
  font-size: 0.9em;
}

.booking-wrapper {
  position: absolute;
  bottom: var(--bottom-ui-axis);
  right: var(--edge-spacing);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 3;
  transform: translateY(50%);
}

.booking-hover {
  display: none;
}

.booking-wrapper.is-email-visible .booking-default {
  display: none;
}

.booking-wrapper:focus-within .booking-hover,
.booking-wrapper.is-email-visible .booking-hover {
  display: inline;
}

.booking-wrapper:focus-within .booking-default {
  display: none;
}

.info-panel {
  position: absolute;
  left: var(--edge-spacing);
  top: clamp(76px, 13vh, 132px);
  z-index: 3;
  box-sizing: border-box;
  width: min(52vw, 760px);
  pointer-events: none;
}

.info-text {
  margin: 0;
  max-width: 20ch;
  color: transparent;
  font-family: var(--font-family);
  font-size: clamp(1.9rem, 4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
  background: var(--info-text-background);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-home-link {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.09em;
  cursor: pointer;
  pointer-events: auto;
  -webkit-text-fill-color: #ffffff;
}

.info-home-link:hover,
.info-home-link:focus {
  color: #ffffff !important;
  text-decoration: underline;
  -webkit-text-fill-color: #ffffff;
}

.info-home-link:visited,
.info-home-link:active {
  color: #ffffff !important;
  text-decoration: none;
  -webkit-text-fill-color: #ffffff;
}

@media (max-width: 720px) {
  :root {
    --edge-spacing: 16px;
    --control-bottom: 28px;
    --booking-bottom: 20px;
    --bottom-ui-axis: 24px;
  }

  .text {
    font-size: 1.35rem;
  }

  .volume-container {
    width: 120px;
  }

  .track-status-container {
    padding: 0 32vw;
  }

  .booking-wrapper:focus-within ~ .track-status-container,
  .booking-wrapper.is-email-visible ~ .track-status-container {
    opacity: 0;
  }

  .track-status {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .track-title {
    font-size: 1.12em;
  }

  .info-panel {
    top: 74px;
    right: var(--edge-spacing);
    width: auto;
  }

  .info-text {
    max-width: 12.5ch;
    font-size: clamp(1.45rem, 8vw, 3rem);
    line-height: 1;
  }
}
