/* Grundlayout */
body {
  margin: 0;
  background: #000;
  color: #0f0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
}

/* Terminal cursor */
.terminal-cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Terminal-Fenster */
.terminal-window {
  max-width: 800px;
  margin: 2rem auto;
  border: 2px solid #0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

/* Header mit Buttons */
.terminal-header {
  background: #111;
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
  display: inline-block;
}
.red    { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green  { background: #27c93f; }
.title {
  margin-left: auto;
  margin-right: auto;
  color: #0f0;
  font-weight: bold;
}

/* Body */
.terminal-body {
    padding: 1rem;
  background: #000;
}
.prompt {
  color: #0f0;
  margin: 1rem 0 0.5rem;
}

/* Bilder im Terminal */
.terminal-image {
  display: block;
  max-width: 100%;
  margin: 0.5rem 0 1rem;
  border: 1px solid #0f0;
  border-radius: 4px;
}

/* Listen & Projekte */
ul {
  list-style: none;
  padding-left: 1rem;
}
ul li::before {
  content: "▸ ";
  color: #0f0;
}
.projects {
  margin-top: 1rem;
}
.project-entry {
  margin-bottom: 1.5rem;
}
.project-entry strong {
  color: #aff;
}
.project-entry em {
  color: #0f0;
  font-style: normal;
}

/* Links und E-Mail */
a {
  color: #0ff;
  text-decoration: underline;
}
a:hover {
  color: #aff;
}

.output-group {
  margin-bottom: 1rem;
}
.hidden {
  display: none;
}
