/* === BASE (consistent across all pages) === */
body {
  background: #050505;
  color: #00ff00;
  font-family: "Courier New", monospace;
  margin: 0;
}

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

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

/* === MAIN CONTAINER === */
.research {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* === CONTENT STYLING === */
.research h2 {
  margin-top: 40px;
  border-bottom: 1px solid #00ff00;
  padding-bottom: 5px;
  font-size: 18px;
}

.research p {
  margin: 15px 0;
  line-height: 1.6;
}

.research ul {
  margin: 15px 0;
  padding-left: 20px;
}

.research li {
  margin: 8px 0;
}

/* optional small meta text */
.meta {
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 20px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #00cc00;
}

/* === SCANLINES === */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.05),
    rgba(0, 255, 0, 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);
}

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

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