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


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


body {
  background: url('https://hitomivoid.neocities.org/images/bg_D.png') center/cover fixed;
  font-family: monospace;
  margin: 0;
  color: white;
  font-size: 18px;
  line-height: 1.6;
}


.crt-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  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;
}


.explorer-window {
  border: 2px solid white;
  background-color: black;
  margin: 60px auto 30px auto;
  padding: 30px;
  max-width: 900px;
  box-shadow: 2px 2px white;
  position: relative;
  z-index: 1;
}


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

.silkscreen-text {
  font-family: 'Silkscreen', monospace;
}


.ao3-note {
  font-family: 'Silkscreen', monospace;
  color: #bbb;
  font-size: 0.9rem;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 2px solid #555;
  animation: fadeIn 2s ease forwards;
}


.terminal-intro {
  font-size: 1rem;
  padding: 10px;
  color: #aaa;
  margin-top: 10px;
  white-space: pre-wrap;
  min-height: 4em;
  font-family: 'Silkscreen', monospace;
}


.story-content {
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid white;
  padding: 20px;
  text-align: left;
  margin-top: 20px;
  opacity: 0;
  animation: fadeInContent 2s ease forwards;
}
@keyframes fadeInContent {
  to { opacity: 1; }
}
.story-content p {
  margin-bottom: 1em;
}


a {
  color: #880808;
  text-decoration: none;
}
a:hover {
  color: #880808;
  text-shadow: 0 0 4px #a10000;
}


.spoiler {
  background-color: #444;
  color: #444;
  border: 1px solid #888;
  padding: 2px 6px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-family: 'Silkscreen', monospace;
}
.spoiler.revealed {
  color: #ddd;
  background-color: transparent;
}


.footer-text {
  font-family: 'Silkscreen', monospace;
  color: white;
  font-size: 1rem;
  text-align: center;
  margin-top: 30px;
}


.return-home {
  display: inline-block;
  font-family: 'Silkscreen', monospace;
  font-size: 1rem;
  padding: 10px 20px;
  color: white;
  background-color: black;
  border: 2px solid white;
  text-decoration: none;
  box-shadow: 3px 3px white;
  transition: all 0.3s ease;
}
.return-home:hover {
  color: #ff2222;
  border-color: #ff2222;
  box-shadow: 0 0 6px #ff2222;
}


.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
}
.scroll-top.show { display: block; }


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


.secret-link {
  display: block;
  text-align: center;
  font-size: 0.9em;
  color: #444;
  margin-top: 10px;
}
.secret-link:hover {
  color: #880808 ;
  text-shadow: 0 0 6px #a10000;
  cursor: pointer;
}


.text-message {
  border: 2px solid #888;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px;
  font-size: 0.9rem;
  font-family: monospace;
  white-space: pre-line;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 2px 2px #555;
  color: #ddd;
  text-align: left;
}
