/* ── Splash / Boot screen ── */
#contentloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.splash-logo {
    color: #fff;
    font-family: 'Pixelated MS Sans Serif', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 0 #008080;
}

.splash-sub {
    color: #888;
    font-family: 'Pixelated MS Sans Serif', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

/* Win98-style progress bar */
.splash-progress-wrap {
    width: 200px;
    height: 18px;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080;
    background: #c0c0c0;
    padding: 2px;
}

.splash-progress-inner {
    height: 100%;
    background: #000080;
    width: 0%;
    transition: width 0.1s linear;
}

.splash-hint {
    color: #555;
    font-family: 'Pixelated MS Sans Serif', Arial, sans-serif;
    font-size: 10px;
    margin-top: 12px;
    letter-spacing: 1px;
}

/* Destroyed state */
.destroyedloader {
    opacity: 0;
    pointer-events: none;
}