.TitleBar{
    position: fixed;       
    top: 0;
    left: 0
    right: 0;
    width: 100%;
    height: 48px;          
    background: #0d0d0d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
    z-index: 1000;         
    user-select: none;    
    transition:transform 0.4s ease;
}
.TitleBar.is-hidden{
    transform: translateY(-100%);
}
.TitleBar_logo{
    color: #00ff88;      
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 0 0 8px #00ff88;
}

.TitleBar_status{
    color: #00ff88;
    font-size: 12px;
    animation: blink 1.5s step-end infinite;
}

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