/* version 1.1 */
body {
  font-family: 'Space Mono', monospace;
}

.scanline {
  width: 100%;
  height: 100px;
  z-index: 99;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 255, 0, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.1;
  position: fixed;
  bottom: 100%;
  animation: scanline 10s linear infinite;
}

@keyframes scanline {
  0% {
    bottom: 100%;
  }

  100% {
    bottom: -100%;
  }
}

.neon-border {
  box-shadow: 0 0 5px #00FF00, inset 0 0 5px #00FF00;
}

.neon-text {
  text-shadow: 0 0 5px #00FF00;
}

.glitch-hover:hover {
  animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

body {
  font-family: 'Space Mono', monospace;
  background-color: #0D0D0D;
  color: #E8EAF6;
}

.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%,
      rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg,
      rgba(255, 0, 0, 0.06),
      rgba(0, 255, 0, 0.02),
      rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  z-index: 100;
}

.neon-border {
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2), inset 0 0 10px rgba(0, 255, 0, 0.1);
}

.neon-text {
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%,
      rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg,
      rgba(255, 0, 0, 0.06),
      rgba(0, 255, 0, 0.02),
      rgba(0, 255, 0, 0.06));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  z-index: 100;
}

.terminal-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #333;
  color: #00FF00;
  outline: none;
  width: 100%;
  padding: 10px 0;
  transition: border-color 0.3s;
}

.terminal-input:focus {
  border-color: #00FF00;
}

.step-active {
  color: #00FF00;
  border-color: #00FF00;
}

.code-block {
  background: #000;
  border-left: 4px solid #00FF00;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
  font-size: 0.875rem;
  color: #00FF00;
}

.article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #9ca3af;
}

.article-content h2 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-content blockquote {
  border-left: 4px solid #FF00FF;
  padding-left: 1.5rem;
  font-style: italic;
  color: #d1d5db;
  margin: 2rem 0;
}

.scanlines {
  z-index: 1 !important;
  opacity: 0.05 !important;
}

.scanline {
  z-index: 1 !important;
  opacity: 0.05 !important;
}

main {
  position: relative;
  z-index: 10;
}
