﻿/* Gözü yormayan yumuşak arka plan */
#soft-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 249, 250, 0.85); /* Saf beyaz yerine hafif gri ton */
    backdrop-filter: blur(8px); /* Blur değerini düşürdük */
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100002;
    transition: opacity 0.6s ease;
}

.minimal-load-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Sabit duran ince gri kanal */
.soft-progress-track {
    width: 140px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

/* Yavaşça akan dolgu rengi (Siyah/Koyu Gri - Göz dostu) */
.soft-progress-fill {
    position: absolute;
    width: 40%;
    height: 100%;
    background: #555; /* Gözü yormayan koyu gri */
    border-radius: 2px;
    animation: smooth-slide 2.5s ease-in-out infinite;
}

/* Yazı: Parlamayan, mat ve net */
.quiet-load-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777; /* Gri tonlarında, kontrastı düşük */
    letter-spacing: 2px;
    font-weight: 400;
}

/* Animasyon: Sert geçişler yerine yumuşak akış */
@keyframes smooth-slide {
    0% {
        left: -40%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -40%;
    }
}

/* Gizleme sınıfı */
.overlay-fade-out {
    opacity: 0;
    pointer-events: none;
}
