/* ============================================
   HACKER BOOT SCREEN / LOADING
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-screen canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.boot-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 600px;
    font-family: 'Share Tech Mono', monospace;
}

.boot-lines {
    color: var(--primary, #00ff41);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 200px;
}

.boot-line {
    opacity: 0;
    animation: bootFadeIn 0.3s forwards;
}

.boot-line .status {
    color: #666;
    margin-left: 10px;
}

.boot-line .status.ok {
    color: var(--primary, #00ff41);
}

.boot-line .status.warn {
    color: #ffaa00;
}

@keyframes bootFadeIn {
    to { opacity: 1; }
}

.boot-progress {
    width: 100%;
    height: 3px;
    background: #111;
    border: 1px solid var(--primary, #00ff41);
    border-radius: 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary, #00ff41);
    box-shadow: 0 0 10px var(--primary, #00ff41);
    transition: width 0.1s linear;
}

.boot-percentage {
    text-align: right;
    color: var(--primary, #00ff41);
    font-size: 12px;
    margin-top: 8px;
    font-family: 'Share Tech Mono', monospace;
}
