
* {
  cursor: url('https://hitomivoid.neocities.org/Cursor/1-cursor.png'), crosshair !important;
}


html, body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: 'Silkscreen', monospace;
  overflow-x: hidden;
}


.crt {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url('https://hitomivoid.neocities.org/images/bg_D.png') center/cover fixed;
}

.crt::before {
  content: "";
  position: fixed; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 1000; 
  animation: scanFlicker 1s infinite;
}

@keyframes scanFlicker {
  0%,100% { opacity:0.05; }
  50% { opacity:0.12; }
}


.crt-content {
  position: relative;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}


.window {
  background-color: black;
  border: 2px solid white;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  box-shadow: 3px 3px white;
  position: relative;
  z-index: 1;
}

.title-bar {
  background: white;
  color: black;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid black;
}


.intro-box {
  margin-bottom: 20px;
  padding: 15px;
  border: 2px dashed white;
  background: rgba(0,0,0,0.6);
  text-align: center;
  font-size: 1rem;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.gallery a {
  display: block;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  background-color: red; 
}

.gallery:not(.blur-gallery) a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  mix-blend-mode: lighten;
  transition: filter 0.3s ease, mix-blend-mode 0.3s ease;
}

.gallery:not(.blur-gallery) a:hover img {
  filter: none;
  mix-blend-mode: normal; 
}

.blur-gallery a img {
  filter: blur(10px) grayscale(100%);
  mix-blend-mode: lighten;
  cursor: zoom-in;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: none;
}

.blur-gallery a:hover img {
  filter: blur(5px) grayscale(100%) !important;
  mix-blend-mode: lighten !important;
}


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  text-align: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border: 2px solid black;
  box-shadow: 0 0 20px red;
  margin-bottom: 10px;
}

.lightbox-caption {
  color: white;
  font-family: 'Silkscreen', monospace;
  font-size: 1rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 2001;
  font-family: monospace;
  padding: 0 10px;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #ff2222;
  text-shadow: 0 0 8px #ff2222;
}


.highlight {
  color: #ff2222;             
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255,34,34,0.45);
}


.site-footer {
  margin-top: 30px;
  text-align: center;
  font-family: 'Silkscreen', monospace;
  color: white;
  z-index: 20; 
}

.site-footer .footer-text {
  font-size: 1rem;
  color: #ddd; 
}

.site-footer .footer-text .highlight {
  color: #ff2222; 
  text-shadow: 0 0 8px rgba(255,34,34,0.45);
}


.return-home {
  display: inline-block;
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-family: 'Silkscreen', monospace;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 3px 3px white;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.08s ease;
  margin: 24px auto;
}

.return-home:hover {
  background-color: white;
  color: black;
  transform: translateY(-2px);
}
