<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Retro graphic elements */
.retro-lines {
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    var(--yellow) 20%,
    var(--pink) 20%,
    var(--pink) 40%,
    var(--coral) 40%,
    var(--coral) 60%,
    var(--purple) 60%,
    var(--purple) 80%,
    var(--blue) 80%,
    var(--blue) 100%
  );
}

.top-lines {
  top: 0;
}

.bottom-lines {
  bottom: 0;
}

.retro-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background-color: var(--purple);
  top: -150px;
  left: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background-color: var(--pink);
  bottom: -100px;
  right: 50px;
}</pre></body></html>