/* Boot Screen Styles */

.boot-screen {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
}

.boot-text {
    font-family: var(--font-terminal);
    font-size: 16px;
    color: #c0c0c0;
    white-space: pre-wrap;
    line-height: 1.4;
    overflow-y: auto;
    max-height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.boot-text::-webkit-scrollbar {
    display: none;
}

.boot-text .cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #c0c0c0;
    animation: blink 0.5s infinite;
}

.boot-text .success {
    color: #00ff00;
}

.boot-text .error {
    color: #ff0000;
}

.boot-text .warning {
    color: #ffff00;
}

.boot-text .info {
    color: #00ffff;
}

/* Logo Screen */
.logo-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000080 0%, #0000aa 50%, #000080 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-container {
    text-align: center;
    color: white;
}

.logo-text {
    font-family: var(--font-system);
    font-size: 72px;
    font-weight: bold;
    text-shadow: 4px 4px 0 #000040, 8px 8px 0 rgba(0,0,0,0.3);
    letter-spacing: 8px;
    margin-bottom: 8px;
}

.logo-subtitle {
    font-family: var(--font-system);
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 4px;
    margin-bottom: 4px;
    color: #c0c0c0;
}

.logo-version {
    font-family: var(--font-system);
    font-size: 14px;
    color: #808080;
    margin-bottom: 40px;
}

.logo-loading {
    width: 300px;
}

.loading-bar {
    width: 100%;
    height: 24px;
    background: #000040;
    border: 2px solid;
    border-color: #000000 #0000cc #0000cc #000000;
    padding: 3px;
}

.loading-fill {
    height: 100%;
    width: 0%;
    background: repeating-linear-gradient(
        90deg,
        #0080ff 0px,
        #0080ff 8px,
        #00a0ff 8px,
        #00a0ff 16px
    );
    transition: width 0.1s linear;
}

.loading-text {
    margin-top: 12px;
    font-size: 12px;
    color: #808080;
}

/* Boot progress animation */
@keyframes boot-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.boot-screen,
.logo-screen {
    animation: boot-flicker 0.1s infinite;
}
