/* ========== ГОСТЕВЫЕ ЭКРАНЫ ========== */

.guest-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.08), transparent 70%);
    z-index: 100;
    min-height: 70vh;
}

.guest-screen-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    position: relative;
}

.guest-screen-icon i {
    font-size: 80px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 40px rgba(96, 165, 250, 0.5));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.guest-screen h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.guest-screen p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 450px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.guest-screen-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.guest-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: rgba(20, 25, 45, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.guest-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.guest-feature i {
    font-size: 28px;
    color: #60a5fa;
}

.guest-feature span {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.guest-screen-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.guest-login-btn, 
.guest-register-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

.guest-login-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.guest-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.guest-register-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    color: #e2e8f0;
    backdrop-filter: blur(10px);
}

.guest-register-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #60a5fa;
    color: white;
    transform: translateY(-3px);
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .guest-screen {
        padding: 30px 15px;
    }
    
    .guest-screen-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .guest-screen-icon i {
        font-size: 60px;
    }
    
    .guest-screen h3 {
        font-size: 1.4rem;
    }
    
    .guest-screen p {
        font-size: 0.9rem;
    }
    
    .guest-screen-features {
        gap: 12px;
    }
    
    .guest-feature {
        padding: 12px 18px;
    }
    
    .guest-feature i {
        font-size: 22px;
    }
    
    .guest-feature span {
        font-size: 0.8rem;
    }
    
    .guest-login-btn, 
    .guest-register-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .guest-screen-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 400px) {
    .guest-screen h3 {
        font-size: 1.2rem;
    }
    
    .guest-feature {
        padding: 10px 14px;
    }
}

