body {
  background-color: #111;
  color: #f5f5f5;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Narrative box */
#narrative {
  background-color: #1a1a1a;
  border-left: 4px solid #555;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  white-space: pre-wrap;
  box-shadow: 0 0 10px #222;
}

/* Choices (button group) */
#choices button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 1rem;
  background-color: #333;
  color: #f5f5f5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#choices button:hover {
  background-color: #444;
}

/* Footer navigation (optional) */
#footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #999;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  #narrative {
    padding: 15px;
    font-size: 1rem;
  }

  #choices button {
    padding: 10px;
    font-size: 0.95rem;
  }
}
