/* System Loader - Integrated Style */
#hacker-loader {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--black, #000000);
    border-top: 1px solid var(--white, #ffffff);
    padding: 8px 15px;
    color: var(--white, #ffffff);
    font-family: 'Roboto Mono', monospace;
    font-size: 9px;
    line-height: 1.4;
    z-index: 1000000;
    pointer-events: none;
    display: none; /* Hidden by default */
    text-transform: uppercase;
    height: 30px; /* Fixed height bar */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hacker-loader.visible {
    display: flex !important;
}

#loader-content {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.log-line {
    opacity: 0;
    animation: fadeIn 0.2s forwards;
    color: #888; /* Dimmed history */
}

.log-line:last-child {
    color: var(--white, #ffffff); /* Active line white */
    font-weight: bold;
}

/* Status Indicator - HIDDEN */
.loader-status {
    display: none;
}

.blink-cursor {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: #af1d1f; /* Site Red */
    animation: blink 1s step-end infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(2px); }
    to { opacity: 1; transform: translateY(0); }
}