/* BBS Terminal Style */
body {
  background-color: #000000;
  color: #00ff00;
  font-family: 'VT323', 'Courier New', monospace;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
  margin-bottom: 0.2em;
}

.subtitle {
  font-size: 1.2em;
  color: #00ff00;
  text-shadow: 0 0 3px #00ff00;
}

section {
  margin-top: 2em;
  border-top: 1px dashed #008800;
  padding-top: 1em;
}

h2 {
  color: #00ff00;
  text-shadow: 0 0 3px #00ff00;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 0.5em;
}

/* Footer */
footer {
  margin-top: 3em;
  font-size: 0.9em;
  color: #00ff00;
  border-top: 1px solid #222;
  padding-top: 1em;
}

a {
  color: #00ff00;
  text-decoration: none;
}

/* Blinking cursor/text */
.blinking {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

/* CRT Scanlines Overlay */
.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0.05) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  z-index: 9999;
  mix-blend-mode: overlay;
}
