.boot {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    min-height: 100vh;
    background: #03130b url('/mgb-splash-bg.png') center / cover no-repeat;
    color: #a8f2c4;
}

.boot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0 33%, rgba(1, 12, 7, .08) 62%, rgba(1, 9, 5, .28) 100%);
    pointer-events: none;
}

.boot-status {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 67%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    color: #a8f2c4;
}

.boot-status span {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(168, 242, 196, .28);
    border-top-color: #0ed957;
    border-radius: 50%;
    animation: boot-spin .8s linear infinite;
}

.boot-status small {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .04em;
}

@keyframes boot-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 700px) {
    .boot { background-position: center; }
    .boot-status { top: 64%; }
}
