/* Base body styling */
body {
  background-color: #222222;
  color: #eaeaea;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.7;
}

/* Pixel font only for headings */
h1, h2, h3, .title {
  font-family: 'Press Start 2P', cursive;
}

/* Make paragraph text easier to read */
p {
  font-size: 1rem;
  color: #dddddd;
  max-width: 70ch;   /* prevents super-wide text lines */
}

/* Lists also readable */
li {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Larger side margins */
.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Centered header */
.site-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.site-header h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.subtitle {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Slightly soften NES dark containers */
.nes-container.is-dark {
  background-color: #2a2a2a;
  border-color: #555;
  color: #eaeaea;
}

/* Title styling inside NES containers */
.nes-container .title {
  color: #ffffff;
}