body {
  background-color: #0f0f0f;
  font-family: 'Fira Code', monospace;
  color: #00ff6a;
  margin: 0;
  padding: 0;
}

.terminal {
  max-width: 900px;
  margin: 50px auto;
  border: 1px solid #00ff6a;
  background-color: #121212;
  box-shadow: 0 0 30px #00ff6a33;
}

.terminal-header {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 10px;
  border-bottom: 1px solid #00ff6a;
}

.red-dot, .yellow-dot, .green-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.red-dot { background-color: #ff605c; }
.yellow-dot { background-color: #ffbd44; }
.green-dot { background-color: #00ca4e; }

.title {
  margin-left: auto;
  color: #ccc;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 20px;
  font-size: 0.95rem;
}

.prompt {
  color: #00bcd4;
  font-weight: bold;
}

ul {
  list-style-type: none;
  margin-left: 1.2rem;
}

ul li::before {
  content: "➤ ";
  color: #ff3c00;
  margin-right: 5px;
}

a {
  color: #00ff6a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #00ff6a;
  width: 0;
  animation: typing 2.5s steps(40, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent; }
}
.btn-download {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #00ff6a;
  color: #121212;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 10px;
}
.btn-download:hover {
  background-color: #00c851;
}
