body {
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #00ff41; /* Classic Terminal Green */
    font-family: 'Courier New', Courier, monospace;
}

.terminal-window {
    width: 90%;
    max-width: 900px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    overflow: hidden;
    border: 1px solid #333;
}

.terminal-bar {
    background: #333;
    padding: 10px;
    display: flex;
    align-items: center;
}

.buttons span {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.close { background: #ff5f56; }
.minimize { background: #ffbd2e; }
.maximize { background: #27c93f; }

.title {
    color: #bbb;
    flex-grow: 1;
    text-align: center;
    font-size: 0.8em;
}

.terminal-body {
    padding: 25px;
    min-height: 300px;
    line-height: 1.6;
}

.prompt { color: #ff00ff; font-weight: bold; } /* Pink Prompt */

.project-list {
    list-style: none;
    padding-left: 20px;
}

.project-list a {
    color: #00ff41;
    text-decoration: none;
    border-bottom: 1px dashed #00ff41;
}

.project-list a:hover {
    background: #00ff41;
    color: #000;
}

.cursor {
    font-weight: bold;
    animation: blink 1s infinite;
}

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

