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

img[full] {
  width: 100vw;
  object-fit: cover;
}

.noise::after {
  position: fixed;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-image: url(../assets/noisy.gif);
  background-repeat: repeat;
  z-index: 99;
  box-shadow: inset 0 0 150px #000, inset 0 0 350px #000, inset 0 0 350px #000, inset 0 0 550px #000;
  animation: noise 0.5s ease-out forwards;
  animation-delay: 3.5s;
  pointer-events: none;
  opacity: 1;
}

@keyframes noise {
  0% {
    opacity: 0.2;
  }
  70% {
    opacity: 0.2;
  }
  71% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#karaoke {
  overflow: hidden;
}

#project {
  position: relative;
}

#project::after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  box-shadow: inset 0 0 100px rgb(18, 18, 18), inset 0 0 100px rgb(18, 18, 18), inset 0 0 100px rgb(18, 18, 18);
  pointer-events: none;
}

iframe[full] {
  width: 100vw;
  height: 100vh;
}

#info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  color: var(--text);
  cursor: help;
  z-index: var(--z-TV-info);
  display: none;
}
#info .wrapper {
  width: calc(100vw - var(--tv-padding));
  height: calc(95vh - var(--tv-padding) - var(--footer-height));
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: min(90vw, 1100px);
}
#info .wrapper div {
  margin: 0 auto;
  text-align: center;
  color: inherit;
}
#info .artist::after {
  content: "Click anywhere to close";
  animation: warn-flicker 3s infinite;
  color: #fff;
  border-radius: 24px;
  padding: 0.25rem 1rem;
  height: 40px;
  text-transform: uppercase;
}
#info h1, #info h2 {
  font-size: 2rem;
  letter-spacing: -1px;
}
#info p {
  font-size: 1rem;
  color: inherit;
  line-height: 110%;
  padding: 1rem;
  margin: 0 auto;
  width: 1200px;
  max-width: 80vw;
}
@media (max-width: 640px) {
  #info h1, #info h2 {
    font-size: 1.25rem;
  }
  #info p {
    font-size: 0.5rem;
  }
}

#intro-sequence {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/beach-gif.gif);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  animation: fadeOut 2.5s ease-out forwards;
  animation-delay: 2s;
  text-align: center;
  text-shadow: var(--stroke-black);
  background-size: cover;
  pointer-events: auto;
}
#intro-sequence .wrapper::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% cover;
  background-position: center center;
  z-index: 98;
  content: " ";
}
#intro-sequence .wrapper::after {
  position: fixed;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 98;
}
#intro-sequence::after {
  position: fixed;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-image: url(../assets/noisy.gif);
  background-repeat: repeat;
  z-index: 99;
  animation: noise 0.5s ease-out forwards;
  animation-delay: 3.5s;
  pointer-events: none;
  opacity: 0.15;
}
#intro-sequence h1, #intro-sequence h2, #intro-sequence p {
  animation: moveAnimation 2s infinite alternate reverse;
}
#intro-sequence h1 {
  font-size: 4rem;
  font-weight: 300;
  margin: 0.25rem auto;
  max-width: 720px;
  line-height: 90%;
}
#intro-sequence h2 {
  margin-top: 2rem;
  font-size: 1.5em;
  text-align: center;
}
#intro-sequence p {
  font-family: inherit;
  text-align: center;
  line-height: 150%;
}
#intro-sequence .instructions {
  margin-top: 100px;
}
#intro-sequence .instructions h3, #intro-sequence .instructions p {
  margin: 0;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    pointer-events: auto;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
#warning {
  position: fixed;
  z-index: 124912492194;
  bottom: 40%;
  left: 0;
  width: 100%;
  text-align: center;
  display: none;
  color: red;
  font-size: 1.5rem;
  transform: scaleX(1.2);
  animation: warn-flicker 8s infinite;
}
#warning::after {
  text-transform: uppercase;
  content: "Press any num to leave";
}

@keyframes warn-flicker {
  0%, 100% {
    opacity: 0.7;
  }
  10%, 60% {
    opacity: 0.85;
  }
  20%, 80% {
    opacity: 0.75;
  }
  30% {
    opacity: 0.9;
  }
  40% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.95;
  }
  70% {
    opacity: 0.93;
  }
  90% {
    opacity: 0.88;
  }
}

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