@charset "UTF-8";
:root {
  --dark: #000;
  --text: #ffffff;
  --screen: #000;
  --tv-bg: linear-gradient(180deg,rgba(97, 97, 97, 1) 0%, rgb(142, 142, 142) 18%, rgb(138, 138, 138) 22%, rgba(115, 115, 115, 1) 54%, rgba(89, 89, 89, 1) 85%, rgba(125, 125, 125, 1) 100%);
  --tv-bg-dead: rgb(17, 17, 203);
  --tv-overlay: #000;
  --tv-padding: 2rem;
  --tv-text: rgb(72, 72, 72);
  --tv-outline: rgb(94, 94, 94);
  --tv-buttons: rgb(133, 133, 133);
  --tv-buttonText: rgb(125, 125, 125);
  --tv-instructions-bg: rgb(42, 42, 42);
  --tv-instructions-text: rgb(48, 207, 72);
  --lyricDuration: 2.5s;
  --lyric: #ffffff;
  --lyricFill: yellow;
  --lyricStroke: #145BA3;
  --footer-height: 100px;
  --caption-height: 160px;
  --stroke-black: 0 2px 0 var(--dark), 0 -2px 0 var(--dark), 2px 0 0 var(--dark), -2px 0 0 var(--dark), -2px -2px 0 var(--dark), 2px 2px 0 var(--dark), 2px 1px 0 var(--dark), -2px 1px 0 var(--dark), 2px -1px 0 var(--dark), -2px -1px 0 var(--dark), -2px -1px 0 var(--dark), 2px -1px 0 var(--dark);
  --z-TV: 10;
  --z-TV-content: 11;
  --z-TV-contentOver: 12;
  --z-TV-info: 14;
  --z-TV-decor: 15;
}

@font-face {
  font-family: "VCR";
  src: url("/styling/VCROSDMono.woff2") format("woff2"), url("/styling/VCROSDMono.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("/styling/NeueHaasDisplay-Bold.woff2") format("woff2"), url("/styling/NeueHaasDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  background: var(--tv-bg);
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "VCR";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, a {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

#decor {
  pointer-events: none;
}
#decor img, #decor .sparkle, #decor .scanline, #decor .halftone, #decor .overlay, #decor .innerRadius, #decor .decor-highlight::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#decor img {
  object-fit: contain;
  max-width: 100%;
}
#decor .sparkle {
  object-fit: cover;
  mix-blend-mode: screen;
  filter: blur(3px);
}
#decor .halftone {
  background-image: url(/assets/halftone.jpeg);
  background-size: 30%;
  mix-blend-mode: color-burn;
  opacity: 1;
}

#decor > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 15;
  pointer-events: none;
}

@-webkit-keyframes scanline {
  0% {
    top: 0;
  }
  100% {
    top: 1px;
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
[noise]:after {
  position: fixed;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-image: url(/assets/noisy.gif);
  background-repeat: repeat;
  z-index: 300;
  pointer-events: none;
  opacity: 1;
}

footer {
  flex-grow: 1;
  display: block;
  background: var(--tv-bg);
  overflow: hidden;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 110px;
  position: fixed;
}

#buttons {
  display: flex;
  flex-direction: column;
}
#buttons .bar {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#buttons .top {
  position: fixed;
  top: 24px;
  padding: 2.5rem 4.5rem;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.9411764706);
  opacity: 0.6;
  mix-blend-mode: screen;
  z-index: var(--z-TV-contentOver);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
