.sufyan-preloader-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: linear-gradient(135deg, #0A1116 0%, #24415C 100%);
    display: flex;
    align-items: center; justify-content: center;
    z-index: 999999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    direction: rtl;
}
.sufyan-preloader-overlay.sufyan-fade-out {
    opacity: 0;
    visibility: hidden;
}
.sufyan-loader-content {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.sufyan-loader-icon {
    font-size: 3.5rem;
    background: linear-gradient(to right, #ffffff, #C5CCD3, #8A9AAB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #C5CCD3;
    margin-bottom: 15px;
    animation: sufyanFloat 2s ease-in-out infinite;
}
.sufyan-loader-text {
    font-family: 'Tajawal', sans-serif;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 25px;
}
.sufyan-loader-text span {
    background: linear-gradient(to right, #8A9AAB, #C5CCD3, #8A9AAB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #C5CCD3;
}
.sufyan-spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(197, 204, 211, 0.2);
    border-top-color: #C5CCD3;
    border-radius: 50%;
    animation: sufyanSpin 1s linear infinite;
}
@keyframes sufyanSpin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes sufyanFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
body.sufyan-no-scroll { overflow: hidden !important; height: 100vh !important; }


/* ---------- */