.terminal-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.terminal-window {
  background: var(--bg-black-900);
  color: var(--text-black-900);
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.5;
}

.terminal-header {
  background: var(--bg-black-50);
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.terminal-buttons {
  display: flex;
  gap: 6px;
}

.terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-btn.close { background: #ff5f56; }
.terminal-btn.minimize { background: #ffbd2e; }
.terminal-btn.maximize { background: #27c93f; }

.terminal-title {
  margin-left: 15px;
  color: var(--text-black-700);
  font-size: 12px;
}

.terminal-body {
  padding: 15px;
  min-height: 300px;
}

.terminal-line {
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.terminal-prompt {
  color: var(--skin-color);
  margin-right: 8px;
}

.terminal-command {
  color: var(--text-black-900);
}

.terminal-output {
  margin-top: 5px;
  padding-left: 20px;
}

.terminal-highlight {
  color: var(--skin-color);
  font-weight: bold;
}

.terminal-list {
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: '> ';
}

.terminal-list li {
  margin-bottom: 5px;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.terminal-grid span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.terminal-cursor {
  animation: blink 1s step-end infinite;
  color: var(--skin-color);
}

@keyframes blink {
  from, to { opacity: 1 }
  50% { opacity: 0 }
}