/* ==========================
   SPIDERMASTER STATS BOOT
   DARK BLUE SENTINEL STYLE
========================== */

#sm-boot {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0a1a2f 0%, #050b14 70%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    color: #7fb9ff;
}

.sm-boot-core {
    text-align: center;
}

.sm-boot-logo {
    width: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 18px #2b7cff);
    animation: pulse 1.6s infinite;
}

.sm-boot-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #9fd0ff;
}

.sm-boot-sub {
    font-size: .8rem;
    opacity: .7;
    margin-top: 6px;
}

.sm-boot-bar {
    width: 260px;
    height: 6px;
    background: #0a2440;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px auto 0;
}

.sm-boot-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,#2b7cff,#7fb9ff);
    animation: smBootLoad 3.5s linear forwards;
}

@keyframes smBootLoad {
    to { width: 100%; }
}

@keyframes pulse {
    0%,100% { opacity:.4 }
    50% { opacity:1 }
}

.sm-boot-hide {
    animation: smBootOut .9s ease forwards;
}

@keyframes smBootOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
