body {
  background-color: #0a0a0a;
  color: #cfcfcf;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

.header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #333;
}

.logo {
  width: 80px;
  height: auto;
  opacity: 0.8;
  margin-bottom: 10px;
}

.motto {
  color: #aaa;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: -10px;
}

.nav {
  display: flex;
  justify-content: center;
  background-color: #111;
  padding: 10px;
  border-bottom: 1px solid #222;
}

.nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: #ff4646;
}

.content {
  padding: 30px;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.glitch {
  color: #ff4646;
  text-shadow: 1px 0 #000, -1px 0 #000;
  animation: glitch 1s infinite;
}

.faint {
  color: #555;
  font-size: 11px;
  margin-top: 40px;
  text-align: center;
}

footer {
  text-align: center;
  font-size: 10px;
  color: #333;
  padding: 10px;
  border-top: 1px solid #222;
}

@keyframes glitch {
  0% { opacity: 1; }
  20% { opacity: 0.8; }
  40% { opacity: 1; }
  60% { opacity: 0.6; }
  80% { opacity: 1; }
  100% { opacity: 0.9; }
}