#preloader {
    position: fixed; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    /* backdrop-filter: blur(10px); */
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    flex-direction: column;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;      /* IE 10 та Edge */
    user-select: none;         /* Стандартний синтаксис */
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.1); 
    border-top: 8px solid #3498db; 
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite; 
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#preloader p {
    color: #c0c0c0;
    font-size: 18px;
}