body {
    background-color: black;
    color: #33ff33;
    font-family: monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 1em;
    line-height: 1;
    text-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
    letter-spacing: 0.125em;
    animation-duration: 0.6s;
    animation-name: textflicker;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header img {
    max-width: 150px;
    margin-bottom: 10px;
}

pre {
    font-size: 16px;
    line-height: 1.4;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

#terminal {
    width: 80%;
    max-width: 1900px;
    border: 2px solid #33ff33;
    padding: 20px;
    overflow-y: auto;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #33ff33 #121212;
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.2);
}

#output {
    flex-grow: 1;
}

#input-line {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

#prompt,
#cursor {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #33ff33;
    font-family: monospace;
}

#command-input {
    background-color: #121212;
    color: #33ff33;
    border: none;
    font-family: monospace;
    outline: none;
    margin-top: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    animation-duration: 0.6s;
    animation-name: textflicker;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#command-input::placeholder {
    color: #fff; /* Texte du placeholder en blanc */
    opacity: 0.7; /* Légèrement transparent pour garder un effet subtil */
}

#terminal::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#terminal::-webkit-scrollbar-thumb {
    background-color: #33ff33;
    border-radius: 10px;
    border: 2px solid #121212;
}

#terminal::-webkit-scrollbar-track {
    background: #121212;
    border-radius: 10px;
}

/* Media Query pour améliorer la responsivité */
@media (max-width: 768px) {
    #terminal {
        width: 95%;
        font-size: 0.9em;
    }
    header img {
        max-width: 100px;
    }
}

@keyframes textflicker {
    from {
        text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
    }
    to {
        text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
    }
}

