/* === loader.css === */
body {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

#loadingScreen {
    text-align: center;
}

.boot-sequence {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 600px;
    white-space: pre-line;
    color: #0f0;
}

.progress-bar {
    width: 80%;
    height: 10px;
    background: #111;
    border: 1px solid #0f0;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: #0f0;
    width: 0%;
    transition: width 0.4s ease-in-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
