#bss-loader {
    position: fixed;
    inset: 0;
    background: #050714;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#bss-loader::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211,67,242,.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: bss-glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}
#bss-loader::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,200,255,.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: bss-glow-pulse 3s ease-in-out infinite reverse;
    animation-delay: -1.5s;
    pointer-events: none;
}
@keyframes bss-glow-pulse {
    0%, 100% { transform: scale(1);   opacity: .6; }
    50%       { transform: scale(1.4); opacity: 1; }
}
#bss-loader img {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    animation: bss-logo-in 0.7s cubic-bezier(.22,1,.36,1) both,
               bss-logo-pulse 2.5s ease-in-out 0.7s infinite;
}
@keyframes bss-logo-in {
    from { opacity: 0; transform: translateY(-18px) scale(.85); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bss-logo-pulse {
    0%, 100% { filter: brightness(0) invert(1) drop-shadow(0 0 0px #d343f2); }
    50%       { filter: brightness(0) invert(1) drop-shadow(0 0 14px #d343f2); }
}
#bss-loader .pl-spin {
    position: relative;
    width: 56px;
    height: 56px;
    z-index: 1;
}
#bss-loader .pl-spin::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(211,67,242,.2);
    border-top-color: #d343f2;
    animation: bss-spin 0.9s linear infinite !important;
}
#bss-loader .pl-spin::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid rgba(0,200,255,.2);
    border-bottom-color: #00c8ff;
    animation: bss-spin-rev 1.3s linear infinite !important;
}
@keyframes bss-spin     { to { transform: rotate(360deg); } }
@keyframes bss-spin-rev { to { transform: rotate(-360deg); } }
#bss-loader .pl-txt {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 24px;
    font-family: Montserrat, sans-serif;
    position: relative;
    z-index: 1;
    animation: bss-txt-in 0.6s ease 0.4s both;
    opacity: 0;
}
#bss-loader .pl-txt::after {
    content: '|';
    margin-left: 3px;
    animation: bss-cursor 1s step-end infinite;
    opacity: .7;
}
@keyframes bss-txt-in {
    from { opacity: 0; letter-spacing: .35em; }
    to   { opacity: .85; letter-spacing: .18em; }
}
@keyframes bss-cursor {
    0%, 100% { opacity: .7; }
    50%       { opacity: 0; }
}

