body {
  font-family: "Fira Code", monospace;
  background: #0a0f14;
  color: #d1fae5;
  margin: 0;
  padding: 0;
}

.terminal-section {
  padding: 60px 20px;
}

.container {
  max-width: 950px;
  margin: 0 auto;
}

.title {
  color: #10b981;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.subtitle {
  color: #6ee7b7;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.domain-section {
  color: #a7f3d0;
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.domain-section ul {
  list-style: none;
  padding-left: 1em;
}

.domain-section li::before {
  content: "▸ ";
  color: #10b981;
  margin-right: 4px;
}

.terminal-line {
  background: #0f172a;
  border-left: 3px solid #10b981;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.terminal-line:hover {
  background: #111c2d;
}

.terminal-line .details {
  display: none;
  color: #d1d5db;
  font-size: 0.9rem;
  margin-top: 8px;
  margin-left: 22px;
  line-height: 1.5;
}

.terminal-line.open .details {
  display: block;
  animation: fadein 0.3s ease;
}

.prompt {
  color: #10b981;
  margin-right: 8px;
}

.cmd {
  color: #34d399;
  font-weight: 600;
}

.stack {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-top: 4px;
  margin-left: 22px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}

.pagination button {
  background: none;
  border: 1px solid #10b981;
  color: #10b981;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination button:hover {
  background: #10b981;
  color: #0a0f14;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.footer-line {
  color: #6ee7b7;
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.7;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}
