body {
  background-color: #121212;
  color: #00ffcc;
  font-family: "Courier New", Courier, monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 20px;
}
h1 {
  color: #ffcc00;
  text-shadow: 2px 2px #cc0000;
}
#game-container {
  width: 800px;
  max-width: 100%;
  background-color: #1e1e1e;
  border: 4px solid #ffcc00;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(255, 204, 0, 0.2);
}
#story-box {
  height: 120px;
  background-color: #000;
  border: 1px solid #00ffcc;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.5;
  overflow-y: auto;
}
.controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
button {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 1.1em;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.2s;
}
button:hover {
  background-color: #ccaa00;
  transform: scale(1.05);
}
#stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}
.crew-text {
  color: #ff99cc;
}
