@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    background-color: #0d0d0d;
    color: #00ff41;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    margin: 0;
    padding: 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.terminal-window {
    width: 90%;
    max-width: 800px;
    height: auto;
    background: rgba(0, 20, 0, 0.85);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    backdrop-filter: blur(3px);
    position: relative;
    overflow: hidden;
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-image: url('https://i.postimg.cc/Dy8gLvMs/image-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: -1; /* Coloca a imagem de fundo atrás do conteúdo */
}


.terminal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #00ff41;
    color: #ffffff;
}

#output {
    white-space: pre-wrap;
    word-wrap: break-word;
    height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00ff41 #0d0d0d;
}

#output::-webkit-scrollbar {
    width: 8px;
}
#output::-webkit-scrollbar-track {
    background: #0d0d0d;
}
#output::-webkit-scrollbar-thumb {
    background-color: #00ff41;
    border-radius: 4px;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2rem;
    background-color: #00ff41;
    animation: blink 1s step-end infinite;
    margin-left: 5px;
}

@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #00ff41 }
}

.ok {
    color: #00ff41;
}
.warning {
    color: #ffd700;
}
.error {
    color: #ff4136;
}
.info {
    color: #7fdbff;
}
.timestamp {
    color: #008f11;
}
.akeno-comment {
    color: #b0b0b0;
    font-style: italic;
}

