

/* Cursor */
* {
  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;
  background: url('https://hitomivoid.neocities.org/images/bg_D.png') center/cover fixed;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}

.crt::before {
  content: "";
  position: absolute;
  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: 1;
  animation: scanFlicker 1s infinite;
}

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


.highlight {
  color: #ff2222;
  font-weight: bold;
}


.explorer-window {
  border: 2px solid white;
  background-color: black;
  margin: 40px auto;
  padding: 30px;
  max-width: 600px;
  width: 600px; 
  height: auto; 
  z-index: 1;
  position: relative;
  overflow-y: auto; 
}


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


.file-list {
  margin-top: 20px;
  padding-left: 15px;
  text-align: left;
}

.file {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.file img {
  width: 20px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.file a, .file span.clickable {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.file a:hover, .file span.clickable:hover {
  color: #a10000;
  text-shadow: 0 0 4px #a10000;
  cursor: pointer;
}


.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: all 0.3s ease;
}

.return-home:hover {
  background-color: white;
  color: black;
}


.popup {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 20px 40px;
  z-index: 2000;
  box-shadow: 4px 4px white;
  display: none;
  font-size: 1.1rem;
  cursor: move;
  opacity: 0;
  animation: flickerPopup 1.2s steps(4, end) forwards;
}

.popup .close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #a10000;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}

.popup .close-btn:hover {
  text-shadow: 0 0 5px #a10000;
}

@keyframes flickerPopup {
  0%   { opacity: 0; }
  25%  { opacity: 0.2; }
  50%  { opacity: 0.7; }
  75%  { opacity: 0.4; }
  100% { opacity: 1; }
}


.new-label {
  color: #a10000;
  font-weight: bold;
  text-shadow: 0 0 3px #a10000;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; text-shadow: 0 0 3px #a10000; }
  50% { opacity: 0.4; text-shadow: 0 0 10px #ff3333; }
  100% { opacity: 1; text-shadow: 0 0 3px #a10000; }
}


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