/* ============================================================
   BOOT.CSS — Bootscreen + animaties
============================================================ */

#boot-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    animation: boot-fadeout 0.8s ease forwards;
    animation-delay: 1.4s;
}

.boot-center {
    text-align: center;
    animation: boot-fadein 0.8s ease;
}

.boot-logo {
    font-size: 42px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 0 12px rgba(255,255,255,0.4);
    animation: boot-glow 2s infinite ease-in-out;
}

.boot-loader {
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.boot-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 40%;
    background: white;
    border-radius: 4px;
    animation: boot-load 1.2s infinite ease-in-out;
}

@keyframes boot-load {
    0% { left: -40%; }
    50% { left: 60%; }
    100% { left: 120%; }
}

@keyframes boot-glow {
    0%, 100% { text-shadow: 0 0 12px rgba(255,255,255,0.4); }
    50% { text-shadow: 0 0 22px rgba(255,255,255,0.8); }
}

@keyframes boot-fadein {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes boot-fadeout {
    to { opacity: 0; visibility: hidden; }
}
