body {
  font-family: "Share Tech Mono", monospace;
  background-color: #0f172a;
  color: #d1fae5;
}
.neo-blue-border {
  border-color: #3b82f6;
}
.neo-green-border {
  border-color: #22c55e;
}
.neo-green-text {
  color: #22c55e;
}
.neo-green-bg:hover {
  background-color: #22c55e;
  color: #000;
}
a:hover {
  color: #22c55e;
}
p {
  margin: 1em 0;
  word-wrap: break-word;
  line-height: 1.6;
  overflow-wrap: break-word;
  hyphens: auto;
}
.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 8px;
  display: none;
  animation: slideUp 0.3s ease-out;
  font-weight: 700;
  user-select: none;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.7);
  z-index: 1000;
}