#boot-screen {
    position: fixed;
    inset: 0;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

#boot-screen.hide {
    opacity: 0;
    pointer-events: none;
}


.boot-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}


.boot-logo {
    width: 170px;
    height: auto;
    position: relative;
    z-index: 1;
}


.boot-loadbar {
    display: flex;
    gap: 4px;
    width: 220px;
    height: 12px;
    position: relative;
    z-index: 1;
    padding: 2px;
    border: 2px solid;
    border-color: whitesmoke;
    border-radius: 4px;
    overflow: hidden;
}


.boot-status {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}


.boot-glow {
    position: absolute;
    top: 85px;
    left: 50%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: conic-gradient(
        #f25022 0deg 90deg,
        #7fba00 90deg 180deg,
        #00a4ef 180deg 270deg,
        #ffb900 270deg 360deg
    );
    filter: blur(35px);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
    z-index: 0;
    animation: bootGlowPulse 2.5s ease-in-out infinite;
}

@keyframes bootGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.55;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.15;
    }
}


.boot-loadbar-segment {
    flex: 1;
    height: 100%;
    background-color: #32a7f5;
    opacity: 0.15;
    animation: bootPulse 1s ease-in-out infinite;
}

.boot-loadbar-segment:nth-child(1),
.boot-loadbar-segment:nth-child(2) { animation-delay: 0s; }

.boot-loadbar-segment:nth-child(3),
.boot-loadbar-segment:nth-child(4) { animation-delay: 0.15s; }

.boot-loadbar-segment:nth-child(5),
.boot-loadbar-segment:nth-child(6) { animation-delay: 0.3s; }

.boot-loadbar-segment:nth-child(7),
.boot-loadbar-segment:nth-child(8) { animation-delay: 0.45s; }


@keyframes bootPulse {
    0%, 100% { opacity: 0.15; }
    50% {opacity: 1;}
}



