/* ============================================================
   BOOT SCREEN
   Phase 1: DOS/BIOS text screen
   Phase 2: Windows 95 splash screen with progress bar
   ============================================================ */

#boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #000000;
    cursor: default;
    user-select: none;
}

#boot-screen.fade-out {
    animation: boot-fade-out 0.4s ease-out forwards;
    pointer-events: none;
}

@keyframes boot-fade-out {
    to { opacity: 0; }
}

/* ============================================================
   PHASE 1: DOS POST SCREEN
   ============================================================ */

#boot-dos {
    position: absolute;
    inset: 0;
    background: #000000;
    color: #ffffff;
    font-family: var(--win95-font);
    font-size: 15px;
    line-height: 1.5;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
}

#boot-dos-text {
    flex: 1;
    white-space: pre;
}

#boot-click-prompt {
    color: #c0c0c0;
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 14px;
    margin-top: 8px;
    animation: blink-cursor 1s steps(2, start) infinite;
}

@keyframes blink-cursor {
    to { opacity: 0; }
}

/* ============================================================
   PHASE 2: WIN95 SPLASH SCREEN
   Wallpaper image, no progress bar
   ============================================================ */

#boot-splash {
    position: absolute;
    inset: 0;
    background: #000 url('../assets/icons/wallpaper.png') center center / cover no-repeat;
}

#boot-progress-track,
#boot-progress-bar {
    display: none;
}
