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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulsePlaceholder {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

.cursor-blink {
    width: 8px;
    height: 16px;
    background-color: #4ade80;
    display: inline-block;
    animation: blink 1s infinite;
}

.terminal-container {
    background-color: #000;
    color: #4ade80;
    font-family: 'Courier New', monospace;
}

.terminal-content {
    scrollbar-width: thin;
    scrollbar-color: #4ade80 #1f2937;
    padding: 1rem;
    height: calc(100vh - 60px);
    overflow-y: auto;
    margin-bottom: 60px;
}

.terminal-content::-webkit-scrollbar {
    width: 8px;
}

.terminal-content::-webkit-scrollbar-track {
    background: #1f2937;
}

.terminal-content::-webkit-scrollbar-thumb {
    background-color: #4ade80;
    border-radius: 4px;
}

.banner {
    animation: fadeIn 1s ease-out;
}

.boot-line {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-out;
}

.command-history {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.command-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    animation: slideUp 0.3s ease-out;
    white-space: pre-wrap;
    word-break: break-word;
}

.command-line span {
    display: inline-block;
    margin-right: 0.5rem;
}

.terminal-input {
    background-color: #000;
    border-top: 1px solid #1f2937;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
}

.terminal-input input {
    caret-color: #4ade80;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    caret-shape: block;
}

.terminal-input input::placeholder {
    color: #4ade80;
    opacity: 0.5;
    animation: pulsePlaceholder 2s infinite;
}

pre {
    margin: 0;
    white-space: pre;
    font-family: 'Courier New', monospace;
    line-height: 1.2;
}