/* Reset & base */

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #ddd;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
}

a {
  color: #99aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Top Bar */

.topbar {
  background-color: #111;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar h1 {
  margin: 0;
  color: #eee;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 1rem;
  color: #bbb;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #fff;
  border-bottom: 2px solid #99aaff;
  padding-bottom: 2px;
}

/* Main container */

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

h1, h2, h3 {
  color: #fff;
  margin-bottom: 10px;
}

h2 {
  border-bottom: 1px solid #222;
  padding-bottom: 6px;
}

blockquote {
  font-style: italic;
  color: #777;
  margin: 0 0 30px 0;
  border-left: 3px solid #444;
  padding-left: 15px;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Lists */

ul, ol, dl {
  margin-left: 20px;
}

.notes-list li {
  margin-bottom: 15px;
  font-style: italic;
  color: #888;
}

/* Tables */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border-bottom: 1px solid #222;
  padding: 14px 12px;
  vertical-align: top;
}

th {
  color: #999;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

td {
  font-size: 0.95rem;
  color: #ccc;
}

td a {
  color: #99aaff;
}

td a:hover {
  text-decoration: underline;
}

/* Warnings */

.warning-section {
  background-color: #220000;
  border: 1px solid #660000;
  color: #ff5555;
  padding: 20px;
  margin-top: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1rem;
}

/* Footer and disclaimer */

footer, .disclaimer-section {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* Notes */

.note {
  color: #666;
  font-size: 0.9rem;
  margin-top: 30px;
  font-style: italic;
}
.entry-header {
  margin-bottom: 20px;
}
.status {
  color: #6699cc;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}
.section-title {
  border-bottom: 1px solid #333;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #eee;
}
.quote {
  font-style: italic;
  color: #777;
  margin: 20px 0 30px 0;
  border-left: 3px solid #444;
  padding-left: 15px;
}
.image-placeholder {
  width: 100%;
  height: 200px;
  background: #111;
  border: 1px solid #333;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-style: italic;
  font-size: 1.2rem;
  user-select: none;
}
.redacted {
      background-color: #222;
      color: #222;
      padding: 0 5px;
      border-radius: 2px;
      letter-spacing: 0.15em;
      font-weight: bold;
}