/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000000; /* pure black background */
  color: #ffffff; /* white text */
  line-height: 1.6;
}

/* Header & Footer */
header, footer {
  background-color: #1a1a1a; /* very dark gray */
  padding: 1.5em 1em;
  text-align: center;
}

header h1, footer p {
  color: #ff0000; /* bright red */
  font-weight: bold;
}

/* Navigation */
nav {
  background-color: #111111; /* nearly black */
  text-align: center;
  padding: 1em 0;
}

nav a {
  color: #ff0000; /* bright red */
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.2s ease;
}

nav a:hover,
nav a:focus {
  color: #ffffff; /* white on hover/focus */
}

/* Main Content */
main {
  padding: 2em;
}

section h2 {
  color: #ff0000; /* red headings */
  margin-bottom: 0.5em;
}

section p, section ul {
  margin-bottom: 1em;
  color: #eeeeee; /* light gray text for paragraphs */
}

ul {
  list-style: square inside;
  padding-left: 1em;
  color: #ff4d4d; /* softer red for list items */
}

/* Review Boxes */
.review {
  border: 1px solid #ff0000; /* red border */
  background-color: #111111; /* dark background */
  padding: 1em;
  margin-bottom: 1em;
  border-radi
