#law-preloader {
    position: fixed;
    inset: 0;
    background: #000; /* matches your logo background */
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#law-preloader img {
    width: 220px;
    max-width: 80%;
    animation: fadePulse 1.2s infinite ease-in-out;
}

#law-preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

@keyframes fadePulse {
    0%   { opacity: 0.4; }
    50%  { opacity: 1; }
    100% { opacity: 0.4; }
}
