/* خلفية السبلاش */
.splash-screen {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* المحتوى في الوسط */
.splash-center {
    text-align: center;
    direction: rtl;
}

/* الشعار */
.splash-logo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
}

.splash-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255,193,7,0.6));
}

/* الحلقات */
.ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.25);
    animation: pulseRing 2.4s infinite ease-out;
}

.ring1 {
    animation-delay: 0s;
}

.ring2 {
    animation-delay: .5s;
}

.ring3 {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* النصوص أسفل بعض */
.splash-loading-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.splash-loading-line {
    color: #ffe9a6;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255,215,0,0.8);
}

/* إخفاء السبلاش */
.splash-hide {
    opacity: 0;
    transform: scale(.92);
    pointer-events: none;
    transition: all .6s ease;
}
