body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #00ff00;
    margin: 0;
    padding: 20px 20px 40px;
    line-height: 1.6;
    animation: fadeIn 1s ease-in;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #00ff00;
    padding: 20px;
    border-radius: 20px;
    background-color: #111;
    animation: slideUp 1s ease-out 0.5s both;
    box-shadow: 0 0 20px #00ff00;
}
h1 {
    text-align: center;
    color: #00ff00;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
    animation: glow 0.5s ease-in-out infinite alternate;
}
.project-list {
    list-style: none;
    padding: 0;
}
.project-item {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 20px;
    background-color: #222;
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out both;
    animation-delay: calc(var(--i) * 0.2s + 1s);
}
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    border-color: #00ff00;
}
.project-title {
    font-size: 1.2em;
    color: #ffff00;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.project-desc {
    margin-bottom: 10px;
    color: #ccc;
    transition: color 0.3s ease;
}
.project-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #333;
    color: #00ff00;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #00ff00;
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-link:hover {
    background-color: #00ff00;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 10px #00ff00;
}
.terminal {
    background-color: #000;
    border: 2px solid #333;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    margin: 20px 0;
    overflow: hidden;
    animation: terminalGlow 1.0s ease-in-out infinite alternate;
}
.terminal-header {
    background-color: #333;
    color: #00ff00;
    padding: 5px 60px;
    font-size: 0.9em;
    border-bottom: 1px solid #00ff00;
    position: relative;
}
.terminal-header::before {
    content: '● ● ●';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff00;
    font-size: 0.8em;
}
.code-block {
    background-color: #000;
    padding: 15px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    position: relative;
    animation: fadeIn 0.5s ease-in 0.5s both;
    max-height: 300px;
    overflow-y: auto;
}
.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background-color: #00ff00;
    animation: blink 1s infinite;
    color: transparent;
}
.prompt {
    color: #00ff00;
}
.user-input {
    color: #ffff00;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes glow {
    from { text-shadow: 0 0 5px #00ff00; }
    to { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00; }
}
@keyframes terminalGlow {
    from { box-shadow: 0 0 20px rgba(0, 255, 0, 0.5); }
    to { box-shadow: 0 0 30px rgba(0, 255, 0, 0.8); }
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    height: 20px;
    background-color: #000;
    color: #00ff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 20px;
    font-size: 0.8em;
    border-top: 1px solid #00ff00;
    z-index: 1000;
}
@keyframes blink {
    0%, 50% { visibility: visible; }
    51%, 100% { visibility: hidden; }
}