body {
  background-color: black;
  color: lime;
  font-family: 'Courier New', monospace;
  padding: 40px;
  max-width: 800px;
  margin: auto;
}

a {
  color: lime;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  border-bottom: 1px solid lime;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.subtitle {
  color: #00ff00;
  font-size: 14px;
  opacity: 0.7;
}

.menu {
  margin-bottom: 30px;
  border-bottom: 1px dashed #00ff00;
  padding-bottom: 5px;
}

.menu a {
  margin-right: 10px;
  font-weight: bold;
}

.blog-posts h2 {
  margin-top: 40px;
  text-shadow: 0 0 5px lime;
}

.footer {
  margin-top: 60px;
  font-size: 12px;
  color: #00ff00;
  border-top: 1px dotted #00ff00;
  padding-top: 10px;
  opacity: 0.6;
  text-align: center;
}

.glitch {
  position: relative;
  color: #00ff00; /* bright green text */
  font-size: 3em;
  font-weight: bold;
  text-transform: none; /* disable uppercase */
  letter-spacing: 0.05em;
  animation: glitch-skew 1s infinite linear alternate-reverse;
  font-family: 'VT323', monospace; /* optional hacker font */
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #00ff00;
  background: black;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.glitch::before {
  animation: glitch-top 1s infinite linear alternate-reverse;
  color: #00ff00; /* bright green */
  mix-blend-mode: screen;
}

.glitch::after {
  animation: glitch-bottom 1s infinite linear alternate-reverse;
  color: #008000; /* darker green */
  mix-blend-mode: screen;
}

@keyframes glitch-top {
  0% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(-2px, -2px);
  }
  20% {
    clip: rect(10px, 9999px, 50px, 0);
    transform: translate(2px, -1px);
  }
  40% {
    clip: rect(85px, 9999px, 140px, 0);
    transform: translate(-3px, 0);
  }
  60% {
    clip: rect(45px, 9999px, 80px, 0);
    transform: translate(3px, 2px);
  }
  80% {
    clip: rect(0px, 9999px, 10px, 0);
    transform: translate(-1px, 1px);
  }
  100% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0);
  }
}

@keyframes glitch-bottom {
  0% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(2px, 2px);
  }
  20% {
    clip: rect(60px, 9999px, 90px, 0);
    transform: translate(-1px, 1px);
  }
  40% {
    clip: rect(5px, 9999px, 30px, 0);
    transform: translate(1px, -2px);
  }
  60% {
    clip: rect(90px, 9999px, 120px, 0);
    transform: translate(-2px, 1px);
  }
  80% {
    clip: rect(20px, 9999px, 50px, 0);
    transform: translate(2px, -1px);
  }
  100% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0);
  }
}

@keyframes glitch-skew {
  0% {
    transform: skew(0deg);
  }
  10% {
    transform: skew(5deg);
  }
  20% {
    transform: skew(-5deg);
  }
  30%, 100% {
    transform: skew(0deg);
  }
}

.terminal {
  margin-top: 20px;
  font-family: 'Courier New', monospace;
  color: lime;
  background-color: #000000;
  padding: 10px;
  border: 1px solid lime;
  width: 100%;
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid lime;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  50% { border-color: transparent }
}

body {
  cursor: url('default_busy.cur'), wait;
}

a {
  cursor: url('default_beam.cur'), pointer;
}