
/* Экран приветствия */
#lel_welcome-screen {
    background:
            var(--background-gradient),
            url('../img/photo-1488426862026-3ee34a7d66df.png') center/cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-on-primary);
    z-index: 1000;
}

.lel_welcome-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease;
    /*  background: rgba(255, 255, 255, 0.1);*/
    /*   backdrop-filter: blur(15px);*/
    padding: 3rem;
    border-radius: var(--border-radius);
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
}

.lel_welcome-logo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}