/* === BASE (same identity) === */

body {
  background: #050505;
  color: #00ff00;
  font-family: "Courier New", monospace;
  margin: 0;
}

/* === HEADER (same as staff) === */

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

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

/* === TEXT FLOW (NEW, no containers) === */

.content {
  padding: 40px 20px;
  max-width: 700px;
}

/* left-aligned, not centered like staff */
.content {
  margin-left: 40px;
}

/* lines */

.line {
  font-size: 14px;
  margin: 6px 0;
}

/* hierarchy */

.dim {
  opacity: 0.45;
}

.subtle {
  opacity: 0.7;
}

/* simple divider */

.divider {
  margin: 12px 0;
  opacity: 0.4;
}

/* === EMAIL (no box, no card feel) === */

.email {
  display: inline-block;
  margin: 10px 0;

  text-shadow:
    0 0 6px #00ff00,
    0 0 12px rgba(0,255,0,0.4);
}

.email:hover {
  text-shadow:
    0 0 10px #00ff00,
    0 0 18px rgba(0,255,0,0.6);
}

/* === SCANLINES (same system identity) === */

body::after {
  content: "";
  position: fixed;
  inset: 0;

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

/* hide default cursor */
* {
  cursor: none !important;
}

/* custom cursor element */
.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 #00ff00);
}

/* slightly space sections more so it doesn't feel cramped */

.divider {
  margin: 18px 0;
  opacity: 0.4;
}

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

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

#rayshade {
  position: fixed;
  left: 0;
  bottom: 0;

  width: 30px;
  height: 53px;

  pointer-events: none;
  z-index: 1500;

  opacity: 0;

  image-rendering: pixelated;

  filter:
    drop-shadow(0 0 2px #1a1100)
    drop-shadow(0 0 2px #1a1100)
    drop-shadow(0 0 2px #1a1100);
}

#rayshade.active {
  opacity: 1;
}

/* flip + move to right side */
#rayshade.right {
  left: auto;
  right: 0;

  transform: scaleX(-1);
}