body {
  background-color: #0d0d0d; /* deep blackish background */
  font-family: "Share Tech Mono", monospace;
  color: white;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  color: #ff1c1c; /* bright futuristic red */
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  color: #ffcc00; /* bright yellow links */
  text-decoration: underline;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}

img {
  display: block;
  margin: 20px auto;
  border: 4px solid #ff1c1c; /* red border */
  border-radius: 12px;
  max-width: 90%;
  height: auto;
}

table {
  width: 90%;
  margin: 30px auto;
  border-collapse: collapse;
  background-color: #1a1a1a; /* dark background for table */
  box-shadow: 0 0 10px #ff1c1c;
}

th,
td {
  border: 2px solid #ffcc00; /* yellow borders */
  padding: 15px;
  color: white;
}

th {
  background-color: #262626; /* slightly lighter than background */
  color: #ffcc00;
  font-size: 1.1em;
}

.section {
  margin: 60px auto;
  width: 80%;
  max-width: 1000px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 28, 28, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  border: 2px solid #ff1c1c;
  border-radius: 20px;
  box-shadow: 0 0 15px #ff1c1c;
}

p {
  font-size: 1.1em;
  line-height: 1.8;
  margin: 20px 0;
}

hr {
  border: none;
  height: 2px;
  background: #ff1c1c;
  margin: 40px auto;
  width: 80%;
}

footer {
  margin-top: 50px;
  font-size: 0.9em;
  color: #888;
}
