@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&display=swap');

body {
    background: #0c0c0c;
    color: #e5e5e5;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "JetBrains Mono", monospace;
}

.terminal {
    width: 80%;
    max-width: 900px;
    background: #111;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.header {
    padding: 12px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

#terminal-output {
    padding: 20px;
    white-space: pre-wrap;
    font-size: 1rem;
}

/* --- Footer (am unteren Rand fixiert) --- */
.legal-footer {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    color: #666;
    opacity: 0.6;
    pointer-events: auto; /* Klickbar lassen */
}

.legal-footer a {
    color: #777;
    text-decoration: none;
}

.legal-footer a:hover {
    color: #aaa;
    text-decoration: underline;
}