body {
  margin: 0;
  padding: 0;
  background-image: url('command_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Courier New', Courier, monospace;
  color: #33ff33;
  font-size: 1.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.terminal {
  background-color: #111;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 20px #0f0;
  max-width: 800px;
  width: 90%;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.5;
}

.download-container {
  margin-top: 2em;
  text-align: center;
}

.download-link {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #00ffff;
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.download-link:hover {
  background: #00ffff;
  color: #000;
}
