#loader-wrapper {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* الميزان الذهبي */
.scales-icon {
    font-size: 90px;
    color: #d4af37; /* ذهبي قانوني */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);

    animation: goldFlash 2.2s infinite ease-in-out;
}

/* فلاش ذهبي يظهر ويختفي */
@keyframes goldFlash {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 5px #d4af37);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.2);
        filter: drop-shadow(0 0 25px #ffd86b);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 8px #d4af37);
    }
}

/* إخفاء بعد التحميل */
body.loaded #loader-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease;
}