#buttons .bottom {
  bottom: 0;
  padding: 1rem 2rem 2rem;
  justify-content: center;
}
#buttons a {
  font-family: "VCR";
}
#buttons .bottom::before {
  content: "KAKAKOMPYUTER MO YAN";
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  text-align: center;
  transform: scaleX(1.1);
  font-size: 1rem;
  text-transform: uppercase;
  font-family: "VCR";
  text-shadow: 0 0 8px rgb(87, 87, 87), 1px 2px 6px #818181;
  background: linear-gradient(to bottom, #fff 0%, #bfbfbf 60%, rgb(193, 193, 193) 80%, rgb(74, 74, 74) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: overlay;
}
#buttons .bottom a::before {
  position: relative;
  display: block;
  top: -28px;
  width: 80px;
  left: 50%;
  margin-left: -40px;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--tv-text);
  letter-spacing: 0.5px;
}
#buttons .bottom a {
  display: block;
  background: var(--tv-buttons);
  width: 80px;
  height: 24px;
  border-radius: 16px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2), inset 0 -4px 4px rgba(57, 57, 57, 0.675), 0 0 8px rgba(0, 0, 0, 0.5), 0 4px 4px rgba(255, 255, 255, 0.1411764706);
  line-height: 32px;
  font-size: 0.5rem;
  color: transparent;
  border: 1px solid var(--tv-outline);
  margin: 0 0.5rem;
  pointer-events: auto;
}
#buttons a:hover {
  pointer-events: auto;
  cursor: pointer;
}
#buttons .bottom a:hover {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6), inset 0 0 4px rgba(255, 255, 255, 0.2), inset 0 -4px 4px rgba(57, 57, 57, 0.675), 0 0 8px rgba(0, 0, 0, 0.5), 0 4px 4px rgba(255, 255, 255, 0.1411764706);
}
#buttons a[show]:hover {
  opacity: 1;
}
#buttons a[show][active] {
  opacity: 1;
}
#buttons a[nav=back]::before {
  content: "CH -";
}
#buttons a[nav=next]::before {
  content: "CH +";
}
#buttons a[show=info]::before {
  content: "Info";
}
#buttons a[show=full]::before {
  content: "Full";
}
#buttons a[show=watch]::before {
  content: "Watch";
}
#buttons a[show=presskit]::before {
  content: "Press Kit";
}
#buttons a[show=ig]::before {
  content: "Instagram";
}
#buttons .bottom a[href="/"]::before, #buttons .bottom a[href="/index.html"]::before, #buttons .bottom a[href="/index"]::before, #buttons .bottom a[href="/selection.html"]::before, #buttons .bottom a[href="../selection.html"]::before {
  content: "Home";
}
#buttons a[nav=back]::after {
  content: "◀";
}
#buttons a[nav=next]::after {
  content: "▶";
}
#buttons a[nav=home]::after {
  content: "▲";
}
#buttons .instructions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 60px;
  text-align: center;
  line-height: 100%;
  background: var(--tv-instructions-bg);
  padding: 0.15rem 0.25rem;
  margin: 1.5rem;
  border-radius: 16px;
  border: 2px inset var(--tv-buttonText);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#buttons .instructions p {
  font-size: 0.7rem;
  line-height: 100%;
  color: var(--tv-instructions-text);
  margin: 0;
  padding: 0;
  opacity: 0.6;
  text-shadow: 0 0 10px var(--tv-instructions-text), 0 0 4px var(--tv-instructions-text);
}
#buttons .instructions::after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-repeat: repeat;
  background-image: url(/assets/scanline.gif);
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: screen;
}
@media (max-width: 1000px) {
  #buttons .bottom::before {
    font-size: 0.9rem;
    top: -24px;
  }
  #buttons:not(:has(.instructions)) .bottom {
    bottom: -4px;
  }
  #buttons:has(.instructions) .bottom {
    bottom: 16px;
  }
  #buttons .instructions {
    width: 90vw;
    min-width: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 0 1rem 0;
    padding: 0.25rem 0.5rem;
    height: 24px;
  }
  #buttons .instructions p {
    font-size: 0.8rem;
  }
}

body::after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background-image: url(/assets/noise-motion.gif);
  background-size: 25%;
  mix-blend-mode: overlay;
  opacity: 0.1;
  z-index: var(--z-TV-decor);
  pointer-events: none;
}

#television {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: var(--z-TV);
}

#project {
  width: 100%;
  height: 100%;
}

