body {
  background-color: #000;
  color: #ccc; /* soft light gray */
  font-family: 'Share Tech Mono', monospace;
  line-height: 1.6;
  max-width: 1050px;
  margin: 0 auto;
  padding: 2rem;
}


hr {
  border: none;
  border-top: 1px solid #00ff88;
  margin: 2rem 0;
  opacity: 0.3;
}


h1 {
  font-family: 'Courier New', Courier, monospace;
  color: #00ff88;
  text-shadow:
    0 0 1px #00ff88,
    0 0 2px #00ff88,
    0 0 4px #00ff88;
}


h2 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  font-weight: 600;
  color: #00ff88;
  text-shadow:
    0 0 1px #00ff88,
    0 0 2px #00ff88;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}


h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ccc;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #bbb;
}


a {
  color: #00ff88;
  font-family: 'Courier New', Courier, monospace;
font-size: 1.1rem;
  font-weight: 600;
  text-shadow:
    0 0 1px #00ff88,
    0 0 2px #00ff88;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


code {
  background-color: transparent;
  color: #00ff88;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  padding: 0;
  border-radius: 0;
  box-shadow: none;

  text-shadow:
    0 0 1px #00ff88,
    0 0 2px #00ff88,
    0 0 4px #00ff88;
}


blockquote {
  border-left: 4px solid #444;
  color: #bbb;
}

/* === Donation Table Styles === */

.donation-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.donation-table th {
  text-align: left;
  vertical-align: top;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
}

.donation-table td {
  vertical-align: top;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
}

.donation-table code {
  word-break: break-word;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}



