#portal-status {
    font-family: 'Courier New', Courier, monospace;
    color: #4af626; /* Terminal green */
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(74, 246, 38, 0.5);
    margin-bottom: 1.5rem;
    min-height: 1.5em;
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 0.6em;
    height: 1.2em;
    background-color: #4af626;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

