/* === BASE (match other pages) === */
body {
  background: #050505;
  color: #e8faff;
  font-family: "Courier New", monospace;
  margin: 0;
}

header {
  padding: 20px;
  border-bottom: 1px solid #cfefff;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
  color: #e8faff;
}

/* === LOGS === */

.logs {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.entry {
  margin: 30px 0;
  padding-left: 15px;
  border-left: 2px solid #cfefff;
}

.time {
  font-size: 12px;
  opacity: 0.5;
  display: block;
  color: #bfefff;
}

.entry p {
  margin: 6px 0;
  line-height: 1.5;
  max-width: 600px;
}

/* subtle hover */
.entry:hover {
  background: rgba(200, 240, 255, 0.04);
}

/* === SNOW TEXT SYSTEM === */

.snow {
  color: #e8faff;
}

.snow-soft {
  color: #cfefff;
  opacity: 0.8;
}

.snow-faint {
  opacity: 0.4;
}

.snow-glow {
  color: #f0fbff;
  text-shadow:
    0 0 6px #d6f5ff,
    0 0 12px rgba(200,240,255,0.4);
}

/* === SCROLLBAR === */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #cfefff;
  border-radius: 5px;
  box-shadow: 0 0 5px #cfefff;
}

/* === SCANLINES === */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(200, 240, 255, 0.05),
    rgba(200, 240, 255, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );

  z-index: 999;
}

* {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.custom-cursor {
  filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 4px #00ff00);
}

.custom-cursor {
  filter: brightness(0) invert(1);
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  color: #ffffff;
  text-decoration: none;
}

.logo:hover {
  text-shadow: 0 0 10px #ffffff;
  cursor: pointer;
}