/* ═══════════════════════════════════════════════
   BELLUCCI | HUD TERMINAL — persistent live log
   Sits bottom-left, above footer, on main screen
   ═══════════════════════════════════════════════ */

#hud-terminal {
    position: fixed;
    bottom: 100px;
    /* above the footer */
    left: 48px;
    width: 280px;
    max-height: 160px;
    /* vertical limit — stays below grid area */
    overflow: hidden;
    z-index: 25;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* newest line always at bottom */
    gap: 2px;
}

.ht-line {
    font-family: var(--font-tech);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Slight left-border for terminal feel */
#hud-terminal::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hidden on mobile — no hover events on touch */
@media (max-width: 768px) {
    #hud-terminal {
        display: none !important;
    }
}