#hud {
  height: var(--hud-h);
  z-index: 3;
  text-shadow: 0 .2vmin .4vmin #ffffffb3;
  align-items: center;
  gap: 1.5vmin;
  width: 100%;
  padding: 0 2vmin;
  font-size: 2.4vmin;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

#hud span {
  margin-left: .6vmin;
  font-size: 3.2vmin;
}

#beat-track {
  width: var(--board-w);
  height: var(--beat-h);
  box-shadow: 0 .6vmin 1.8vmin var(--c-beat-shadow);
  background: #fff;
  border-radius: 999px;
  flex: none;
  align-items: center;
  padding: 0 2vmin 0 1vmin;
  transition: background .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

#beat-track.is-playing {
  background: linear-gradient(180deg, var(--c-beat-bg-1), var(--c-beat-bg-2));
}

#beat-track:after {
  content: "";
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right, #fff0, #fff 24%, #fff);
  width: 60%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.beat-track__row {
  --note-size: calc(var(--beat-h) * .66);
  --note-gap: 1.6vmin;
  gap: var(--note-gap);
  transform: translateX(calc(var(--cur, 0) * (var(--note-size)  + var(--note-gap)) * -1));
  transition: transform .3s;
  display: flex;
}

.note {
  width: var(--note-size);
  height: var(--note-size);
  flex: none;
  transition: opacity .2s, filter .2s;
}

.note--done {
  opacity: .3;
  filter: grayscale(.6);
}

.note--upcoming {
  opacity: .85;
}

.note--current {
  filter: drop-shadow(0 0 .8vmin #fff);
}

#lyric-bar {
  height: var(--lyric-h);
  background: var(--c-lyric-bg);
  backdrop-filter: blur(4px);
  text-align: center;
  z-index: 4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .4vmin;
  width: 100%;
  padding: 0 2vmin;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#status {
  opacity: .6;
  font-size: 1.8vmin;
  transition: color .18s, opacity .18s;
}

#status.status--alert {
  color: #ff6b6b;
  opacity: 1;
}

#lyric-line {
  flex-wrap: wrap;
  justify-content: center;
  font-size: 3.2vmin;
  font-weight: 700;
  display: flex;
}

#lyric-line .ch {
  color: var(--c-lyric-upcoming);
  transition: color .12s, transform .12s;
}

#lyric-line .ch--sung {
  color: var(--c-lyric-sung);
}

#lyric-line .ch--active {
  color: var(--c-lyric-active);
  transform: translateY(-.3vmin)scale(1.18);
}

#pause-btn {
  height: calc(var(--hud-h) * .95);
  aspect-ratio: 1;
  cursor: pointer;
  background: none;
  border: none;
  flex: none;
  margin-right: .5vmin;
  padding: 0;
  transition: transform .12s;
}

#pause-btn:hover {
  transform: scale(1.08);
}

#pause-btn img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

#media {
  z-index: 5;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: calc(120px + 16vmin);
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

#media > div {
  flex-direction: column;
  display: flex;
  width: 100% !important;
}

#media > div > div {
  width: 100% !important;
  height: calc(45px + 9vmin) !important;
}

#media > div > div.textalive-banner {
  overflow: hidden;
  max-width: initial !important;
  height: initial !important;
  width: 100% !important;
}

@media (width <= 600px) {
  :root {
    --hud-h: 9vmin;
    --lyric-h: 12vmin;
  }

  #hud {
    font-size: 3.6vw;
  }

  #hud span {
    font-size: 4.6vw;
  }

  #status {
    font-size: 3vw;
  }

  #lyric-line {
    font-size: 4.6vw;
  }
}
/*# sourceMappingURL=index.5a834021.css.map */
