* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #000;
    color: #33ff33;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.terminal {
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background-color: #2d2d2d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

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

.terminal-button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.close { background-color: #ff5f56; }
.minimize { background-color: #ffbd2e; }
.maximize { background-color: #27ca3f; }

.terminal-title {
    flex-grow: 1;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
}

.terminal-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    font-size: 18px;
    line-height: 1.5;
}

.terminal-prompt {
    color: #33ff33;
    margin-bottom: 10px;
}

.terminal-input {
    color: #33ff33;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.prompt-user {
    color: #33ff33;
    font-weight: bold;
}

.prompt-at {
    color: #fff;
}

.prompt-host {
    color: #ff3399;
    font-weight: bold;
}

.prompt-path {
    color: #3399ff;
    font-weight: bold;
}

.prompt-dollar {
    color: #33ff33;
    margin: 0 10px;
}

.command {
    color: #fff;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background-color: #33ff33;
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

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

.output {
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #33ff33;
    white-space: nowrap;
    margin: 0;
    letter-spacing: 1px;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #33ff33; }
}

.green-text {
    color: #33ff33;
}

.blue-text {
    color: #3399ff;
}

.cyan-text {
    color: #33ffff;
}

.yellow-text {
    color: #ffff33;
}

.magenta-text {
    color: #ff33ff;
}

.white-text {
    color: #ffffff;
}

.pgp-text {
    color: #ff9933;
    font-size: 14px;
    word-break: break-all;
}

.highlight {
    background-color: #003300;
    padding: 2px 5px;
    border-radius: 3px;
}

.contact-info {
    margin: 10px 0;
    padding-left: 20px;
}

.contact-label {
    color: #3399ff;
    min-width: 120px;
    display: inline-block;
}

.footer {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #333;
    background-color: #1a1a1a;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .terminal {
        width: 95%;
        height: 90vh;
    }
    
    .terminal-body {
        font-size: 16px;
        padding: 15px;
    }
    
    .contact-label {
        min-width: 100px;
        font-size: 16px;
    }
    
    .pgp-text {
        font-size: 12px;
    }
}