body { 
    margin: 0; 
    background-color: #000; 
    overflow: hidden; 
    font-family: 'Courier New', Courier, monospace; 
}

#status-tile {
    position: absolute;
    top: 20px;
    right: 

20px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #0f8;
    color: #0f8;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 8px #0f8;
    transition: all 0.3s ease;
}

/* Адаптив для мобилок (превращаем в ленту сверху) */
@media (max-width: 600px) {
    #status-tile {
        top: 0;
        right: 0;
        left: 0;
        text-align: center;
        font-size: 11px;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #0f8;
    }
}
