#terminal-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 400px;
    max-width: 90vw;
    height: 250px;
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(25, 255, 25, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #33ff33;
    z-index: 9999;
    display: none;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

@media (max-width: 600px) {
    #terminal-overlay {
        right: 5%;
        left: 5%;
        width: auto;
        top: 60px;
    }
}

.term-line {
    margin: 2px 0;
    opacity: 0;
    animation: fadeIn 0.1s forwards;
}

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

.blink {
    animation: blink 1s infinite;
}

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