* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.ascii-art {
    margin-bottom: 20px;
    font-size: 16px;
    overflow: hidden;
    animation: fadeIn 1s ease-in;
    width: 100%;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    margin: 5px 0;
}

.scroll-text {
    display: inline-block;
    white-space: nowrap;
}

.scroll-text span {
    display: inline-block;
}

.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

.scroll-right {
    animation: scrollRight 20s linear infinite;
}

.prompt {
    margin-top: 15px;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeInSlide 0.5s ease-out forwards;
}

.user {
    color: #000000;
    font-weight: bold;
}

.path {
    color: #000000;
    font-weight: bold;
}

.output {
    margin-left: 0;
    margin-bottom: 10px;
    opacity: 0;
}

.output.show {
    animation: typeIn 0.3s ease-out forwards;
}

.output p {
    margin-bottom: 5px;
}

a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    background-color: #000000;
    color: #ffffff;
}

.cursor {
    animation: blink 1s infinite;
}

#command-input {
    background: transparent;
    border: none;
    color: #000000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    outline: none;
    width: calc(100% - 200px);
    padding: 0;
    margin: 0;
}

#command-input::selection {
    background: #000000;
    color: #ffffff;
}

.input-line {
    opacity: 1 !important;
    animation: none !important;
}

#terminal-output .prompt {
    opacity: 1;
    animation: none;
}

.help-prompt {
    animation-delay: 3.8s !important;
}

.help-hint {
    color: #666666;
    font-style: italic;
}

.clickable-command {
    background-color: #000000;
    color: #ffffff;
    padding: 2px 4px;
    cursor: pointer;
    font-style: normal;
}

.clickable-command:hover {
    background-color: #ffffff;
    color: #000000;
    outline: 2px solid #000000;
}

.ticker-scroll {
    font-size: 14px;
    font-weight: bold;
}

.positive {
    color: #008000;
}

.negative {
    color: #ff0000;
}

.output strong {
    font-weight: bold;
}

.output em {
    font-style: italic;
}

.output code {
    background-color: #f0f0f0;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

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

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

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.prompt:nth-of-type(1) {
    animation-delay: 0.5s;
}

.prompt:nth-of-type(3) {
    animation-delay: 1.5s;
}

.prompt:nth-of-type(5) {
    animation-delay: 2.5s;
}

.prompt:nth-of-type(7) {
    animation-delay: 3.5s;
}

@media (max-width: 600px) {
    body {
        font-size: 12px;
    }

    .ascii-art {
        font-size: 12px;
    }
}