
body {
  background-color: #0b0b0b;
  color: #f8f8f2;
  font-family: monospace;
  padding: 2rem;
  line-height: 1.6;
}

h1, h2 {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 2px #00ff99;
}

h1 {
  font-size: 1.8rem;
  animation: flicker 2s infinite;
  color: #ff0080;
}

h2 {
  font-size: 1.2rem;
  color: #76ff03;
  margin-top: 3rem;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

.section {
  max-width: 700px;
  margin: 0 auto;
  border-left: 2px solid #222;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.code-glitch {
  background: #111;
  color: #00ff99;
  padding: 1rem;
  font-size: 0.95rem;
  border: 1px dashed #444;
  box-shadow: 0 0 8px #111;
  white-space: pre-wrap;
}

footer {
  text-align: center;
  color: #555;
  font-size: 0.8rem;
  margin-top: 4rem;
}

a {
  color: #ff4081;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}