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

.staff {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

h2 {
  margin-top: 40px;
  border-bottom: 1px solid #00ff00;
  padding-bottom: 5px;
  font-size: 18px;
}

/* group layout */
.group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

/* cards */
.card {
  border: 1px solid #00ff00;
  padding: 10px 15px;
  font-size: 14px;
  flex: 1 1 250px;
}

/* highlight Snowsy */
.highlight {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.05);
}

.card {
  position: relative;
  border: 1px solid #00ff00;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
}

/* hover box */
.hover-info {
  position: absolute;
  bottom: 110%;
  left: 0;
  background: #050505;
  border: 1px solid #00ff80;
  padding: 8px;
  font-size: 12px;
  width: 200px;

  color: #00ff80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.card:hover .hover-info {
  opacity: 1;
}

::-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 OVERLAY === */

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