body {
  background: #111;
  color: #00ff00;
  font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminal {
  background: #222;
  border-radius: 10px;
  box-shadow: 0 0 40px #00ff00a0;
  width: 900px;
  max-width: 98vw;
  padding: 0 0 32px 0;
  overflow: hidden;
}

.terminal-header {
  background: #111;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 2px solid #00ff0033;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.terminal-title {
  margin-left: 16px;
  font-weight: bold;
  color: #00ff00;
  font-size: 1.2em;
  letter-spacing: 2px;
}

.ascii-art {
  color: #00ff00;
  font-size: 1.1em;
  margin: 24px 0 0 0;
  text-shadow: 0 0 8px #00ff0099;
}

.terminal-content {
  padding: 24px 32px 0 32px;
}

.terminal-content h1 {
  color: #00ff00;
  font-size: 2em;
  margin: 0 0 12px 0;
}

.terminal-content p {
  color: #00ff00cc;
  font-size: 1.1em;
  margin: 0;
}