#karaoke {
  position: relative;
  margin: 0 auto;
  margin-top: calc(var(--tv-padding) / 2);
  width: calc(100vw - var(--tv-padding) - 40px);
  height: calc(100vh - var(--tv-padding) - var(--footer-height));
  overflow: hidden;
  border: 5px inset var(--tv-buttonText);
  border-radius: 8px;
  transform: perspective(2000px) rotateX(2deg) scale(1.02, 0.98);
  box-shadow: inset 0 0 100px #fff;
}
#karaoke [screen], #karaoke [full], #karaoke iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: auto;
}
#karaoke::after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  box-shadow: 0 0 30px inset var(--tv-overlay), 0 0 30px inset var(--tv-overlay), 0 0 30px inset var(--tv-overlay), 0 0 30px inset var(--tv-overlay);
  z-index: var(--z-TV-decor);
  pointer-events: none;
}
@media (max-width: 640px) {
  #karaoke::before {
    content: "[ ERROR: TOO SMALL ]\a\aKAKAKOMPYUTER MO YAN is designed\a for a desktop viewing experience, or\a a party in your living room.\a\aPlease visit us on a computer\awith a larger screen.";
    white-space: pre-line;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tv-bg-dead);
    pointer-events: none;
    z-index: 100;
  }
}

#content {
  position: relative;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 5vh 2.5rem;
}
#content .wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#content [size=l] {
  font-size: 1.75rem;
}

#caption {
  width: 100%;
  height: var(--caption-height);
  bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 1.85rem;
  color: var(--lyric);
  z-index: var(--z-TV-content);
}
#caption .wrapper {
  max-width: 85vw;
  margin: 0 auto;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
}
#caption [constant] {
  font-size: 1.25rem;
}
#caption [line] {
  position: relative;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
}
#caption .run::after {
  content: attr(text);
  position: absolute;
  left: 0;
  overflow: hidden;
  color: var(--lyricFill);
  text-shadow: 0 2px 0 var(--lyricStroke), 0 -2px 0 var(--lyricStroke), 2px 0 0 var(--lyricStroke), -2px 0 0 var(--lyricStroke), -2px -2px 0 var(--lyricStroke), 2px 2px 0 var(--lyricStroke), 2px 1px 0 var(--lyricStroke), -2px 1px 0 var(--lyricStroke), 2px -1px 0 var(--lyricStroke), -2px -1px 0 var(--lyricStroke), -2px -1px 0 var(--lyricStroke), 2px -1px 0 var(--lyricStroke);
  animation: run-text var(--lyricDuration) 1 linear;
  background-repeat: repeat;
}

.images {
  overflow-x: scroll;
  width: 100%;
  pointer-events: none;
}
.images .images-wrapper {
  height: 100%;
  white-space: nowrap;
}
.images img {
  height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes run-text {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
#volume {
  position: fixed;
  font-family: "VCR";
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 40%;
  z-index: 999249294294294300;
  font-size: 3rem;
  color: var(--text);
  text-shadow: 0 1.5px 0 var(--tv-overlay), 0 -1.5px 0 var(--tv-overlay), 1.5px 0 0 var(--tv-overlay), -1.5px 0 0 var(--tv-overlay), -1.5px -1.5px 0 var(--tv-overlay), 1.5px 1.5px 0 var(--tv-overlay), 1.5px 1px 0 var(--tv-overlay);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#volume h2 {
  margin: 0;
  transform: scaleX(1.5);
  width: 100%;
}
#volume .vol {
  margin: 1rem;
  width: 450px;
  display: inline;
  font-size: 1.5rem;
  transform: scaleY(1.5);
  text-align: center;
}
#volume .vol [bar=full]::after {
  content: "█";
  transform: scaleX(0.7);
}
#volume .vol [bar=half]::after {
  content: "▊";
}
#volume .vol [bar=no]::after {
  content: "·";
}
#volume .vol [bar] {
  display: inline-block;
  width: 40px;
}
#volume [volamount] {
  display: inline-block;
  max-width: 3ch;
  overflow: hidden;
  white-space: nowrap;
  transform: translateY(14px);
}

/*# sourceMappingURL=karaoke.css.map */
