/* Boot Screen */
#boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: boot-fade-in 0.5s ease-out;
}

@keyframes boot-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.boot-content {
    text-align: center;
    margin-bottom: 40px;
}

.boot-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary); }
    50% { text-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary), 0 0 80px var(--primary); }
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 5px;
    letter-spacing: 3px;
}

.boot-loader {
    width: 300px;
    margin: 0 auto;
}

.boot-bar {
    height: 4px;
    background: var(--bg-medium);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.boot-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

.boot-status {
    font-size: 0.75rem;
    color: var(--text-dim);
}

#boot-log {
    position: fixed;
    top: 2px;
    left: 2px;
    background: transparent;
    opacity: 0.7;
}
