  /* heavier CRT stack: scanlines + vignette + slow flicker + faint grain */
  .crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 12;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
  
  @keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.90626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.83891;
  }
  30% {
  opacity: 0.65583;
  }
  35% {
  opacity: 0.67807;
  }
  40% {
  opacity: 0.26559;
  }
  45% {
  opacity: 0.84693;
  }
  50% {
  opacity: 0.96019;
  }
  55% {
  opacity: 0.08594;
  }
  60% {
  opacity: 0.20313;
  }
  65% {
  opacity: 0.71988;
  }
  70% {
  opacity: 0.53455;
  }
  75% {
  opacity: 0.37288;
  }
  80% {
  opacity: 0.71428;
  }
  85% {
  opacity: 0.70419;
  }
  90% {
  opacity: 0.7003;
  }
  95% {
  opacity: 0.36108;
  }
  100% {
  opacity: 0.24387;
  }
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 12;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

/* The overall scrollbar container (defines the width) */
::-webkit-scrollbar {
  width: 10px;        /* Width of vertical scrollbar */
  height: 10px;       /* Height of horizontal scrollbar */
}



/* The actual draggable handle (the thumb) */
::-webkit-scrollbar-thumb {
  background: #5c5c5c;
  /*border-radius: 8px; /* Rounded corners */
  border: 0px solid #f1f5f9; /* Creates padding between thumb and track */
}

/* The handle changes color when a user hovers over it */
::-webkit-scrollbar-thumb:hover {
  background: #d9531e;
}

@font-face 
{
    src: url(/fonts/CipherNoise-Regular.woff2);
    font-family: 'CipherNoise';
    font-display: swap;
}

/*
body::after 
{
  content: url('https://so-k.neocities.org/images/Cursor.png') url('https://so-k.neocities.org/images/CCursor.png');
  display: none;
  overflow: hidden;
}
*/

body {
  background-color: black;
  color: white;
  font-family: Courier;
  
 /* cursor:url('https://so-k.neocities.org/images/Cursor.png'), auto; */
  

}



.vignette::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5; 
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 45%, /*vignette opacity*/
    rgba(0,0,0,0.85) 100%
  );
}
