/* === BASE === */
body {
  background: #050505;
  color: #0080ff;
  font-family: "Courier New", monospace;
  margin: 0;
}

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

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

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

.logo:hover {
  text-shadow: 0 0 10px #0080ff;
}

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

/* === CONTENT STYLING === */
.research h2 {
  margin-top: 40px;
  border-bottom: 1px solid #0080ff;
  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;
}

.meta {
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 20px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
  background: #0080ff;
  border-radius: 5px;
  box-shadow: 0 0 5px #0080ff;
}
::-webkit-scrollbar-thumb:hover { background: #0060cc; }

/* === 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, 128, 255, 0.04),
    rgba(0, 128, 255, 0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 999;
}

/* === CURSOR === */
* { cursor: none !important; }

.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 4px #0080ff);
}