#boot {
    position: fixed;
    inset: 0;
    background: #0d0008;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.boot-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(14px, 3vw, 32px);
    color: var(--pink);
    text-shadow: 0 0 30px #f7258588;
    margin-bottom: 10px;
    animation: flicker 3s infinite;
}

.boot-sub {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: #ffb3d1;
    margin-bottom: 32px;
}

.boot-bwrap {
    width: 260px;
    height: 14px;
    border: 2px solid var(--pink);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.boot-bfill {
    height: 100%;
    background: var(--pink);
    width: 0%;
    border-radius: 20px;
    transition: width .3s;
}

.boot-msg {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #ff99cc;
}
