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

header {
  padding: 20px;
  border-bottom: 1px solid #00ff00;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

nav a {
  color: #00ff00;
  margin-left: 20px;
  text-decoration: none;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 62px;
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.7;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  border: 1px solid #00ff00;
  color: #00ff00;
  text-decoration: none;
  transition: 0.2s;
}

.button:hover {
  background: #00ff00;
  color: black;
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #00ff00;
  font-size: 12px;
  opacity: 0.6;
}
/* === 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;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  border-top: 1px solid #00ff00;
}

.grid div {
  max-width: 250px;
}

.notice {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #00ff00;
  opacity: 0.7;
}

.v-section {
  padding: 60px 20px;
  border-top: 1px solid #00ff00;
}

#v-container {
  max-width: 800px;
  margin: auto;
}

/* more spacing so they don't overlap */
.v-card {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
}

/* square */
.square {
  width: 70px;
  height: 70px;
  animation: spin 5s linear infinite;
  flex-shrink: 0; /* prevents squishing */
}

/* rotation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* text */
.info h3 {
  margin: 0;
}

.info p {
  opacity: 0.7;
  font-size: 13px;
}

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

.unit-link,
.unit-link:visited,
.unit-link:hover,
.unit-link:active {
  color: #00ff00 !important;
  text-decoration: none !important;
}

/* === TERMINAL SECTION === */

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

.terminal-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 10px 20px 0; /* 👈 reduce bottom padding */

  border-top: 1px solid #00ff00;

  text-align: center;
}


.terminal-section h2 {
  margin-bottom: 10px;
}

.terminal-section p {
  margin-bottom: 20px;
  opacity: 0.8;
}

/* terminal button (slightly more intense) */
.terminal-button {
  display: inline-block;
  margin-top: 10px;

  border: 1px solid #00ff00;
  padding: 10px 20px;

  text-decoration: none;
  color: #00ff00;

  transition: all 0.2s ease;
}

.terminal-button:hover {
  background: #00ff00;
  color: #050505;
}

* {
  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);
}

/* NEW */
.subtitle {
  font-size: 20px;
  opacity: 0.8;
  margin: 5px 0;
  letter-spacing: 1px;
}

.staff-lite {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

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

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

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

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

.snowsy {
  color: #f0fbff;
  border-color: #cfefff;

  text-shadow:
    0 0 8px #e6f7ff,
    0 0 16px rgba(200,240,255,0.6),
    0 0 24px rgba(200,240,255,0.3);

  box-shadow:
    0 0 8px rgba(200,240,255,0.3),
    inset 0 0 8px rgba(200,240,255,0.15);
}

.snowsy .hover-info {
  border-color: #e6f7ff;
  color: #f0fbff;
}

.luna-card {
  border: 1px solid #d33fff;
  color: #d33fff;

  text-shadow: 0 0 6px #d33fff;
  box-shadow: 0 0 8px #d33fff;
}

.luna-card .hover-info {
  border-color: #d33fff;
  color: #d33fff;
}

.mirage-card {
  color: #b8a9c9;
  border-color: #b8a9c9;

  text-shadow:
    0 0 4px #b8a9c9,
    0 0 12px rgba(184,169,201,0.25);

  box-shadow:
    0 0 6px rgba(184,169,201,0.4);
}

.mirage-card .hover-info {
  border-color: #b8a9c9;
  color: #b8a9c9;
}

.card {
  text-shadow: 0 0 6px currentColor;
  box-shadow: 0 0 6px currentColor;
}

.contact-section {
  padding: 40px 20px;
  border-top: 1px solid #00ff00;

  text-align: center; /* 👈 this is the main fix */
}

.contact-section h2 {
  margin-bottom: 10px;
}

.contact-links {
  margin-top: 10px;
  display: flex;
  justify-content: center; /* 👈 centers horizontally */
  gap: 20px;
}

.contact-links a {
  color: #00ff00;
  text-decoration: none;
}

.contact-links a:hover {
  text-shadow: 0 0 6px #00ff00;
}

.dim {
  opacity: 0.6;
}

.v-sit-card {
  height: 90px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* centered label */
.v-label {
  position: relative;
  z-index: 1;

  font-size: 14px;
  pointer-events: none;
}

/* sprite above card */
.v-sit-card img {
  position: absolute;
  bottom: calc(100% - 24px);
  left: 50%;
  transform: translateX(-50%);

  width: 38px;
  height: 72px;

  image-rendering: pixelated;

  z-index: 2;
}